gitlab-org--gitlab-foss/app/controllers/projects/pipelines_controller.rb

62 lines
1.6 KiB
Ruby
Raw Normal View History

2016-04-12 13:57:22 -04:00
class Projects::PipelinesController < Projects::ApplicationController
2016-04-13 07:01:08 -04:00
before_action :pipeline, except: [:index, :new, :create]
2016-04-13 11:05:17 -04:00
before_action :commit, only: [:show]
2016-04-12 10:16:39 -04:00
before_action :authorize_read_pipeline!
before_action :authorize_create_pipeline!, only: [:new, :create]
before_action :authorize_update_pipeline!, only: [:retry, :cancel]
def index
@scope = params[:scope]
2016-05-12 14:08:18 -04:00
all_pipelines = project.ci_commits
@pipelines_count = all_pipelines.count
@running_or_pending_count = all_pipelines.running_or_pending.count
@pipelines = PipelinesFinder.new(project).execute(all_pipelines, @scope)
2016-05-09 19:26:13 -04:00
@pipelines = @pipelines.order(id: :desc).page(params[:page]).per(30)
2016-04-12 10:16:39 -04:00
end
def new
end
def create
2016-05-09 19:26:13 -04:00
begin
pipeline = Ci::CreatePipelineService.new(project, current_user, create_params).execute
redirect_to namespace_project_pipeline_path(project.namespace, project, pipeline)
rescue ArgumentError => e
2016-05-14 16:55:00 -04:00
flash[:alert] = e.message
2016-05-09 19:26:13 -04:00
render 'new'
2016-05-12 14:08:18 -04:00
rescue
2016-05-16 17:34:42 -04:00
flash[:alert] = 'The pipeline could not be created. Please try again.'
2016-05-09 19:26:13 -04:00
render 'new'
2016-04-12 10:16:39 -04:00
end
end
def show
end
def retry
2016-05-09 19:26:13 -04:00
pipeline.retry_failed
2016-04-12 10:16:39 -04:00
redirect_back_or_default default: namespace_project_pipelines_path(project.namespace, project)
end
def cancel
2016-05-09 19:26:13 -04:00
pipeline.cancel_running
2016-04-12 10:16:39 -04:00
redirect_back_or_default default: namespace_project_pipelines_path(project.namespace, project)
end
private
2016-05-09 19:26:13 -04:00
def create_params
params.permit(:ref)
end
2016-04-13 07:01:08 -04:00
def pipeline
@pipeline ||= project.ci_commits.find_by!(id: params[:id])
2016-04-12 10:16:39 -04:00
end
2016-04-13 11:05:17 -04:00
def commit
@commit ||= @pipeline.commit_data
end
2016-04-12 10:16:39 -04:00
end