2014-01-09 17:25:14 -06:00
|
|
|
require_dependency 'guardian/category_guardian'
|
|
|
|
require_dependency 'guardian/ensure_magic'
|
|
|
|
require_dependency 'guardian/post_guardian'
|
|
|
|
require_dependency 'guardian/topic_guardian'
|
2014-02-13 10:42:35 -06:00
|
|
|
require_dependency 'guardian/user_guardian'
|
2014-10-27 16:06:43 -05:00
|
|
|
require_dependency 'guardian/post_revision_guardian'
|
2015-01-08 17:35:52 -06:00
|
|
|
require_dependency 'guardian/group_guardian'
|
2016-06-06 13:18:15 -05:00
|
|
|
require_dependency 'guardian/tag_guardian'
|
2014-02-13 10:42:35 -06:00
|
|
|
|
2013-02-06 13:46:45 -06:00
|
|
|
# The guardian is responsible for confirming access to various site resources and operations
|
2013-02-05 13:16:51 -06:00
|
|
|
class Guardian
|
2014-01-09 17:25:14 -06:00
|
|
|
include EnsureMagic
|
|
|
|
include CategoryGuardian
|
2014-05-12 09:30:10 -05:00
|
|
|
include PostGuardian
|
2014-01-09 17:25:14 -06:00
|
|
|
include TopicGuardian
|
2014-02-13 10:42:35 -06:00
|
|
|
include UserGuardian
|
2014-10-27 16:06:43 -05:00
|
|
|
include PostRevisionGuardian
|
2015-01-08 17:35:52 -06:00
|
|
|
include GroupGuardian
|
2016-06-06 13:18:15 -05:00
|
|
|
include TagGuardian
|
2014-02-04 13:05:50 -06:00
|
|
|
|
2013-05-20 01:04:53 -05:00
|
|
|
class AnonymousUser
|
|
|
|
def blank?; true; end
|
|
|
|
def admin?; false; end
|
|
|
|
def staff?; false; end
|
2014-02-06 21:24:19 -06:00
|
|
|
def moderator?; false; end
|
2013-05-20 01:04:53 -05:00
|
|
|
def approved?; false; end
|
2016-02-24 04:30:17 -06:00
|
|
|
def staged?; false; end
|
2017-11-10 11:18:08 -06:00
|
|
|
def silenced?; false; end
|
2013-05-20 01:04:53 -05:00
|
|
|
def secure_category_ids; []; end
|
2013-07-13 20:24:16 -05:00
|
|
|
def topic_create_allowed_category_ids; []; end
|
2013-05-20 01:04:53 -05:00
|
|
|
def has_trust_level?(level); false; end
|
2013-09-04 19:27:34 -05:00
|
|
|
def email; nil; end
|
2013-05-20 01:04:53 -05:00
|
|
|
end
|
2014-05-12 09:30:10 -05:00
|
|
|
|
2014-11-03 05:46:08 -06:00
|
|
|
attr_accessor :can_see_emails
|
2018-10-09 09:21:41 -05:00
|
|
|
attr_reader :request
|
2014-11-03 05:46:08 -06:00
|
|
|
|
2018-10-09 09:21:41 -05:00
|
|
|
def initialize(user = nil, request = nil)
|
2013-05-20 01:04:53 -05:00
|
|
|
@user = user.presence || AnonymousUser.new
|
2018-10-09 09:21:41 -05:00
|
|
|
@request = request
|
2013-05-20 01:04:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def user
|
|
|
|
@user.presence
|
|
|
|
end
|
|
|
|
alias :current_user :user
|
|
|
|
|
|
|
|
def anonymous?
|
|
|
|
!authenticated?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-05-20 01:04:53 -05:00
|
|
|
def authenticated?
|
|
|
|
@user.present?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_admin?
|
2013-05-20 01:04:53 -05:00
|
|
|
@user.admin?
|
2013-04-29 01:33:24 -05:00
|
|
|
end
|
|
|
|
|
2013-05-02 02:22:27 -05:00
|
|
|
def is_staff?
|
2013-05-20 01:04:53 -05:00
|
|
|
@user.staff?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2014-02-06 21:24:19 -06:00
|
|
|
def is_moderator?
|
|
|
|
@user.moderator?
|
|
|
|
end
|
|
|
|
|
2017-11-10 11:18:08 -06:00
|
|
|
def is_silenced?
|
|
|
|
@user.silenced?
|
2016-06-20 02:41:17 -05:00
|
|
|
end
|
|
|
|
|
2013-09-04 19:27:34 -05:00
|
|
|
def is_developer?
|
|
|
|
@user &&
|
|
|
|
is_admin? &&
|
2018-01-16 22:50:18 -06:00
|
|
|
(
|
|
|
|
Rails.env.development? ||
|
|
|
|
Developer.user_ids.include?(@user.id) ||
|
2013-09-05 23:07:23 -05:00
|
|
|
(
|
|
|
|
Rails.configuration.respond_to?(:developer_emails) &&
|
|
|
|
Rails.configuration.developer_emails.include?(@user.email)
|
2018-01-16 22:50:18 -06:00
|
|
|
)
|
2013-09-05 23:07:23 -05:00
|
|
|
)
|
2013-09-04 19:27:34 -05:00
|
|
|
end
|
|
|
|
|
2016-06-26 12:25:45 -05:00
|
|
|
def is_staged?
|
|
|
|
@user.staged?
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Can the user see the object?
|
|
|
|
def can_see?(obj)
|
2013-05-20 01:04:53 -05:00
|
|
|
if obj
|
|
|
|
see_method = method_name_for :see, obj
|
|
|
|
return (see_method ? send(see_method, obj) : true)
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-07-27 20:20:09 -05:00
|
|
|
def can_create?(klass, parent = nil)
|
2014-03-17 13:50:28 -05:00
|
|
|
return false unless authenticated? && klass
|
|
|
|
|
|
|
|
# If no parent is provided, we look for a can_create_klass?
|
|
|
|
# custom method.
|
|
|
|
#
|
|
|
|
# If a parent is provided, we look for a method called
|
|
|
|
# can_create_klass_on_parent?
|
|
|
|
target = klass.name.underscore
|
|
|
|
if parent.present?
|
|
|
|
return false unless can_see?(parent)
|
|
|
|
target << "_on_#{parent.class.name.underscore}"
|
|
|
|
end
|
|
|
|
create_method = :"can_create_#{target}?"
|
|
|
|
|
|
|
|
return send(create_method, parent) if respond_to?(create_method)
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-04-25 10:46:54 -05:00
|
|
|
def can_enable_safe_mode?
|
|
|
|
SiteSetting.enable_safe_mode? || is_staff?
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Can the user edit the obj
|
|
|
|
def can_edit?(obj)
|
2013-08-16 07:24:29 -05:00
|
|
|
can_do?(:edit, obj)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
# Can we delete the object
|
|
|
|
def can_delete?(obj)
|
2013-08-16 07:24:29 -05:00
|
|
|
can_do?(:delete, obj)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_moderate?(obj)
|
2017-11-10 11:18:08 -06:00
|
|
|
obj && authenticated? && !is_silenced? && (is_staff? || (obj.is_a?(Topic) && @user.has_trust_level?(TrustLevel[4])))
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
2013-02-25 10:42:20 -06:00
|
|
|
alias :can_move_posts? :can_moderate?
|
2013-02-05 13:16:51 -06:00
|
|
|
alias :can_see_flags? :can_moderate?
|
2015-03-27 17:31:04 -05:00
|
|
|
alias :can_close? :can_moderate?
|
2014-09-02 15:12:27 -05:00
|
|
|
|
2018-02-22 08:57:02 -06:00
|
|
|
def can_tag?(topic)
|
|
|
|
return false if topic.blank?
|
2018-02-13 14:46:25 -06:00
|
|
|
|
2018-02-22 08:57:02 -06:00
|
|
|
topic.private_message? ? can_tag_pms? : can_tag_topics?
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_see_tags?(topic)
|
|
|
|
SiteSetting.tagging_enabled && topic.present? && (!topic.private_message? || can_tag_pms?)
|
2018-02-13 14:46:25 -06:00
|
|
|
end
|
|
|
|
|
2017-07-04 03:29:05 -05:00
|
|
|
def can_send_activation_email?(user)
|
|
|
|
user && is_staff? && !SiteSetting.must_approve_users?
|
|
|
|
end
|
|
|
|
|
2014-09-02 15:12:27 -05:00
|
|
|
def can_grant_badges?(_user)
|
|
|
|
SiteSetting.enable_badges && is_staff?
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2014-04-22 15:43:46 -05:00
|
|
|
def can_see_group?(group)
|
2016-04-26 13:17:53 -05:00
|
|
|
return false if group.blank?
|
2017-07-03 14:26:46 -05:00
|
|
|
return true if group.visibility_level == Group.visibility_levels[:public]
|
|
|
|
return true if is_admin?
|
|
|
|
return true if is_staff? && group.visibility_level == Group.visibility_levels[:staff]
|
2016-04-26 13:17:53 -05:00
|
|
|
return false if user.blank?
|
|
|
|
|
2017-07-03 14:26:46 -05:00
|
|
|
membership = GroupUser.find_by(group_id: group.id, user_id: user.id)
|
|
|
|
|
|
|
|
return false unless membership
|
|
|
|
|
|
|
|
if !membership.owner
|
|
|
|
return false if group.visibility_level == Group.visibility_levels[:owners]
|
|
|
|
return false if group.visibility_level == Group.visibility_levels[:staff]
|
|
|
|
end
|
|
|
|
|
|
|
|
true
|
2014-04-22 15:43:46 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Can we impersonate this user?
|
|
|
|
def can_impersonate?(target)
|
2013-05-20 01:04:53 -05:00
|
|
|
target &&
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
# You must be an admin to impersonate
|
2013-05-20 01:04:53 -05:00
|
|
|
is_admin? &&
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-09-04 19:27:34 -05:00
|
|
|
# You may not impersonate other admins unless you are a dev
|
|
|
|
(!target.admin? || is_developer?)
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-05-20 01:04:53 -05:00
|
|
|
# Additionally, you may not impersonate yourself;
|
|
|
|
# but the two tests for different admin statuses
|
|
|
|
# make it impossible to be the same user.
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-02-21 06:45:30 -06:00
|
|
|
def can_view_action_logs?(target)
|
2017-04-20 11:15:52 -05:00
|
|
|
target.present? && is_staff?
|
2017-02-21 06:45:30 -06:00
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Can we approve it?
|
|
|
|
def can_approve?(target)
|
2017-09-04 11:55:23 -05:00
|
|
|
is_staff? && target && target.active? && not(target.approved?)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
2014-04-28 12:46:28 -05:00
|
|
|
|
|
|
|
def can_activate?(target)
|
|
|
|
is_staff? && target && not(target.active?)
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2013-11-07 12:53:32 -06:00
|
|
|
def can_suspend?(user)
|
2013-05-24 11:13:31 -05:00
|
|
|
user && is_staff? && user.regular?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
2013-11-07 12:53:32 -06:00
|
|
|
alias :can_deactivate? :can_suspend?
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
def can_revoke_admin?(admin)
|
2013-05-20 01:04:53 -05:00
|
|
|
can_administer_user?(admin) && admin.admin?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_grant_admin?(user)
|
2016-12-28 21:11:33 -06:00
|
|
|
can_administer_user?(user) && !user.admin?
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2013-02-12 16:58:08 -06:00
|
|
|
def can_revoke_moderation?(moderator)
|
2013-05-20 01:04:53 -05:00
|
|
|
can_administer?(moderator) && moderator.moderator?
|
2013-02-12 16:58:08 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_grant_moderation?(user)
|
2016-12-28 21:11:33 -06:00
|
|
|
can_administer?(user) && !user.moderator?
|
2013-02-12 16:58:08 -06:00
|
|
|
end
|
|
|
|
|
2018-04-06 13:29:27 -05:00
|
|
|
def can_grant_title?(user, title = nil)
|
|
|
|
return true if user && is_staff?
|
2018-04-26 15:50:50 -05:00
|
|
|
return false if title.nil?
|
2018-05-31 18:10:52 -05:00
|
|
|
return true if title.empty? # A title set to '(none)' in the UI is an empty string
|
2018-04-06 13:29:27 -05:00
|
|
|
return false if user != @user
|
|
|
|
return true if user.badges.where(name: title, allow_title: true).exists?
|
|
|
|
user.groups.where(title: title).exists?
|
2013-06-25 17:39:20 -05:00
|
|
|
end
|
|
|
|
|
2014-02-10 15:59:36 -06:00
|
|
|
def can_change_primary_group?(user)
|
|
|
|
user && is_staff?
|
|
|
|
end
|
|
|
|
|
2013-07-03 03:27:40 -05:00
|
|
|
def can_change_trust_level?(user)
|
2013-07-22 18:13:48 -05:00
|
|
|
user && is_staff?
|
2013-07-03 03:27:40 -05:00
|
|
|
end
|
|
|
|
|
2013-04-03 11:23:28 -05:00
|
|
|
# Support sites that have to approve users
|
|
|
|
def can_access_forum?
|
|
|
|
return true unless SiteSetting.must_approve_users?
|
2013-05-02 02:22:27 -05:00
|
|
|
return false unless @user
|
2013-04-03 11:23:28 -05:00
|
|
|
|
2013-05-02 02:22:27 -05:00
|
|
|
# Staff can't lock themselves out of a site
|
|
|
|
return true if is_staff?
|
2013-04-03 11:23:28 -05:00
|
|
|
|
2013-05-02 02:22:27 -05:00
|
|
|
@user.approved?
|
2013-04-03 11:23:28 -05:00
|
|
|
end
|
|
|
|
|
2014-03-21 13:13:04 -05:00
|
|
|
def can_see_invite_details?(user)
|
2013-05-20 01:04:53 -05:00
|
|
|
is_me?(user)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-07-27 20:20:09 -05:00
|
|
|
def can_invite_to_forum?(groups = nil)
|
2013-06-21 01:35:13 -05:00
|
|
|
authenticated? &&
|
2015-06-04 23:52:41 -05:00
|
|
|
(SiteSetting.max_invites_per_day.to_i > 0 || is_staff?) &&
|
2014-04-21 18:17:37 -05:00
|
|
|
!SiteSetting.enable_sso &&
|
2014-06-18 15:46:04 -05:00
|
|
|
SiteSetting.enable_local_logins &&
|
2013-06-21 01:35:13 -05:00
|
|
|
(
|
2014-09-05 00:20:39 -05:00
|
|
|
(!SiteSetting.must_approve_users? && @user.has_trust_level?(TrustLevel[2])) ||
|
2013-06-21 01:35:13 -05:00
|
|
|
is_staff?
|
2014-05-09 03:22:15 -05:00
|
|
|
) &&
|
2017-07-21 01:12:24 -05:00
|
|
|
(groups.blank? || is_admin? || groups.all? { |g| can_edit_group?(g) })
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-07-27 20:20:09 -05:00
|
|
|
def can_invite_to?(object, groups = nil)
|
2017-05-19 11:55:26 -05:00
|
|
|
return false unless authenticated?
|
2015-03-02 13:25:25 -06:00
|
|
|
return true if is_admin?
|
2015-06-04 23:52:41 -05:00
|
|
|
return false if (SiteSetting.max_invites_per_day.to_i == 0 && !is_staff?)
|
2017-05-19 11:55:26 -05:00
|
|
|
return false unless can_see?(object)
|
2017-07-21 01:12:24 -05:00
|
|
|
return false if groups.present?
|
2015-03-02 13:25:25 -06:00
|
|
|
|
2018-03-07 14:04:17 -06:00
|
|
|
if object.is_a?(Topic) && object.private_message?
|
|
|
|
return false unless SiteSetting.enable_personal_messages?
|
2018-08-22 23:36:49 -05:00
|
|
|
return false if object.reached_recipients_limit? && !is_staff?
|
2018-03-07 14:04:17 -06:00
|
|
|
end
|
|
|
|
|
2015-03-02 13:25:25 -06:00
|
|
|
if object.is_a?(Topic) && object.category
|
|
|
|
if object.category.groups.any?
|
|
|
|
return true if object.category.groups.all? { |g| can_edit_group?(g) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
user.has_trust_level?(TrustLevel[2])
|
2013-11-06 11:56:26 -06:00
|
|
|
end
|
|
|
|
|
2017-02-02 11:38:25 -06:00
|
|
|
def can_invite_via_email?(object)
|
|
|
|
return false unless can_invite_to?(object)
|
|
|
|
!SiteSetting.enable_sso && SiteSetting.enable_local_logins && (!SiteSetting.must_approve_users? || is_staff?)
|
|
|
|
end
|
|
|
|
|
2014-05-27 15:14:37 -05:00
|
|
|
def can_bulk_invite_to_forum?(user)
|
|
|
|
user.admin?
|
|
|
|
end
|
|
|
|
|
2014-07-29 12:57:08 -05:00
|
|
|
def can_send_multiple_invites?(user)
|
|
|
|
user.staff?
|
2016-06-07 00:27:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_resend_all_invites?(user)
|
|
|
|
user.staff?
|
2014-07-29 12:57:08 -05:00
|
|
|
end
|
|
|
|
|
2017-06-29 09:32:07 -05:00
|
|
|
def can_rescind_all_invites?(user)
|
|
|
|
user.staff?
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def can_see_private_messages?(user_id)
|
2014-02-06 21:24:19 -06:00
|
|
|
is_admin? || (authenticated? && @user.id == user_id)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2017-12-13 20:53:21 -06:00
|
|
|
def can_invite_group_to_private_message?(group, topic)
|
|
|
|
can_see_topic?(topic) &&
|
|
|
|
can_send_private_message?(group)
|
|
|
|
end
|
|
|
|
|
2013-05-02 00:15:17 -05:00
|
|
|
def can_send_private_message?(target)
|
2017-10-06 02:56:58 -05:00
|
|
|
is_user = target.is_a?(User)
|
|
|
|
is_group = target.is_a?(Group)
|
|
|
|
|
|
|
|
(is_group || is_user) &&
|
2014-02-12 22:08:46 -06:00
|
|
|
# User is authenticated
|
2013-05-20 01:04:53 -05:00
|
|
|
authenticated? &&
|
2017-10-23 16:19:30 -05:00
|
|
|
# Have to be a basic level at least
|
|
|
|
@user.has_trust_level?(SiteSetting.min_trust_to_send_messages) &&
|
2017-10-06 02:56:58 -05:00
|
|
|
# User disabled private message
|
|
|
|
(is_staff? || is_group || target.user_option.allow_private_messages) &&
|
2014-02-12 22:08:46 -06:00
|
|
|
# PMs are enabled
|
2018-01-31 00:03:12 -06:00
|
|
|
(is_staff? || SiteSetting.enable_personal_messages) &&
|
2014-05-06 14:01:19 -05:00
|
|
|
# Can't send PMs to suspended users
|
2017-10-06 02:56:58 -05:00
|
|
|
(is_staff? || is_group || !target.suspended?) &&
|
2017-12-13 20:53:21 -06:00
|
|
|
# Check group messageable level
|
|
|
|
(is_staff? || is_user || Group.messageable(@user).where(id: target.id).exists?) &&
|
2017-11-10 11:18:08 -06:00
|
|
|
# Silenced users can only send PM to staff
|
|
|
|
(!is_silenced? || target.staff?)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2018-08-26 20:38:11 -05:00
|
|
|
def can_send_private_messages_to_email?
|
2017-08-28 11:07:30 -05:00
|
|
|
# Staged users must be enabled to create a temporary user.
|
|
|
|
SiteSetting.enable_staged_users &&
|
|
|
|
# User is authenticated
|
|
|
|
authenticated? &&
|
|
|
|
# User is trusted enough
|
2018-08-26 20:38:11 -05:00
|
|
|
(is_staff? ||
|
|
|
|
(
|
|
|
|
# TODO: 2019 evaluate if we need this flexibility
|
|
|
|
# perhaps we enable this unconditionally to TL4?
|
|
|
|
@user.has_trust_level?(SiteSetting.min_trust_to_send_email_messages) &&
|
|
|
|
SiteSetting.enable_personal_email_messages
|
|
|
|
)
|
|
|
|
)
|
2017-08-28 11:07:30 -05:00
|
|
|
end
|
|
|
|
|
2014-11-03 05:46:08 -06:00
|
|
|
def can_see_emails?
|
|
|
|
@can_see_emails
|
|
|
|
end
|
|
|
|
|
2017-05-19 14:59:37 -05:00
|
|
|
def can_export_entity?(entity)
|
2016-05-05 08:42:37 -05:00
|
|
|
return false unless @user
|
2018-09-20 20:07:13 -05:00
|
|
|
return true if is_admin?
|
|
|
|
return entity != 'user_list' if is_moderator?
|
2017-05-19 14:59:37 -05:00
|
|
|
|
|
|
|
# Regular users can only export their archives
|
|
|
|
return false unless entity == "user_archive"
|
2014-12-30 06:37:05 -06:00
|
|
|
UserExport.where(user_id: @user.id, created_at: (Time.zone.now.beginning_of_day..Time.zone.now.end_of_day)).count == 0
|
2014-12-22 10:17:04 -06:00
|
|
|
end
|
|
|
|
|
2018-09-06 19:44:57 -05:00
|
|
|
def allow_themes?(theme_ids, include_preview: false)
|
2018-08-10 06:12:02 -05:00
|
|
|
return true if theme_ids.blank?
|
|
|
|
|
2018-09-06 19:44:57 -05:00
|
|
|
if include_preview && is_staff? && (theme_ids - Theme.theme_ids).blank?
|
2018-08-07 23:46:34 -05:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
parent = theme_ids.first
|
|
|
|
components = theme_ids[1..-1] || []
|
|
|
|
|
|
|
|
Theme.user_theme_ids.include?(parent) &&
|
|
|
|
(components - Theme.components_for(parent)).empty?
|
2017-04-14 12:35:12 -05:00
|
|
|
end
|
|
|
|
|
2018-10-11 18:40:48 -05:00
|
|
|
def auth_token
|
2018-10-11 18:51:41 -05:00
|
|
|
if cookie = request&.cookies[Auth::DefaultCurrentUserProvider::TOKEN_COOKIE]
|
|
|
|
UserAuthToken.hash_token(cookie)
|
|
|
|
end
|
2018-10-11 18:40:48 -05:00
|
|
|
end
|
|
|
|
|
2013-05-20 01:04:53 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def is_my_own?(obj)
|
2013-10-03 22:28:49 -05:00
|
|
|
|
|
|
|
unless anonymous?
|
2013-10-04 02:00:23 -05:00
|
|
|
return obj.user_id == @user.id if obj.respond_to?(:user_id) && obj.user_id && @user.id
|
2013-10-03 22:28:49 -05:00
|
|
|
return obj.user == @user if obj.respond_to?(:user)
|
|
|
|
end
|
|
|
|
|
|
|
|
false
|
2013-05-20 01:04:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_me?(other)
|
2014-03-26 14:20:41 -05:00
|
|
|
other && authenticated? && other.is_a?(User) && @user == other
|
2013-04-29 01:33:24 -05:00
|
|
|
end
|
2013-05-20 01:04:53 -05:00
|
|
|
|
|
|
|
def is_not_me?(other)
|
|
|
|
@user.blank? || !is_me?(other)
|
|
|
|
end
|
|
|
|
|
|
|
|
def can_administer?(obj)
|
2016-12-28 21:11:33 -06:00
|
|
|
is_admin? && obj.present? && obj.id&.positive?
|
2013-05-20 01:04:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_administer_user?(other_user)
|
|
|
|
can_administer?(other_user) && is_not_me?(other_user)
|
|
|
|
end
|
|
|
|
|
|
|
|
def method_name_for(action, obj)
|
|
|
|
method_name = :"can_#{action}_#{obj.class.name.underscore}?"
|
|
|
|
return method_name if respond_to?(method_name)
|
|
|
|
end
|
|
|
|
|
2013-08-16 07:24:29 -05:00
|
|
|
def can_do?(action, obj)
|
|
|
|
if obj && authenticated?
|
|
|
|
action_method = method_name_for action, obj
|
|
|
|
return (action_method ? send(action_method, obj) : true)
|
2014-01-16 10:59:26 -06:00
|
|
|
else
|
|
|
|
false
|
2013-08-16 07:24:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|