2016-11-15 17:56:29 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-17 18:47:26 +03:00
|
|
|
class MediaController < ApplicationController
|
2017-05-29 19:22:22 +03:00
|
|
|
include Authorization
|
|
|
|
|
2019-06-10 13:28:13 +03:00
|
|
|
skip_before_action :store_current_location
|
2020-06-19 20:18:47 +03:00
|
|
|
skip_before_action :require_functional!, unless: :whitelist_mode?
|
2019-06-10 13:28:13 +03:00
|
|
|
|
2019-07-30 12:10:46 +03:00
|
|
|
before_action :authenticate_user!, if: :whitelist_mode?
|
2018-02-16 08:22:20 +02:00
|
|
|
before_action :set_media_attachment
|
|
|
|
before_action :verify_permitted_status!
|
2019-06-20 00:42:38 +03:00
|
|
|
before_action :check_playable, only: :player
|
|
|
|
before_action :allow_iframing, only: :player
|
2020-08-12 00:15:32 +03:00
|
|
|
before_action :set_pack, only: :player
|
2016-09-17 18:47:26 +03:00
|
|
|
|
2018-12-18 17:40:30 +02:00
|
|
|
content_security_policy only: :player do |p|
|
|
|
|
p.frame_ancestors(false)
|
|
|
|
end
|
|
|
|
|
2016-09-17 18:47:26 +03:00
|
|
|
def show
|
2018-02-16 08:22:20 +02:00
|
|
|
redirect_to @media_attachment.file.url(:original)
|
|
|
|
end
|
|
|
|
|
|
|
|
def player
|
|
|
|
@body_classes = 'player'
|
2016-09-17 18:47:26 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-02-16 08:22:20 +02:00
|
|
|
def set_media_attachment
|
|
|
|
@media_attachment = MediaAttachment.attached.find_by!(shortcode: params[:id] || params[:medium_id])
|
2017-04-17 21:02:00 +03:00
|
|
|
end
|
|
|
|
|
2018-02-16 08:22:20 +02:00
|
|
|
def verify_permitted_status!
|
|
|
|
authorize @media_attachment.status, :show?
|
2017-05-29 19:22:22 +03:00
|
|
|
rescue Mastodon::NotPermittedError
|
2020-05-03 17:30:36 +03:00
|
|
|
not_found
|
2016-09-17 18:47:26 +03:00
|
|
|
end
|
2019-06-20 00:42:38 +03:00
|
|
|
|
|
|
|
def check_playable
|
|
|
|
not_found unless @media_attachment.larger_media_format?
|
|
|
|
end
|
|
|
|
|
|
|
|
def allow_iframing
|
|
|
|
response.headers['X-Frame-Options'] = 'ALLOWALL'
|
|
|
|
end
|
2020-08-12 00:15:32 +03:00
|
|
|
|
|
|
|
def set_pack
|
|
|
|
use_pack 'public'
|
|
|
|
end
|
2016-09-17 18:47:26 +03:00
|
|
|
end
|