diff options
author | Andrea Faulds <ajf@ajf.me> | 2016-11-23 21:00:00 +0000 |
---|---|---|
committer | Andrea Faulds <ajf@ajf.me> | 2016-11-23 21:03:03 +0000 |
commit | 7161f91313b51c8425bd184dc5374084fd4e68a8 (patch) | |
tree | 5e08825a2279d827b62ae0e7f6481b7746c2d03f /app/controllers/api/v1 | |
parent | 3373ae02ded0ac5847350da9f9550721cdebe732 (diff) |
Rename media to avoid exposing filename (fixes #207)
Diffstat (limited to 'app/controllers/api/v1')
-rw-r--r-- | app/controllers/api/v1/media_controller.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/api/v1/media_controller.rb b/app/controllers/api/v1/media_controller.rb index bb8e8d9ee..23cc9bb7c 100644 --- a/app/controllers/api/v1/media_controller.rb +++ b/app/controllers/api/v1/media_controller.rb @@ -7,7 +7,10 @@ class Api::V1::MediaController < ApiController respond_to :json def create - @media = MediaAttachment.create!(account: current_user.account, file: params[:file]) + file = params[:file] + # Change so Paperclip won't expose the actual filename + file.original_filename = "media" + File.extname(file.original_filename) + @media = MediaAttachment.create!(account: current_user.account, file: file) rescue Paperclip::Errors::NotIdentifiedByImageMagickError render json: { error: 'File type of uploaded media could not be verified' }, status: 422 rescue Paperclip::Error |