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