2015-12-18 02:41:16 -05:00
|
|
|
class Projects::ArtifactsController < Projects::ApplicationController
|
2016-08-24 04:02:56 -04:00
|
|
|
include ExtractsPath
|
2017-05-02 18:42:37 -04:00
|
|
|
include RendersBlob
|
2016-08-24 04:02:56 -04:00
|
|
|
|
2015-12-17 08:24:43 -05:00
|
|
|
layout 'project'
|
2016-02-01 17:58:04 -05:00
|
|
|
before_action :authorize_read_build!
|
2016-06-10 10:20:11 -04:00
|
|
|
before_action :authorize_update_build!, only: [:keep]
|
2016-08-26 01:10:03 -04:00
|
|
|
before_action :extract_ref_name_and_path
|
2016-06-10 08:39:36 -04:00
|
|
|
before_action :validate_artifacts!
|
2017-09-05 06:27:40 -04:00
|
|
|
before_action :entry, only: [:file]
|
2015-12-17 08:24:43 -05:00
|
|
|
|
|
|
|
def download
|
2016-07-11 07:06:14 -04:00
|
|
|
if artifacts_file.file_storage?
|
|
|
|
send_file artifacts_file.path, disposition: 'attachment'
|
|
|
|
else
|
|
|
|
redirect_to artifacts_file.url
|
2015-12-17 08:24:43 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-18 02:41:16 -05:00
|
|
|
def browse
|
2017-05-02 18:47:28 -04:00
|
|
|
@path = params[:path]
|
|
|
|
directory = @path ? "#{@path}/" : ''
|
2016-01-13 15:17:28 -05:00
|
|
|
@entry = build.artifacts_metadata_entry(directory)
|
2016-01-11 03:57:03 -05:00
|
|
|
|
2016-07-11 07:06:40 -04:00
|
|
|
render_404 unless @entry.exists?
|
2015-12-17 09:17:00 -05:00
|
|
|
end
|
|
|
|
|
2016-01-09 08:41:43 -05:00
|
|
|
def file
|
2017-05-02 18:42:37 -04:00
|
|
|
blob = @entry.blob
|
2017-05-26 19:27:30 -04:00
|
|
|
conditionally_expand_blob(blob)
|
2016-01-11 04:01:18 -05:00
|
|
|
|
2017-05-02 18:42:37 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
render 'file'
|
|
|
|
end
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
render_blob_json(blob)
|
|
|
|
end
|
2016-01-11 04:01:18 -05:00
|
|
|
end
|
2016-01-09 08:41:43 -05:00
|
|
|
end
|
|
|
|
|
2017-05-02 18:42:37 -04:00
|
|
|
def raw
|
2017-09-05 06:27:40 -04:00
|
|
|
path = Gitlab::Ci::Build::Artifacts::Path
|
|
|
|
.new(params[:path])
|
|
|
|
|
|
|
|
send_artifacts_entry(build, path)
|
2017-05-02 18:42:37 -04:00
|
|
|
end
|
|
|
|
|
2016-06-08 11:18:54 -04:00
|
|
|
def keep
|
|
|
|
build.keep_artifacts!
|
2017-06-29 13:06:35 -04:00
|
|
|
redirect_to project_job_path(project, build)
|
2016-06-08 11:18:54 -04:00
|
|
|
end
|
|
|
|
|
2016-08-16 10:10:10 -04:00
|
|
|
def latest_succeeded
|
2016-08-25 03:04:15 -04:00
|
|
|
target_path = artifacts_action_path(@path, project, build)
|
2016-07-12 11:26:30 -04:00
|
|
|
|
2016-08-18 07:30:20 -04:00
|
|
|
if target_path
|
2016-08-18 03:31:20 -04:00
|
|
|
redirect_to(target_path)
|
2016-07-11 06:17:32 -04:00
|
|
|
else
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-17 08:24:43 -05:00
|
|
|
private
|
|
|
|
|
2016-08-26 01:10:03 -04:00
|
|
|
def extract_ref_name_and_path
|
|
|
|
return unless params[:ref_name_and_path]
|
|
|
|
|
|
|
|
@ref_name, @path = extract_ref(params[:ref_name_and_path])
|
|
|
|
end
|
|
|
|
|
2016-06-10 08:39:36 -04:00
|
|
|
def validate_artifacts!
|
2016-07-11 06:17:32 -04:00
|
|
|
render_404 unless build && build.artifacts?
|
2016-06-10 08:39:36 -04:00
|
|
|
end
|
|
|
|
|
2015-12-17 08:24:43 -05:00
|
|
|
def build
|
2017-05-02 18:47:28 -04:00
|
|
|
@build ||= begin
|
|
|
|
build = build_from_id || build_from_ref
|
|
|
|
build&.present(current_user: current_user)
|
|
|
|
end
|
2016-07-11 06:17:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def build_from_id
|
2017-05-16 07:41:15 -04:00
|
|
|
project.builds.find_by(id: params[:job_id]) if params[:job_id]
|
2016-07-11 06:17:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def build_from_ref
|
2016-08-26 01:10:03 -04:00
|
|
|
return unless @ref_name
|
2016-07-11 06:51:23 -04:00
|
|
|
|
2016-08-26 01:10:03 -04:00
|
|
|
builds = project.latest_successful_builds_for(@ref_name)
|
|
|
|
builds.find_by(name: params[:job])
|
2015-12-17 08:24:43 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def artifacts_file
|
|
|
|
@artifacts_file ||= build.artifacts_file
|
|
|
|
end
|
2017-05-02 18:42:37 -04:00
|
|
|
|
2017-09-05 06:27:40 -04:00
|
|
|
def entry
|
|
|
|
@entry = build.artifacts_metadata_entry(params[:path])
|
2017-05-02 18:42:37 -04:00
|
|
|
|
|
|
|
render_404 unless @entry.exists?
|
|
|
|
end
|
2015-12-17 08:24:43 -05:00
|
|
|
end
|