mastodon/app/services/process_hashtags_service.rb

12 lines
315 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-11-05 15:20:05 +01:00
class ProcessHashtagsService < BaseService
def call(status, tags = [])
tags = status.text.scan(Tag::HASHTAG_RE).map(&:first) if status.local?
2016-11-05 15:20:05 +01:00
2016-11-05 22:09:51 +01:00
tags.map(&:downcase).uniq.each do |tag|
2016-11-05 15:20:05 +01:00
status.tags << Tag.where(name: tag).first_or_initialize(name: tag)
end
end
end