2014-01-09 18:25:14 -05:00
|
|
|
#mixin for all guardian methods dealing with topic permisions
|
|
|
|
module TopicGuardian
|
|
|
|
|
|
|
|
def can_remove_allowed_users?(topic)
|
|
|
|
is_staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
# Creating Methods
|
|
|
|
def can_create_topic?(parent)
|
2014-06-09 15:21:01 -04:00
|
|
|
is_staff? ||
|
2014-06-09 11:03:10 -04:00
|
|
|
(user &&
|
|
|
|
user.trust_level >= SiteSetting.min_trust_to_create_topic.to_i &&
|
|
|
|
can_create_post?(parent))
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_create_topic_on_category?(category)
|
2014-01-21 09:21:38 -05:00
|
|
|
can_create_topic?(nil) &&
|
2015-09-07 12:52:53 -04:00
|
|
|
(!category || Category.topic_create_allowed(self).where(id: category.id).count == 1)
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_create_post_on_topic?(topic)
|
|
|
|
# No users can create posts on deleted topics
|
2016-09-09 12:15:56 -04:00
|
|
|
return false if topic.blank?
|
2014-01-09 18:25:14 -05:00
|
|
|
return false if topic.trashed?
|
2016-04-13 01:59:38 -04:00
|
|
|
return true if is_admin?
|
2014-01-09 18:25:14 -05:00
|
|
|
|
2016-04-13 01:59:38 -04:00
|
|
|
trusted = (authenticated? && user.has_trust_level?(TrustLevel[4])) || is_moderator?
|
|
|
|
|
|
|
|
(!(topic.closed? || topic.archived?) || trusted) && can_create_post?(topic)
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Editing Method
|
|
|
|
def can_edit_topic?(topic)
|
2014-07-29 10:40:02 -04:00
|
|
|
return false if Discourse.static_doc_topic_ids.include?(topic.id) && !is_admin?
|
2015-02-26 00:08:52 -05:00
|
|
|
return false unless can_see?(topic)
|
2016-04-13 01:59:38 -04:00
|
|
|
|
|
|
|
return true if is_admin?
|
|
|
|
return true if is_moderator? && can_create_post?(topic)
|
|
|
|
|
2016-06-01 15:41:56 -04:00
|
|
|
# can't edit topics in secured categories where you don't have permission to create topics
|
|
|
|
return false if !can_create_topic_on_category?(topic.category)
|
|
|
|
|
2016-01-28 14:05:56 -05:00
|
|
|
# TL4 users can edit archived topics, but can not edit private messages
|
|
|
|
return true if (topic.archived && !topic.private_message? && user.has_trust_level?(TrustLevel[4]) && can_create_post?(topic))
|
2016-04-13 01:59:38 -04:00
|
|
|
|
2016-01-28 14:05:56 -05:00
|
|
|
# TL3 users can not edit archived topics and private messages
|
|
|
|
return true if (!topic.archived && !topic.private_message? && user.has_trust_level?(TrustLevel[3]) && can_create_post?(topic))
|
2015-04-30 17:03:51 -04:00
|
|
|
|
2014-08-15 12:44:58 -04:00
|
|
|
return false if topic.archived
|
2015-02-25 14:53:21 -05:00
|
|
|
is_my_own?(topic) && !topic.edit_time_limit_expired?
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Recovery Method
|
|
|
|
def can_recover_topic?(topic)
|
|
|
|
is_staff?
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_delete_topic?(topic)
|
|
|
|
!topic.trashed? &&
|
|
|
|
is_staff? &&
|
2014-08-13 17:02:44 -04:00
|
|
|
!(Category.exists?(topic_id: topic.id)) &&
|
|
|
|
!Discourse.static_doc_topic_ids.include?(topic.id)
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
2016-05-01 07:48:43 -04:00
|
|
|
def can_convert_topic?(topic)
|
2016-05-04 12:29:56 -04:00
|
|
|
return false if topic && topic.trashed?
|
|
|
|
return true if is_admin?
|
|
|
|
is_moderator? && can_create_post?(topic)
|
2016-05-01 07:48:43 -04:00
|
|
|
end
|
|
|
|
|
2014-01-09 18:25:14 -05:00
|
|
|
def can_reply_as_new_topic?(topic)
|
2016-06-27 08:36:57 -04:00
|
|
|
authenticated? && topic && !topic.private_message? && @user.has_trust_level?(TrustLevel[1])
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
|
|
|
|
2014-07-15 17:02:43 -04:00
|
|
|
def can_see_deleted_topics?
|
|
|
|
is_staff?
|
|
|
|
end
|
|
|
|
|
2016-06-27 08:36:57 -04:00
|
|
|
def can_see_topic?(topic, hide_deleted=true)
|
2014-05-12 10:30:10 -04:00
|
|
|
return false unless topic
|
2014-05-12 15:26:36 -04:00
|
|
|
return true if is_admin?
|
2016-06-27 08:36:57 -04:00
|
|
|
return false if hide_deleted && topic.deleted_at && !can_see_deleted_topics?
|
2014-01-09 18:25:14 -05:00
|
|
|
|
2014-08-05 00:37:28 -04:00
|
|
|
if topic.private_message?
|
2016-06-27 08:36:57 -04:00
|
|
|
return authenticated? && topic.all_allowed_users.where(id: @user.id).exists?
|
2014-08-05 00:37:28 -04:00
|
|
|
end
|
|
|
|
|
2016-06-27 08:36:57 -04:00
|
|
|
can_see_category?(topic.category)
|
2015-02-12 11:52:59 -05:00
|
|
|
end
|
2014-01-09 18:25:14 -05:00
|
|
|
|
2015-09-18 03:14:10 -04:00
|
|
|
def can_see_topic_if_not_deleted?(topic)
|
2016-06-27 08:36:57 -04:00
|
|
|
can_see_topic?(topic, false)
|
2015-09-18 03:14:10 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 11:52:59 -05:00
|
|
|
def filter_allowed_categories(records)
|
|
|
|
unless is_admin?
|
|
|
|
allowed_ids = allowed_category_ids
|
|
|
|
if allowed_ids.length > 0
|
|
|
|
records = records.where('topics.category_id IS NULL or topics.category_id IN (?)', allowed_ids)
|
|
|
|
else
|
|
|
|
records = records.where('topics.category_id IS NULL')
|
|
|
|
end
|
|
|
|
records = records.references(:categories)
|
|
|
|
end
|
|
|
|
records
|
2014-01-09 18:25:14 -05:00
|
|
|
end
|
2015-02-12 11:52:59 -05:00
|
|
|
|
2016-12-05 07:31:43 -05:00
|
|
|
def can_edit_featured_link?(category_id)
|
|
|
|
SiteSetting.topic_featured_link_enabled &&
|
|
|
|
(topic_featured_link_allowed_category_ids.empty? || # no per category restrictions
|
|
|
|
category_id && topic_featured_link_allowed_category_ids.include?(category_id.to_i)) # category restriction exists
|
|
|
|
end
|
2014-01-21 09:21:38 -05:00
|
|
|
end
|