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

106 lines
2.3 KiB
Ruby
Raw Normal View History

2015-10-24 18:46:33 +05:30
class Projects::BuildsController < Projects::ApplicationController
before_action :build, except: [:index, :cancel_all]
2015-11-26 14:37:03 +05:30
before_action :authorize_manage_builds!, except: [:index, :show, :status]
before_action :authorize_download_build_artifacts!, only: [:download]
2015-10-24 18:46:33 +05:30
layout "project"
def index
@scope = params[:scope]
2015-12-23 02:04:40 +05:30
@all_builds = project.builds
2015-11-26 14:37:03 +05:30
@builds = @all_builds.order('created_at DESC')
2015-10-24 18:46:33 +05:30
@builds =
case @scope
when 'running'
@builds.running_or_pending.reverse_order
2015-10-24 18:46:33 +05:30
when 'finished'
2015-11-26 14:37:03 +05:30
@builds.finished
2015-10-24 18:46:33 +05:30
else
@builds
2015-10-24 18:46:33 +05:30
end
2015-11-26 14:37:03 +05:30
@builds = @builds.page(params[:page]).per(30)
2015-10-24 18:46:33 +05:30
end
def cancel_all
2015-12-23 02:04:40 +05:30
@project.builds.running_or_pending.each(&:cancel)
2015-10-24 18:46:33 +05:30
redirect_to namespace_project_builds_path(project.namespace, project)
end
def show
2015-12-23 02:04:40 +05:30
@builds = @project.ci_commits.find_by_sha(@build.sha).builds.order('id DESC')
2015-11-26 14:37:03 +05:30
@builds = @builds.where("id not in (?)", @build.id)
2015-10-24 18:46:33 +05:30
@commit = @build.commit
respond_to do |format|
format.html
format.json do
render json: @build.to_json(methods: :trace_html)
end
end
end
def retry
2015-11-26 14:37:03 +05:30
unless @build.retryable?
2015-10-24 18:46:33 +05:30
return page_404
end
build = Ci::Build.retry(@build)
2015-11-26 14:37:03 +05:30
redirect_to build_path(build)
end
def download
unless artifacts_file.file_storage?
return redirect_to artifacts_file.url
end
unless artifacts_file.exists?
return not_found!
2015-10-24 18:46:33 +05:30
end
2015-11-26 14:37:03 +05:30
send_file artifacts_file.path, disposition: 'attachment'
2015-10-24 18:46:33 +05:30
end
def status
render json: @build.to_json(only: [:status, :id, :sha, :coverage], methods: :sha)
end
def cancel
@build.cancel
redirect_to build_path(@build)
end
private
def build
2015-12-23 02:04:40 +05:30
@build ||= project.builds.unscoped.find_by!(id: params[:id])
2015-10-24 18:46:33 +05:30
end
2015-11-26 14:37:03 +05:30
def artifacts_file
build.artifacts_file
end
2015-10-24 18:46:33 +05:30
def build_path(build)
2015-12-23 02:04:40 +05:30
namespace_project_build_path(build.project.namespace, build.project, build)
2015-10-24 18:46:33 +05:30
end
2015-11-26 14:37:03 +05:30
def authorize_manage_builds!
unless can?(current_user, :manage_builds, project)
return page_404
end
end
def authorize_download_build_artifacts!
unless can?(current_user, :download_build_artifacts, @project)
if current_user.nil?
return authenticate_user!
else
return render_404
end
end
end
2015-10-24 18:46:33 +05:30
end