Sha256: 5bb6fd70e715666b5824f7311fc09da955e239842c529dddb307e23a2a622d48
Contents?: true
Size: 1.29 KB
Versions: 2
Compression:
Stored size: 1.29 KB
Contents
# frozen_string_literal: true require_dependency 'thredded/topic_policy' module Thredded class PostPolicy # The scope of readable posts. # MessageboardPolicy must be applied separately. class Scope # @param user [Thredded.user_class] # @param scope [ActiveRecord::Relation<Thredded::Post>] def initialize(user, scope) @user = user @scope = scope end # @return [ActiveRecord::Relation<Thredded::Post>] def resolve @scope.moderation_state_visible_to_user(@user) end end # @param user [Thredded.user_class] # @param post [Thredded::Post] def initialize(user, post) @user = user @post = post end def create? @user.thredded_admin? || !@post.postable.locked? && messageboard_policy.post? end def read? TopicPolicy.new(@user, @post.postable).read? && @post.moderation_state_visible_to_user?(@user) end def update? @user.thredded_admin? || own_post? || messageboard_policy.moderate? end def destroy? @post.postable.first_post != @post && update? end private def messageboard_policy @messageboard_policy ||= MessageboardPolicy.new(@user, @post.messageboard) end def own_post? @user.id == @post.user_id end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
thredded-0.5.1 | app/policies/thredded/post_policy.rb |
thredded-0.5.0 | app/policies/thredded/post_policy.rb |