Skip to content
Snippets Groups Projects
Commit cea98e0c authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Reduce the number of synchronous resolves when posting toots (#6075)

parent 6eb60260
No related branches found
No related tags found
No related merge requests found
......@@ -11,18 +11,20 @@ class ProcessMentionsService < BaseService
return unless status.local?
status.text = status.text.gsub(Account::MENTION_RE) do |match|
begin
mentioned_account = resolve_remote_account_service.call($1)
rescue Goldfinger::Error, HTTP::Error
mentioned_account = nil
end
username, domain = $1.split('@')
mentioned_account = Account.find_remote(username, domain)
if mentioned_account.nil?
username, domain = $1.split('@')
mentioned_account = Account.find_remote(username, domain)
if mention_undeliverable?(status, mentioned_account)
begin
mentioned_account = resolve_remote_account_service.call($1)
rescue Goldfinger::Error, HTTP::Error
mentioned_account = nil
end
end
next match if mentioned_account.nil? || (!mentioned_account.local? && mentioned_account.ostatus? && status.stream_entry.hidden?)
mentioned_account ||= Account.find_remote(username, domain)
next match if mention_undeliverable?(status, mentioned_account)
mentioned_account.mentions.where(status: status).first_or_create(status: status)
"@#{mentioned_account.acct}"
......@@ -37,6 +39,10 @@ class ProcessMentionsService < BaseService
private
def mention_undeliverable?(status, mentioned_account)
mentioned_account.nil? || (!mentioned_account.local? && mentioned_account.ostatus? && status.stream_entry.hidden?)
end
def create_notification(status, mention)
mentioned_account = mention.account
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment