summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/controllers/projects/artifacts_controller.rb11
1 files changed, 8 insertions, 3 deletions
diff --git a/app/controllers/projects/artifacts_controller.rb b/app/controllers/projects/artifacts_controller.rb
index f88d866febc..a1f82ddd9c5 100644
--- a/app/controllers/projects/artifacts_controller.rb
+++ b/app/controllers/projects/artifacts_controller.rb
@@ -24,9 +24,14 @@ class Projects::ArtifactsController < Projects::ApplicationController
end
def file
- # TODO, check if file exists in metadata
- render json: { repository: build.artifacts_file.path,
- path: Base64.encode64(params[:path].to_s) }
+ file = build.artifacts_metadata_path(params[:path])
+
+ if file.exists?
+ render json: { repository: build.artifacts_file.path,
+ path: Base64.encode64(file.path) }
+ else
+ render json: {}, status: 404
+ end
end
private