/comments.atom: fix restricted posts being leaked.

Fix thumbnail URLs of loli/shota/banned posts being leaked in
/comments.atom. Restricted posts are now entirely hidden in
/comments.atom.

Example: https://danbooru.donmai.us/comments.atom?search[post_id]=2.
This commit is contained in:
evazion
2020-07-05 15:53:47 -05:00
parent d9b7879a4c
commit f0a573e1e5
3 changed files with 17 additions and 3 deletions

View File

@@ -97,6 +97,7 @@ class CommentsController < ApplicationController
if request.format.atom?
@comments = @comments.includes(:creator, :post)
@comments = @comments.select { |comment| comment.post.visible? }
elsif request.format.html?
@comments = @comments.includes(:creator, :updater, post: :uploader)
@comments = @comments.includes(:votes) if CurrentUser.is_member?