debian-mirror-gitlab/app/controllers/projects/pipelines_controller.rb

223 lines
6.1 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
class Projects::PipelinesController < Projects::ApplicationController
2018-03-17 18:26:18 +05:30
before_action :whitelist_query_limiting, only: [:create, :retry]
2017-08-17 22:00:37 +05:30
before_action :pipeline, except: [:index, :new, :create, :charts]
2019-12-04 20:38:33 +05:30
before_action :set_pipeline_path, only: [:show]
2016-06-02 11:05:42 +05:30
before_action :authorize_read_pipeline!
2019-02-02 18:00:53 +05:30
before_action :authorize_read_build!, only: [:index]
2016-06-02 11:05:42 +05:30
before_action :authorize_create_pipeline!, only: [:new, :create]
before_action :authorize_update_pipeline!, only: [:retry, :cancel]
2019-12-04 20:38:33 +05:30
before_action do
push_frontend_feature_flag(:hide_dismissed_vulnerabilities)
end
2017-08-17 22:00:37 +05:30
2019-07-07 11:18:12 +05:30
around_action :allow_gitaly_ref_name_caching, only: [:index, :show]
2017-08-17 22:00:37 +05:30
wrap_parameters Ci::Pipeline
POLLING_INTERVAL = 10_000
2016-06-02 11:05:42 +05:30
def index
@scope = params[:scope]
2017-08-17 22:00:37 +05:30
@pipelines = PipelinesFinder
2018-11-08 19:23:39 +05:30
.new(project, current_user, scope: @scope)
2017-08-17 22:00:37 +05:30
.execute
.page(params[:page])
.per(30)
2018-11-08 19:23:39 +05:30
@running_count = limited_pipelines_count(project, 'running')
@pending_count = limited_pipelines_count(project, 'pending')
@finished_count = limited_pipelines_count(project, 'finished')
@pipelines_count = limited_pipelines_count(project)
2018-03-17 18:26:18 +05:30
2017-08-17 22:00:37 +05:30
respond_to do |format|
format.html
format.json do
Gitlab::PollingInterval.set_header(response, interval: POLLING_INTERVAL)
render json: {
2019-07-07 11:18:12 +05:30
pipelines: serialize_pipelines,
2017-08-17 22:00:37 +05:30
count: {
all: @pipelines_count,
running: @running_count,
pending: @pending_count,
2017-09-10 17:25:29 +05:30
finished: @finished_count
2017-08-17 22:00:37 +05:30
}
}
end
end
2016-06-02 11:05:42 +05:30
end
def new
2019-02-15 15:39:39 +05:30
@pipeline = project.all_pipelines.new(ref: @project.default_branch)
2016-06-02 11:05:42 +05:30
end
def create
2017-08-17 22:00:37 +05:30
@pipeline = Ci::CreatePipelineService
.new(project, current_user, create_params)
2017-09-10 17:25:29 +05:30
.execute(:web, ignore_skip_ci: true, save_on_errors: false)
2017-08-17 22:00:37 +05:30
if @pipeline.persisted?
2017-09-10 17:25:29 +05:30
redirect_to project_pipeline_path(project, @pipeline)
2017-08-17 22:00:37 +05:30
else
2016-06-02 11:05:42 +05:30
render 'new'
end
end
def show
2017-08-17 22:00:37 +05:30
respond_to do |format|
format.html
format.json do
Gitlab::PollingInterval.set_header(response, interval: POLLING_INTERVAL)
render json: PipelineSerializer
.new(project: @project, current_user: @current_user)
2019-03-02 22:35:43 +05:30
.represent(@pipeline, show_represent_params)
2017-08-17 22:00:37 +05:30
end
end
end
def builds
render_show
end
def failures
2018-10-15 14:42:47 +05:30
if @pipeline.failed_builds.present?
2017-08-17 22:00:37 +05:30
render_show
else
redirect_to pipeline_path(@pipeline)
end
end
def status
render json: PipelineSerializer
.new(project: @project, current_user: @current_user)
.represent_status(@pipeline)
end
def stage
2017-09-10 17:25:29 +05:30
@stage = pipeline.legacy_stage(params[:stage])
2017-08-17 22:00:37 +05:30
return not_found unless @stage
2018-10-15 14:42:47 +05:30
render json: StageSerializer
.new(project: @project, current_user: @current_user)
2018-12-05 23:21:45 +05:30
.represent(@stage, details: true, retried: params[:retried])
2018-10-15 14:42:47 +05:30
end
# TODO: This endpoint is used by mini-pipeline-graph
# TODO: This endpoint should be migrated to `stage.json`
def stage_ajax
@stage = pipeline.legacy_stage(params[:stage])
return not_found unless @stage
render json: { html: view_to_html_string('projects/pipelines/_stage') }
2016-06-02 11:05:42 +05:30
end
def retry
pipeline.retry_failed(current_user)
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
respond_to do |format|
format.html do
2017-09-10 17:25:29 +05:30
redirect_back_or_default default: project_pipelines_path(project)
2017-08-17 22:00:37 +05:30
end
format.json { head :no_content }
end
2016-06-02 11:05:42 +05:30
end
def cancel
pipeline.cancel_running
2017-08-17 22:00:37 +05:30
respond_to do |format|
format.html do
2017-09-10 17:25:29 +05:30
redirect_back_or_default default: project_pipelines_path(project)
2017-08-17 22:00:37 +05:30
end
format.json { head :no_content }
end
end
def charts
@charts = {}
2018-03-17 18:26:18 +05:30
@charts[:week] = Gitlab::Ci::Charts::WeekChart.new(project)
@charts[:month] = Gitlab::Ci::Charts::MonthChart.new(project)
@charts[:year] = Gitlab::Ci::Charts::YearChart.new(project)
@charts[:pipeline_times] = Gitlab::Ci::Charts::PipelineTime.new(project)
2017-09-10 17:25:29 +05:30
@counts = {}
2019-02-15 15:39:39 +05:30
@counts[:total] = @project.all_pipelines.count(:all)
@counts[:success] = @project.all_pipelines.success.count(:all)
@counts[:failed] = @project.all_pipelines.failed.count(:all)
2016-06-02 11:05:42 +05:30
end
private
2019-07-07 11:18:12 +05:30
def serialize_pipelines
PipelineSerializer
.new(project: @project, current_user: @current_user)
.with_pagination(request, response)
.represent(@pipelines, disable_coverage: true, preload: true)
end
2017-08-17 22:00:37 +05:30
def render_show
respond_to do |format|
format.html do
render 'show'
end
end
end
2019-03-02 22:35:43 +05:30
def show_represent_params
{ grouped: true }
end
2016-06-02 11:05:42 +05:30
def create_params
2019-07-31 22:56:46 +05:30
params.require(:pipeline).permit(:ref, variables_attributes: %i[key variable_type secret_value])
2016-06-02 11:05:42 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-06-02 11:05:42 +05:30
def pipeline
2019-12-04 20:38:33 +05:30
@pipeline ||= if params[:id].blank? && params[:latest]
latest_pipeline
else
project
.all_pipelines
.includes(builds: :tags, user: :status)
.find_by!(id: params[:id])
.present(current_user: current_user)
end
2016-06-02 11:05:42 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2018-03-17 18:26:18 +05:30
2019-12-04 20:38:33 +05:30
def set_pipeline_path
@pipeline_path ||= if params[:id].blank? && params[:latest]
latest_project_pipelines_path(@project, params['ref'])
else
project_pipeline_path(@project, @pipeline)
end
end
def latest_pipeline
@project.latest_pipeline_for_ref(params['ref'])
&.present(current_user: current_user)
end
2018-03-17 18:26:18 +05:30
def whitelist_query_limiting
2019-12-04 20:38:33 +05:30
# Also see https://gitlab.com/gitlab-org/gitlab-foss/issues/42343
Gitlab::QueryLimiting.whitelist('https://gitlab.com/gitlab-org/gitlab-foss/issues/42339')
2018-03-17 18:26:18 +05:30
end
2018-11-08 19:23:39 +05:30
def authorize_update_pipeline!
return access_denied! unless can?(current_user, :update_pipeline, @pipeline)
end
def limited_pipelines_count(project, scope = nil)
finder = PipelinesFinder.new(project, current_user, scope: scope)
view_context.limited_counter_with_delimiter(finder.execute)
end
2016-06-02 11:05:42 +05:30
end
2019-12-04 20:38:33 +05:30
Projects::PipelinesController.prepend_if_ee('EE::Projects::PipelinesController')