discourse/app/jobs/onceoff/grant_onebox.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
This reduces chances of errors where consumers of strings mutate inputs
and reduces memory usage of the app.

Test suite passes now, but there may be some stuff left, so we will run
a few sites on a branch prior to merging
2019-05-13 09:31:32 +08:00

46 lines
1.1 KiB
Ruby

# frozen_string_literal: true
module Jobs
class GrantOnebox < Jobs::Onceoff
sidekiq_options queue: 'low'
def execute_onceoff(args)
return unless SiteSetting.enable_badges
to_award = {}
Post.secured(Guardian.new)
.select(:id, :created_at, :raw, :user_id)
.visible
.public_posts
.where("raw LIKE '%http%'")
.find_in_batches do |group|
group.each do |p|
begin
# Note we can't use `p.cooked` here because oneboxes have been cooked out
cooked = PrettyText.cook(p.raw)
doc = Nokogiri::HTML::fragment(cooked)
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
end
end
end
to_award.each do |user_id, opts|
user = User.where(id: user_id).first
BadgeGranter.grant(badge, user, opts) if user
end
end
def badge
Badge.find(Badge::FirstOnebox)
end
end
end