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

117 lines
2.6 KiB
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
module Ci
module Charts
2016-09-13 17:45:13 +05:30
module DailyInterval
def grouped_count(query)
2017-09-10 17:25:29 +05:30
query
.group("DATE(#{Ci::Pipeline.table_name}.created_at)")
.count(:created_at)
.transform_keys { |date| date.strftime(@format) }
2016-09-13 17:45:13 +05:30
end
def interval_step
@interval_step ||= 1.day
end
end
module MonthlyInterval
def grouped_count(query)
if Gitlab::Database.postgresql?
2017-09-10 17:25:29 +05:30
query
.group("to_char(#{Ci::Pipeline.table_name}.created_at, '01 Month YYYY')")
.count(:created_at)
.transform_keys(&:squish)
2016-09-13 17:45:13 +05:30
else
2017-09-10 17:25:29 +05:30
query
.group("DATE_FORMAT(#{Ci::Pipeline.table_name}.created_at, '01 %M %Y')")
.count(:created_at)
2016-09-13 17:45:13 +05:30
end
end
def interval_step
@interval_step ||= 1.month
end
end
2015-09-25 12:07:36 +05:30
class Chart
2017-09-10 17:25:29 +05:30
attr_reader :labels, :total, :success, :project, :pipeline_times
2015-09-25 12:07:36 +05:30
def initialize(project)
@labels = []
@total = []
@success = []
2017-09-10 17:25:29 +05:30
@pipeline_times = []
2015-09-25 12:07:36 +05:30
@project = project
collect
end
2016-09-13 17:45:13 +05:30
def collect
2017-09-10 17:25:29 +05:30
query = project.pipelines
.where("? > #{Ci::Pipeline.table_name}.created_at AND #{Ci::Pipeline.table_name}.created_at > ?", @to, @from)
2016-09-13 17:45:13 +05:30
totals_count = grouped_count(query)
success_count = grouped_count(query.success)
current = @from
while current < @to
label = current.strftime(@format)
@labels << label
@total << (totals_count[label] || 0)
@success << (success_count[label] || 0)
current += interval_step
end
2015-09-25 12:07:36 +05:30
end
end
class YearChart < Chart
2016-09-13 17:45:13 +05:30
include MonthlyInterval
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
def initialize(*)
@to = Date.today.end_of_month
@from = @to.years_ago(1).beginning_of_month
@format = '%d %B %Y'
super
2015-09-25 12:07:36 +05:30
end
end
class MonthChart < Chart
2016-09-13 17:45:13 +05:30
include DailyInterval
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
def initialize(*)
@to = Date.today
@from = @to - 30.days
@format = '%d %B'
super
2015-09-25 12:07:36 +05:30
end
end
class WeekChart < Chart
2016-09-13 17:45:13 +05:30
include DailyInterval
2015-09-25 12:07:36 +05:30
2016-09-13 17:45:13 +05:30
def initialize(*)
@to = Date.today
@from = @to - 7.days
@format = '%d %B'
super
2015-09-25 12:07:36 +05:30
end
end
2017-09-10 17:25:29 +05:30
class PipelineTime < Chart
2015-09-25 12:07:36 +05:30
def collect
commits = project.pipelines.last(30)
2015-11-26 14:37:03 +05:30
2015-09-25 12:07:36 +05:30
commits.each do |commit|
@labels << commit.short_sha
2016-06-02 11:05:42 +05:30
duration = commit.duration || 0
2017-09-10 17:25:29 +05:30
@pipeline_times << (duration / 60)
2015-09-25 12:07:36 +05:30
end
end
end
end
end