56 lines
1.6 KiB
Ruby
56 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class Projects::CycleAnalyticsController < Projects::ApplicationController
|
|
include ActionView::Helpers::DateHelper
|
|
include ActionView::Helpers::TextHelper
|
|
include CycleAnalyticsParams
|
|
include GracefulTimeoutHandling
|
|
include RedisTracking
|
|
extend ::Gitlab::Utils::Override
|
|
|
|
before_action :authorize_read_cycle_analytics!
|
|
before_action :load_value_stream, only: :show
|
|
|
|
track_redis_hll_event :show, name: 'p_analytics_valuestream'
|
|
|
|
feature_category :planning_analytics
|
|
|
|
before_action do
|
|
push_licensed_feature(:cycle_analytics_for_groups) if project.licensed_feature_available?(:cycle_analytics_for_groups)
|
|
end
|
|
|
|
def show
|
|
@cycle_analytics = Analytics::CycleAnalytics::ProjectLevel.new(project: @project, options: options(cycle_analytics_project_params))
|
|
@request_params ||= ::Gitlab::Analytics::CycleAnalytics::RequestParams.new(all_cycle_analytics_params)
|
|
|
|
respond_to do |format|
|
|
format.html do
|
|
Gitlab::UsageDataCounters::CycleAnalyticsCounter.count(:views)
|
|
|
|
render :show
|
|
end
|
|
format.json do
|
|
render json: cycle_analytics_json
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
override :all_cycle_analytics_params
|
|
def all_cycle_analytics_params
|
|
super.merge({ project: @project, value_stream: @value_stream })
|
|
end
|
|
|
|
def load_value_stream
|
|
@value_stream = Analytics::CycleAnalytics::ProjectValueStream.build_default_value_stream(@project)
|
|
end
|
|
|
|
def cycle_analytics_json
|
|
{
|
|
summary: @cycle_analytics.summary,
|
|
stats: @cycle_analytics.stats,
|
|
permissions: @cycle_analytics.permissions(user: current_user)
|
|
}
|
|
end
|
|
end
|