2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 11:09:25 -07:00
|
|
|
class Api::V1::MediaController < Api::BaseController
|
2018-07-05 09:31:35 -07:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:media' }
|
2016-11-08 14:22:44 -08:00
|
|
|
before_action :require_user!
|
2020-03-08 15:56:18 -07:00
|
|
|
before_action :set_media_attachment, except: [:create]
|
|
|
|
before_action :check_processing, except: [:create]
|
2016-11-08 14:22:44 -08:00
|
|
|
|
2016-09-05 08:46:36 -07:00
|
|
|
def create
|
2020-03-08 15:56:18 -07:00
|
|
|
@media_attachment = current_account.media_attachments.create!(media_attachment_params)
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer
|
2016-10-06 05:39:34 -07:00
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
2017-05-30 18:11:29 -07:00
|
|
|
render json: file_type_error, status: 422
|
2016-10-06 05:39:34 -07:00
|
|
|
rescue Paperclip::Error
|
2017-05-30 18:11:29 -07:00
|
|
|
render json: processing_error, status: 500
|
2016-09-05 08:46:36 -07:00
|
|
|
end
|
2017-04-03 16:33:34 -07:00
|
|
|
|
2020-03-08 15:56:18 -07:00
|
|
|
def show
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: status_code_for_media_attachment
|
|
|
|
end
|
|
|
|
|
2017-09-28 06:31:31 -07:00
|
|
|
def update
|
2020-03-08 15:56:18 -07:00
|
|
|
@media_attachment.update!(media_attachment_params)
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: status_code_for_media_attachment
|
2017-09-28 06:31:31 -07:00
|
|
|
end
|
|
|
|
|
2017-04-03 16:33:34 -07:00
|
|
|
private
|
|
|
|
|
2020-03-08 15:56:18 -07: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
|
2018-02-21 15:35:46 -08:00
|
|
|
params.permit(:file, :description, :focus)
|
2017-04-03 16:33:34 -07:00
|
|
|
end
|
2017-05-30 18:11:29 -07: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 08:46:36 -07:00
|
|
|
end
|