2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::MediaController < Api::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:media' }
|
2016-11-08 23:22:44 +01:00
|
|
|
before_action :require_user!
|
2020-03-08 23:56:18 +01:00
|
|
|
before_action :set_media_attachment, except: [:create]
|
|
|
|
before_action :check_processing, except: [:create]
|
2016-11-08 23:22:44 +01:00
|
|
|
|
2016-09-05 17:46:36 +02:00
|
|
|
def create
|
2020-03-08 23:56:18 +01:00
|
|
|
@media_attachment = current_account.media_attachments.create!(media_attachment_params)
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer
|
2016-10-06 14:39:34 +02:00
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
2017-05-31 03:11:29 +02:00
|
|
|
render json: file_type_error, status: 422
|
2016-10-06 14:39:34 +02:00
|
|
|
rescue Paperclip::Error
|
2017-05-31 03:11:29 +02:00
|
|
|
render json: processing_error, status: 500
|
2016-09-05 17:46:36 +02:00
|
|
|
end
|
2017-04-04 01:33:34 +02:00
|
|
|
|
2020-03-08 23:56:18 +01:00
|
|
|
def show
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: status_code_for_media_attachment
|
|
|
|
end
|
|
|
|
|
2017-09-28 15:31:31 +02:00
|
|
|
def update
|
2020-03-08 23:56:18 +01:00
|
|
|
@media_attachment.update!(media_attachment_params)
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: status_code_for_media_attachment
|
2017-09-28 15:31:31 +02:00
|
|
|
end
|
|
|
|
|
2017-04-04 01:33:34 +02:00
|
|
|
private
|
|
|
|
|
2020-03-08 23:56:18 +01:00
|
|
|
def status_code_for_media_attachment
|
|
|
|
@media_attachment.not_processed? ? 206 : 200
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_media_attachment
|
|
|
|
@media_attachment = current_account.media_attachments.unattached.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_processing
|
|
|
|
render json: processing_error, status: 422 if @media_attachment.processing_failed?
|
|
|
|
end
|
|
|
|
|
|
|
|
def media_attachment_params
|
2020-06-29 13:56:55 +02:00
|
|
|
params.permit(:file, :thumbnail, :description, :focus)
|
2017-04-04 01:33:34 +02:00
|
|
|
end
|
2017-05-31 03:11:29 +02:00
|
|
|
|
|
|
|
def file_type_error
|
|
|
|
{ error: 'File type of uploaded media could not be verified' }
|
|
|
|
end
|
|
|
|
|
|
|
|
def processing_error
|
|
|
|
{ error: 'Error processing thumbnail for uploaded media' }
|
|
|
|
end
|
2016-09-05 17:46:36 +02:00
|
|
|
end
|