2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 14:09:25 -04:00
|
|
|
class Api::V1::MediaController < Api::BaseController
|
2018-07-05 12:31:35 -04:00
|
|
|
before_action -> { doorkeeper_authorize! :write, :'write:media' }
|
2016-11-08 17:22:44 -05:00
|
|
|
before_action :require_user!
|
2020-03-08 18:56:18 -04:00
|
|
|
before_action :set_media_attachment, except: [:create]
|
|
|
|
before_action :check_processing, except: [:create]
|
2016-11-08 17:22:44 -05:00
|
|
|
|
2023-04-30 00:46:39 -04:00
|
|
|
def show
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: status_code_for_media_attachment
|
|
|
|
end
|
|
|
|
|
2016-09-05 11:46:36 -04:00
|
|
|
def create
|
2020-03-08 18:56:18 -04:00
|
|
|
@media_attachment = current_account.media_attachments.create!(media_attachment_params)
|
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer
|
2016-10-06 08:39:34 -04:00
|
|
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError
|
2017-05-30 21:11:29 -04:00
|
|
|
render json: file_type_error, status: 422
|
2023-05-05 08:41:07 -04:00
|
|
|
rescue Paperclip::Error => e
|
|
|
|
Rails.logger.error "#{e.class}: #{e.message}"
|
2017-05-30 21:11:29 -04:00
|
|
|
render json: processing_error, status: 500
|
2016-09-05 11:46:36 -04:00
|
|
|
end
|
2017-04-03 19:33:34 -04:00
|
|
|
|
2017-09-28 09:31:31 -04:00
|
|
|
def update
|
2022-02-09 18:15:30 -05:00
|
|
|
@media_attachment.update!(updateable_media_attachment_params)
|
2020-03-08 18:56:18 -04:00
|
|
|
render json: @media_attachment, serializer: REST::MediaAttachmentSerializer, status: status_code_for_media_attachment
|
2017-09-28 09:31:31 -04:00
|
|
|
end
|
|
|
|
|
2017-04-03 19:33:34 -04:00
|
|
|
private
|
|
|
|
|
2020-03-08 18:56:18 -04:00
|
|
|
def status_code_for_media_attachment
|
|
|
|
@media_attachment.not_processed? ? 206 : 200
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_media_attachment
|
2022-03-03 10:13:58 -05:00
|
|
|
@media_attachment = current_account.media_attachments.where(status_id: nil).find(params[:id])
|
2020-03-08 18:56:18 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def check_processing
|
|
|
|
render json: processing_error, status: 422 if @media_attachment.processing_failed?
|
|
|
|
end
|
|
|
|
|
|
|
|
def media_attachment_params
|
2020-06-29 07:56:55 -04:00
|
|
|
params.permit(:file, :thumbnail, :description, :focus)
|
2017-04-03 19:33:34 -04:00
|
|
|
end
|
2017-05-30 21:11:29 -04:00
|
|
|
|
2022-02-09 18:15:30 -05:00
|
|
|
def updateable_media_attachment_params
|
|
|
|
params.permit(:thumbnail, :description, :focus)
|
|
|
|
end
|
|
|
|
|
2017-05-30 21:11:29 -04: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 11:46:36 -04:00
|
|
|
end
|