2020-03-08 22:56:18 +00:00
|
|
|
# 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))
|
2022-11-01 14:27:58 +00:00
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: @media_attachment.not_processed? ? 202 : 200
|
2020-03-08 22:56:18 +00:00
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
|
|
|
render json: file_type_error, status: 422
|
|
|
|
rescue Paperclip::Error
|
|
|
|
render json: processing_error, status: 500
|
|
|
|
end
|
|
|
|
end
|