This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 07:58:23 -07:00
|
|
|
class Api::V1::MediaController < ApiController
|
2016-10-22 10:38:47 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :write }
|
2016-11-08 14:22:44 -08:00
|
|
|
before_action :require_user!
|
|
|
|
|
2016-11-23 15:31:38 -08:00
|
|
|
include ObfuscateFilename
|
|
|
|
obfuscate_filename :file
|
|
|
|
|
2016-11-09 08:48:44 -08:00
|
|
|
respond_to :json
|
2016-09-05 08:46:36 -07:00
|
|
|
|
|
|
|
def create
|
2016-11-23 15:31:38 -08:00
|
|
|
@media = MediaAttachment.create!(account: current_user.account, file: params[:file])
|
2016-10-06 05:39:34 -07:00
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
|
|
|
render json: { error: 'File type of uploaded media could not be verified' }, status: 422
|
|
|
|
rescue Paperclip::Error
|
|
|
|
render json: { error: 'Error processing thumbnail for uploaded media' }, status: 500
|
2016-09-05 08:46:36 -07:00
|
|
|
end
|
|
|
|
end
|