2017-09-16 03:01:45 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MediaProxyController < ApplicationController
|
|
|
|
include RoutingHelper
|
2020-07-07 15:26:51 +02:00
|
|
|
include Authorization
|
2022-04-28 17:47:34 +02:00
|
|
|
include Redisable
|
2022-05-13 00:02:35 +02:00
|
|
|
include Lockable
|
2017-09-16 03:01:45 +02:00
|
|
|
|
2019-09-28 01:33:27 +02:00
|
|
|
skip_before_action :require_functional!
|
2019-06-10 12:28:13 +02:00
|
|
|
|
2023-08-02 19:32:48 +02:00
|
|
|
before_action :authenticate_user!, if: :limited_federation_mode?
|
2019-07-30 11:10:46 +02:00
|
|
|
|
2019-08-18 18:04:18 +02:00
|
|
|
rescue_from ActiveRecord::RecordInvalid, with: :not_found
|
2019-09-12 01:51:12 +02:00
|
|
|
rescue_from Mastodon::UnexpectedResponseError, with: :not_found
|
2020-07-07 15:26:51 +02:00
|
|
|
rescue_from Mastodon::NotPermittedError, with: :not_found
|
2024-10-08 16:59:51 +02:00
|
|
|
rescue_from(*Mastodon::HTTP_CONNECTION_ERRORS, with: :internal_server_error)
|
2019-08-18 18:04:18 +02:00
|
|
|
|
2017-09-16 03:01:45 +02:00
|
|
|
def show
|
2023-05-02 18:16:07 +02:00
|
|
|
with_redis_lock("media_download:#{params[:id]}") do
|
2022-05-13 00:02:35 +02:00
|
|
|
@media_attachment = MediaAttachment.remote.attached.find(params[:id])
|
|
|
|
authorize @media_attachment.status, :show?
|
|
|
|
redownload! if @media_attachment.needs_redownload? && !reject_media?
|
2017-09-16 03:01:45 +02:00
|
|
|
end
|
|
|
|
|
2023-03-26 00:38:32 +01:00
|
|
|
redirect_to full_asset_url(@media_attachment.file.url(version)), allow_other_host: true
|
2017-09-16 03:01:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def redownload!
|
2020-06-29 13:56:55 +02:00
|
|
|
@media_attachment.download_file!
|
|
|
|
@media_attachment.created_at = Time.now.utc
|
2017-09-16 03:01:45 +02:00
|
|
|
@media_attachment.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
2021-02-19 09:56:14 +01:00
|
|
|
if request.path.end_with?('/small')
|
2017-09-16 03:01:45 +02:00
|
|
|
:small
|
|
|
|
else
|
|
|
|
:original
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_media?
|
2019-06-22 00:13:10 +02:00
|
|
|
DomainBlock.reject_media?(@media_attachment.account.domain)
|
2017-09-16 03:01:45 +02:00
|
|
|
end
|
|
|
|
end
|