2017-05-31 18:28:45 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-12-01 11:00:41 +00:00
|
|
|
module Account::FinderConcern
|
2017-05-31 18:28:45 +00:00
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def find_local!(username)
|
|
|
|
find_local(username) || raise(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_remote!(username, domain)
|
|
|
|
find_remote(username, domain) || raise(ActiveRecord::RecordNotFound)
|
|
|
|
end
|
|
|
|
|
2019-01-05 06:17:12 +00:00
|
|
|
def representative
|
2024-02-19 11:09:43 +00:00
|
|
|
actor = Account.find(Account::INSTANCE_ACTOR_ID).tap(&:ensure_keys!)
|
2023-01-18 15:33:03 +00:00
|
|
|
actor.update!(username: 'mastodon.internal') if actor.username.include?(':')
|
|
|
|
actor
|
2021-02-09 17:12:54 +00:00
|
|
|
rescue ActiveRecord::RecordNotFound
|
2024-02-19 11:09:43 +00:00
|
|
|
Account.create!(id: Account::INSTANCE_ACTOR_ID, actor_type: 'Application', locked: true, username: 'mastodon.internal')
|
2019-01-05 06:17:12 +00:00
|
|
|
end
|
|
|
|
|
2017-05-31 18:28:45 +00:00
|
|
|
def find_local(username)
|
|
|
|
find_remote(username, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_remote(username, domain)
|
2024-05-28 14:11:31 +00:00
|
|
|
Account
|
|
|
|
.with_username(username)
|
|
|
|
.with_domain(domain)
|
|
|
|
.order(id: :asc)
|
|
|
|
.take
|
2017-05-31 18:28:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|