2017-09-15 20:01:45 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MediaProxyController < ApplicationController
|
|
|
|
include RoutingHelper
|
2020-07-07 08:26:51 -05:00
|
|
|
include Authorization
|
2022-04-28 10:47:34 -05:00
|
|
|
include Redisable
|
2022-05-12 17:02:35 -05:00
|
|
|
include Lockable
|
2017-09-15 20:01:45 -05:00
|
|
|
|
2019-06-10 05:28:13 -05:00
|
|
|
skip_before_action :store_current_location
|
2019-09-27 18:33:27 -05:00
|
|
|
skip_before_action :require_functional!
|
2019-06-10 05:28:13 -05:00
|
|
|
|
2019-07-30 04:10:46 -05:00
|
|
|
before_action :authenticate_user!, if: :whitelist_mode?
|
|
|
|
|
2019-08-18 11:04:18 -05:00
|
|
|
rescue_from ActiveRecord::RecordInvalid, with: :not_found
|
2019-09-11 18:51:12 -05:00
|
|
|
rescue_from Mastodon::UnexpectedResponseError, with: :not_found
|
2020-07-07 08:26:51 -05:00
|
|
|
rescue_from Mastodon::NotPermittedError, with: :not_found
|
2019-09-11 18:51:12 -05:00
|
|
|
rescue_from HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError, with: :internal_server_error
|
2019-08-18 11:04:18 -05:00
|
|
|
|
2017-09-15 20:01:45 -05:00
|
|
|
def show
|
2022-05-12 17:02:35 -05: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-15 20:01:45 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
redirect_to full_asset_url(@media_attachment.file.url(version))
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def redownload!
|
2020-06-29 06:56:55 -05:00
|
|
|
@media_attachment.download_file!
|
|
|
|
@media_attachment.created_at = Time.now.utc
|
2017-09-15 20:01:45 -05:00
|
|
|
@media_attachment.save!
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
2021-02-19 02:56:14 -06:00
|
|
|
if request.path.end_with?('/small')
|
2017-09-15 20:01:45 -05:00
|
|
|
:small
|
|
|
|
else
|
|
|
|
:original
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def reject_media?
|
2019-06-21 17:13:10 -05:00
|
|
|
DomainBlock.reject_media?(@media_attachment.account.domain)
|
2017-09-15 20:01:45 -05:00
|
|
|
end
|
|
|
|
end
|