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

15 lines
637 B
Ruby

# frozen_string_literal: true
class Api::V2::MediaController < Api::V1::MediaController
def create
@media_attachment = current_account.media_attachments.create!({ delay_processing: true }.merge(media_attachment_params))
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: 202
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
render json: file_type_error, status: 422
rescue Paperclip::Error => e
Rails.logger.error "Ran into media create error (#{e.message})"
e.backtrace.each{ |line| Rails.logger.error line }
render json: processing_error, status: 500
end
end