Files
danbooru/app/controllers/post_appeals_controller.rb
evazion f1b5c34b4d posts: show length of videos and animations in thumbnails.
Show the length of videos and animated posts in the thumbnail. The
length is shown the top left corner in MM:SS format. This replaces the
play button icon.

Show a speaker icon instead of a music note icon for posts with sound.

Doing this requires doing `.includes(:media_asset)` in a bunch of
places to avoid N+1 queries when we access the post's duration.
2021-10-25 02:56:55 -05:00

48 lines
1.4 KiB
Ruby

class PostAppealsController < ApplicationController
respond_to :html, :xml, :json, :js
def new
@post_appeal = authorize PostAppeal.new(permitted_attributes(PostAppeal))
respond_with(@post_appeal)
end
def index
@post_appeals = authorize PostAppeal.paginated_search(params)
if request.format.html?
@post_appeals = @post_appeals.includes(:creator, post: [:appeals, :uploader, :approver, :media_asset])
else
@post_appeals = @post_appeals.includes(:post)
end
respond_with(@post_appeals)
end
def create
@post_appeal = authorize PostAppeal.new(creator: CurrentUser.user, **permitted_attributes(PostAppeal))
@post_appeal.save
flash[:notice] = @post_appeal.errors.none? ? "Post appealed" : @post_appeal.errors.full_messages.join("; ")
respond_with(@post_appeal)
end
def show
@post_appeal = authorize PostAppeal.find(params[:id])
respond_with(@post_appeal) do |fmt|
fmt.html { redirect_to post_appeals_path(search: { id: @post_appeal.id }) }
end
end
def edit
@post_appeal = authorize PostAppeal.find(params[:id])
respond_with(@post_appeal)
end
def update
@post_appeal = authorize PostAppeal.find(params[:id])
@post_appeal.update(permitted_attributes(@post_appeal))
respond_with(@post_appeal) do |fmt|
fmt.html { redirect_to post_path(@post_appeal.post) }
end
end
end