debian-mirror-gitlab/lib/gitlab/ci/charts.rb

103 lines
2.6 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Gitlab
module Ci
module Charts
class Chart
2021-01-29 00:20:46 +05:30
attr_reader :from, :to, :labels, :total, :success, :project, :pipeline_times
2018-03-17 18:26:18 +05:30
def initialize(project)
@labels = []
@total = []
@success = []
@pipeline_times = []
@project = project
collect
end
2021-01-29 00:20:46 +05:30
private
attr_reader :interval
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
def collect
2019-02-15 15:39:39 +05:30
query = project.all_pipelines
2021-01-29 00:20:46 +05:30
.where(::Ci::Pipeline.arel_table['created_at'].gteq(@from))
.where(::Ci::Pipeline.arel_table['created_at'].lteq(@to))
2018-03-17 18:26:18 +05:30
totals_count = grouped_count(query)
success_count = grouped_count(query.success)
current = @from
2021-01-29 00:20:46 +05:30
while current <= @to
@labels << current.strftime(@format)
@total << (totals_count[current] || 0)
@success << (success_count[current] || 0)
2018-03-17 18:26:18 +05:30
current += interval_step
end
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2021-01-29 00:20:46 +05:30
# rubocop: disable CodeReuse/ActiveRecord
def grouped_count(query)
query
.group("date_trunc('#{interval}', #{::Ci::Pipeline.table_name}.created_at)")
.count(:created_at)
end
# rubocop: enable CodeReuse/ActiveRecord
def interval_step
@interval_step ||= 1.public_send(interval) # rubocop: disable GitlabSecurity/PublicSend
end
2018-03-17 18:26:18 +05:30
end
class YearChart < Chart
def initialize(*)
2018-03-27 19:54:05 +05:30
@to = Date.today.end_of_month.end_of_day
2021-01-29 00:20:46 +05:30
@from = (@to - 1.year).beginning_of_month.beginning_of_day
@interval = :month
@format = '%B %Y'
2018-03-17 18:26:18 +05:30
super
end
end
class MonthChart < Chart
def initialize(*)
2018-03-27 19:54:05 +05:30
@to = Date.today.end_of_day
2021-01-29 00:20:46 +05:30
@from = (@to - 1.month).beginning_of_day
@interval = :day
2018-03-17 18:26:18 +05:30
@format = '%d %B'
super
end
end
class WeekChart < Chart
def initialize(*)
2018-03-27 19:54:05 +05:30
@to = Date.today.end_of_day
2021-01-29 00:20:46 +05:30
@from = (@to - 1.week).beginning_of_day
@interval = :day
2018-03-17 18:26:18 +05:30
@format = '%d %B'
super
end
end
class PipelineTime < Chart
def collect
2019-02-15 15:39:39 +05:30
commits = project.all_pipelines.last(30)
2018-03-17 18:26:18 +05:30
commits.each do |commit|
@labels << commit.short_sha
duration = commit.duration || 0
@pipeline_times << (duration / 60)
end
end
end
end
end
end