discourse/app/controllers/post_readers_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class PostReadersController < ApplicationController
requires_login
def index
post = Post.includes(topic: %i[topic_allowed_groups topic_allowed_users]).find(params[:id])
ensure_can_see_readers!(post)
readers =
User
2019-11-14 15:53:52 -05:00
.real
.where(staged: false)
.where.not(id: post.user_id)
.joins(:topic_users)
.where.not(topic_users: { last_read_post_number: nil })
.where(
"topic_users.topic_id = ? AND topic_users.last_read_post_number >= ?",
post.topic_id,
post.post_number,
)
2019-12-03 09:31:58 -05:00
readers = readers.where("admin OR moderator") if post.whisper?
readers =
readers.map do |r|
{
id: r.id,
avatar_template: r.avatar_template,
username: r.username,
username_lower: r.username_lower,
}
end
render_json_dump(post_readers: readers)
end
private
def ensure_can_see_readers!(post)
show_readers =
GroupUser
.where(user: current_user)
.joins(:group)
.where(
groups: {
id: post.topic.topic_allowed_groups.map(&:group_id),
publish_read_state: true,
},
)
.exists?
raise Discourse::InvalidAccess unless show_readers
end
end