7e6f6e1603
Enables frozens string for the following: * lib/gitlab/conflict/**/*.rb * lib/gitlab/cross_project_access/**/*.rb * lib/gitlab/cycle_analytics/**/*.rb * lib/gitlab/data_builder/**/*.rb * lib/gitlab/database/**/*.rb * lib/gitlab/dependency_linker/**/*.rb * lib/gitlab/diff/**/*.rb * lib/gitlab/downtime_check/**/*.rb * lib/gitlab/email/**/*.rb * lib/gitlab/etag_caching/**/*.rb Partially addresses gitlab-org/gitlab-ce#47424.
63 lines
1.6 KiB
Ruby
63 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module CycleAnalytics
|
|
class PlanEventFetcher < BaseEventFetcher
|
|
def initialize(*args)
|
|
@projections = [mr_diff_table[:id],
|
|
issue_metrics_table[:first_mentioned_in_commit_at]]
|
|
|
|
super(*args)
|
|
end
|
|
|
|
def events_query
|
|
base_query
|
|
.join(mr_diff_table)
|
|
.on(mr_diff_table[:merge_request_id].eq(mr_table[:id]))
|
|
|
|
super
|
|
end
|
|
|
|
private
|
|
|
|
def allowed_ids
|
|
nil
|
|
end
|
|
|
|
def merge_request_diff_commits
|
|
@merge_request_diff_commits ||=
|
|
MergeRequestDiffCommit
|
|
.where(merge_request_diff_id: event_result.map { |event| event['id'] })
|
|
.group_by(&:merge_request_diff_id)
|
|
end
|
|
|
|
def serialize(event)
|
|
commit = first_time_reference_commit(event)
|
|
|
|
return unless commit
|
|
|
|
serialize_commit(event, commit, query)
|
|
end
|
|
|
|
def first_time_reference_commit(event)
|
|
return nil unless event && merge_request_diff_commits
|
|
|
|
commits = merge_request_diff_commits[event['id'].to_i]
|
|
|
|
return nil if commits.blank?
|
|
|
|
commits.find do |commit|
|
|
next unless commit[:committed_date] && event['first_mentioned_in_commit_at']
|
|
|
|
commit[:committed_date].to_i == DateTime.parse(event['first_mentioned_in_commit_at'].to_s).to_i
|
|
end
|
|
end
|
|
|
|
def serialize_commit(event, commit, query)
|
|
commit = Commit.from_hash(commit.to_hash, @project)
|
|
|
|
AnalyticsCommitSerializer.new(project: @project, total_time: event['total_time']).represent(commit)
|
|
end
|
|
end
|
|
end
|
|
end
|