You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
315 B

7 years ago
7 years ago
7 years ago
  1. # frozen_string_literal: true
  2. class ProcessHashtagsService < BaseService
  3. def call(status, tags = [])
  4. tags = status.text.scan(Tag::HASHTAG_RE).map(&:first) if status.local?
  5. tags.map(&:downcase).uniq.each do |tag|
  6. status.tags << Tag.where(name: tag).first_or_initialize(name: tag)
  7. end
  8. end
  9. end