This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-11-15 07:56:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-17 08:47:26 -07:00
|
|
|
class MediaController < ApplicationController
|
2017-05-29 09:22:22 -07:00
|
|
|
include Authorization
|
|
|
|
|
2017-04-17 11:02:00 -07:00
|
|
|
before_action :verify_permitted_status
|
2016-09-17 08:47:26 -07:00
|
|
|
|
|
|
|
def show
|
2017-04-17 11:02:00 -07:00
|
|
|
redirect_to media_attachment.file.url(:original)
|
2016-09-17 08:47:26 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-04-17 11:02:00 -07:00
|
|
|
def media_attachment
|
|
|
|
MediaAttachment.attached.find_by!(shortcode: params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def verify_permitted_status
|
2017-05-29 09:22:22 -07:00
|
|
|
authorize media_attachment.status, :show?
|
|
|
|
rescue Mastodon::NotPermittedError
|
|
|
|
# Reraise in order to get a 404 instead of a 403 error code
|
|
|
|
raise ActiveRecord::RecordNotFound
|
2016-09-17 08:47:26 -07:00
|
|
|
end
|
|
|
|
end
|