about summary refs log tree commit diff
path: root/app/services/process_hashtags_service.rb
blob: 5ec5ea0c2c86c90c9f288b81438d46caa07b09a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

class ProcessHashtagsService < BaseService
  def call(status, tags = nil, extra_tags = [])
    tags ||= extra_tags | (status.local? ? Extractor.extract_hashtags(status.text) : [])
    records = []

    tag_ids = status.tag_ids.to_set

    Tag.find_or_create_by_names(tags) do |tag|
      next if tag_ids.include?(tag.id)

      status.tags << tag
      records << tag

      TrendingTags.record_use!(tag, status.account, status.created_at) if status.distributable?
    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
  end
end