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