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