50 lines
1.1 KiB
Ruby
50 lines
1.1 KiB
Ruby
class Projects::ArtifactsController < Projects::ApplicationController
|
|
layout 'project'
|
|
before_action :authorize_read_build!
|
|
before_action :authorize_update_build!, only: [:keep]
|
|
before_action :validate_artifacts!
|
|
|
|
def download
|
|
unless artifacts_file.file_storage?
|
|
return redirect_to artifacts_file.url
|
|
end
|
|
|
|
send_file artifacts_file.path, disposition: 'attachment'
|
|
end
|
|
|
|
def browse
|
|
directory = params[:path] ? "#{params[:path]}/" : ''
|
|
@entry = build.artifacts_metadata_entry(directory)
|
|
|
|
return render_404 unless @entry.exists?
|
|
end
|
|
|
|
def file
|
|
entry = build.artifacts_metadata_entry(params[:path])
|
|
|
|
if entry.exists?
|
|
send_artifacts_entry(build, entry)
|
|
else
|
|
render_404
|
|
end
|
|
end
|
|
|
|
def keep
|
|
build.keep_artifacts!
|
|
redirect_to namespace_project_build_path(project.namespace, project, build)
|
|
end
|
|
|
|
private
|
|
|
|
def validate_artifacts!
|
|
render_404 unless build.artifacts?
|
|
end
|
|
|
|
def build
|
|
@build ||= project.builds.find_by!(id: params[:build_id])
|
|
end
|
|
|
|
def artifacts_file
|
|
@artifacts_file ||= build.artifacts_file
|
|
end
|
|
end
|