2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-17 16:47:26 +01:00
|
|
|
class MediaController < ApplicationController
|
2017-05-29 17:22:22 +01:00
|
|
|
include Authorization
|
|
|
|
|
2018-02-16 06:22:20 +00:00
|
|
|
before_action :set_media_attachment
|
|
|
|
before_action :verify_permitted_status!
|
2016-09-17 16:47:26 +01:00
|
|
|
|
|
|
|
def show
|
2018-02-16 06:22:20 +00:00
|
|
|
redirect_to @media_attachment.file.url(:original)
|
|
|
|
end
|
|
|
|
|
|
|
|
def player
|
|
|
|
@body_classes = 'player'
|
|
|
|
raise ActiveRecord::RecordNotFound unless @media_attachment.video? || @media_attachment.gifv?
|
2016-09-17 16:47:26 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-02-16 06:22:20 +00:00
|
|
|
def set_media_attachment
|
|
|
|
@media_attachment = MediaAttachment.attached.find_by!(shortcode: params[:id] || params[:medium_id])
|
2017-04-17 19:02:00 +01:00
|
|
|
end
|
|
|
|
|
2018-02-16 06:22:20 +00:00
|
|
|
def verify_permitted_status!
|
|
|
|
authorize @media_attachment.status, :show?
|
2017-05-29 17:22:22 +01:00
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
# Reraise in order to get a 404 instead of a 403 error code
|
|
|
|
raise ActiveRecord::RecordNotFound
|
2016-09-17 16:47:26 +01:00
|
|
|
end
|
|
|
|
end
|