The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

70 wiersze
2.1 KiB

  1. # frozen_string_literal: true
  2. class ProcessMentionsService < BaseService
  3. include Payloadable
  4. # Scan status for mentions and fetch remote mentioned users, create
  5. # local mention pointers, send Salmon notifications to mentioned
  6. # remote users
  7. # @param [Status] status
  8. def call(status)
  9. return unless status.local?
  10. @status = status
  11. mentions = []
  12. status.text = status.text.gsub(Account::MENTION_RE) do |match|
  13. username, domain = Regexp.last_match(1).split('@')
  14. mentioned_account = Account.find_remote(username, domain)
  15. if mention_undeliverable?(mentioned_account)
  16. begin
  17. mentioned_account = resolve_account_service.call(Regexp.last_match(1))
  18. rescue Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::UnexpectedResponseError
  19. mentioned_account = nil
  20. end
  21. end
  22. next match if mention_undeliverable?(mentioned_account) || mentioned_account&.suspended?
  23. mentions << mentioned_account.mentions.where(status: status).first_or_create(status: status)
  24. "@#{mentioned_account.acct}"
  25. end
  26. status.save!
  27. check_for_spam(status)
  28. mentions.each { |mention| create_notification(mention) }
  29. end
  30. private
  31. def mention_undeliverable?(mentioned_account)
  32. mentioned_account.nil? || (!mentioned_account.local? && mentioned_account.ostatus?)
  33. end
  34. def create_notification(mention)
  35. mentioned_account = mention.account
  36. if mentioned_account.local?
  37. LocalNotificationWorker.perform_async(mentioned_account.id, mention.id, mention.class.name)
  38. elsif mentioned_account.activitypub?
  39. ActivityPub::DeliveryWorker.perform_async(activitypub_json, mention.status.account_id, mentioned_account.inbox_url)
  40. end
  41. end
  42. def activitypub_json
  43. return @activitypub_json if defined?(@activitypub_json)
  44. @activitypub_json = Oj.dump(serialize_payload(@status, ActivityPub::ActivitySerializer, signer: @status.account))
  45. end
  46. def resolve_account_service
  47. ResolveAccountService.new
  48. end
  49. def check_for_spam(status)
  50. SpamCheck.perform(status)
  51. end
  52. end