mastodon/app/services/process_hashtags_service.rb

22 lines
592 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-05 14:20:05 +00:00
class ProcessHashtagsService < BaseService
def call(status, tags = [])
tags = Extractor.extract_hashtags(status.text) if status.local?
records = []
2016-11-05 14:20:05 +00:00
Tag.find_or_create_by_names(tags) do |tag|
status.tags << tag
records << tag
TrendingTags.record_use!(tag, status.account, status.created_at) if status.public_visibility?
2016-11-05 14:20:05 +00:00
end
return unless status.distributable?
status.account.featured_tags.where(tag_id: records.map(&:id)).each do |featured_tag|
featured_tag.increment(status.created_at)
end
2016-11-05 14:20:05 +00:00
end
end