discourse/app/services/badge_granter.rb

59 lines
1.8 KiB
Ruby
Raw Normal View History

2014-03-05 07:52:20 -05:00
class BadgeGranter
def initialize(badge, user, opts={})
@badge, @user, @opts = badge, user, opts
@granted_by = opts[:granted_by] || Discourse.system_user
2014-06-17 02:29:49 -04:00
@post_id = opts[:post_id]
2014-03-05 07:52:20 -05:00
end
def self.grant(badge, user, opts={})
BadgeGranter.new(badge, user, opts).grant
end
def grant
return if @granted_by and !Guardian.new(@granted_by).can_grant_badges?(@user)
2014-06-17 02:29:49 -04:00
user_badge = UserBadge.find_by(badge_id: @badge.id, user_id: @user.id, post_id: @post_id)
2014-03-05 07:52:20 -05:00
if user_badge.nil? || (@badge.multiple_grant? && @post_id.nil?)
UserBadge.transaction do
user_badge = UserBadge.create!(badge: @badge, user: @user,
2014-06-17 02:29:49 -04:00
granted_by: @granted_by,
granted_at: Time.now,
post_id: @post_id)
2014-03-05 07:52:20 -05:00
if @granted_by != Discourse.system_user
StaffActionLogger.new(@granted_by).log_badge_grant(user_badge)
end
if SiteSetting.enable_badges?
notification = @user.notifications.create(notification_type: Notification.types[:granted_badge], data: { badge_id: @badge.id, badge_name: @badge.name }.to_json)
user_badge.update_attributes notification_id: notification.id
end
end
2014-03-05 07:52:20 -05:00
end
user_badge
end
def self.revoke(user_badge, options={})
2014-03-05 07:52:20 -05:00
UserBadge.transaction do
user_badge.destroy!
if options[:revoked_by]
StaffActionLogger.new(options[:revoked_by]).log_badge_revoke(user_badge)
end
# If the user's title is the same as the badge name, remove their title.
if user_badge.user.title == user_badge.badge.name
user_badge.user.title = nil
user_badge.user.save!
end
2014-03-05 07:52:20 -05:00
end
end
def self.update_badges(args)
Jobs.enqueue(:update_badges, args)
end
2014-03-05 07:52:20 -05:00
end