2015-12-18 02:41:16 -05:00
|
|
|
class Projects::ArtifactsController < Projects::ApplicationController
|
2016-08-24 04:02:56 -04:00
|
|
|
include ExtractsPath
|
|
|
|
|
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!
|
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
|
2016-01-11 03:57:03 -05:00
|
|
|
directory = params[:path] ? "#{params[: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
|
2016-01-13 15:17:28 -05:00
|
|
|
entry = build.artifacts_metadata_entry(params[:path])
|
2016-01-11 04:01:18 -05:00
|
|
|
|
2016-01-13 15:17:28 -05:00
|
|
|
if entry.exists?
|
2016-07-05 10:58:38 -04:00
|
|
|
send_artifacts_entry(build, entry)
|
2016-01-11 04:01:18 -05:00
|
|
|
else
|
2016-07-11 08:04:27 -04:00
|
|
|
render_404
|
2016-01-11 04:01:18 -05:00
|
|
|
end
|
2016-01-09 08:41:43 -05:00
|
|
|
end
|
|
|
|
|
2016-06-08 11:18:54 -04:00
|
|
|
def keep
|
|
|
|
build.keep_artifacts!
|
|
|
|
redirect_to namespace_project_build_path(project.namespace, project, build)
|
|
|
|
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
|
2016-07-11 06:17:32 -04:00
|
|
|
@build ||= build_from_id || build_from_ref
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_from_id
|
|
|
|
project.builds.find_by(id: params[:build_id]) if params[:build_id]
|
|
|
|
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
|
|
|
|
end
|