2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-04-12 15:29:13 -04:00
|
|
|
module Jobs
|
|
|
|
|
2019-10-02 00:01:53 -04:00
|
|
|
class GrantOnebox < ::Jobs::Onceoff
|
2016-04-12 15:29:13 -04:00
|
|
|
sidekiq_options queue: 'low'
|
|
|
|
|
|
|
|
def execute_onceoff(args)
|
2016-07-06 03:34:08 -04:00
|
|
|
return unless SiteSetting.enable_badges
|
2016-04-12 15:29:13 -04:00
|
|
|
to_award = {}
|
|
|
|
|
|
|
|
Post.secured(Guardian.new)
|
|
|
|
.select(:id, :created_at, :raw, :user_id)
|
|
|
|
.visible
|
|
|
|
.public_posts
|
2016-08-10 13:24:01 -04:00
|
|
|
.where("raw LIKE '%http%'")
|
2016-04-12 15:29:13 -04:00
|
|
|
.find_in_batches do |group|
|
|
|
|
group.each do |p|
|
2016-04-14 11:30:04 -04:00
|
|
|
begin
|
|
|
|
# Note we can't use `p.cooked` here because oneboxes have been cooked out
|
|
|
|
cooked = PrettyText.cook(p.raw)
|
2020-05-04 23:46:57 -04:00
|
|
|
doc = Nokogiri::HTML5::fragment(cooked)
|
2016-04-14 11:30:04 -04:00
|
|
|
if doc.search('a.onebox').size > 0
|
|
|
|
to_award[p.user_id] ||= { post_id: p.id, created_at: p.created_at }
|
|
|
|
end
|
|
|
|
rescue
|
|
|
|
nil # if there is a problem cooking we don't care
|
2016-04-12 15:29:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
to_award.each do |user_id, opts|
|
2016-04-14 11:52:26 -04:00
|
|
|
user = User.where(id: user_id).first
|
|
|
|
BadgeGranter.grant(badge, user, opts) if user
|
2016-04-12 15:29:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-13 09:37:14 -04:00
|
|
|
def badge
|
2017-05-22 16:26:18 -04:00
|
|
|
Badge.find(Badge::FirstOnebox)
|
2016-06-13 09:37:14 -04:00
|
|
|
end
|
|
|
|
|
2016-04-12 15:29:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|