mastodon/app/controllers/api/v1/media_controller.rb

17 lines
562 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-09-27 14:58:23 +00:00
class Api::V1::MediaController < ApiController
before_action -> { doorkeeper_authorize! :write }
before_action :require_user!
respond_to :json
2016-09-05 15:46:36 +00:00
def create
@media = MediaAttachment.create!(account: current_user.account, file: params[:file])
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 15:46:36 +00:00
end
end