2019-09-19 19:58:19 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: account_aliases
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8)
|
|
|
|
# acct :string default(""), not null
|
|
|
|
# uri :string default(""), not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class AccountAlias < ApplicationRecord
|
|
|
|
belongs_to :account
|
|
|
|
|
|
|
|
validates :acct, presence: true, domain: { acct: true }
|
2019-09-21 08:11:21 +01:00
|
|
|
validates :uri, uniqueness: { scope: :account_id }
|
2020-04-13 05:41:43 +01:00
|
|
|
validate :validate_target_account
|
2019-09-19 19:58:19 +01:00
|
|
|
|
|
|
|
before_validation :set_uri
|
|
|
|
after_create :add_to_account
|
|
|
|
after_destroy :remove_from_account
|
|
|
|
|
2019-09-21 08:11:21 +01:00
|
|
|
def acct=(val)
|
|
|
|
val = val.to_s.strip
|
|
|
|
super(val.start_with?('@') ? val[1..-1] : val)
|
|
|
|
end
|
|
|
|
|
2022-04-09 19:11:06 +01:00
|
|
|
def pretty_acct
|
2022-11-07 15:17:55 +00:00
|
|
|
username, domain = acct.split('@', 2)
|
2022-04-09 19:11:06 +01:00
|
|
|
domain.nil? ? username : "#{username}@#{Addressable::IDNA.to_unicode(domain)}"
|
|
|
|
end
|
|
|
|
|
2019-09-19 19:58:19 +01:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_uri
|
|
|
|
target_account = ResolveAccountService.new.call(acct)
|
|
|
|
self.uri = ActivityPub::TagManager.instance.uri_for(target_account) unless target_account.nil?
|
2020-10-07 23:34:57 +01:00
|
|
|
rescue Webfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::Error
|
2019-09-19 19:58:19 +01:00
|
|
|
# Validation will take care of it
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_account
|
|
|
|
account.update(also_known_as: account.also_known_as + [uri])
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_account
|
|
|
|
account.update(also_known_as: account.also_known_as.reject { |x| x == uri })
|
|
|
|
end
|
2020-04-13 05:41:43 +01:00
|
|
|
|
|
|
|
def validate_target_account
|
2020-04-15 19:33:53 +01:00
|
|
|
if uri.blank?
|
2020-04-13 05:41:43 +01:00
|
|
|
errors.add(:acct, I18n.t('migrations.errors.not_found'))
|
|
|
|
elsif ActivityPub::TagManager.instance.uri_for(account) == uri
|
|
|
|
errors.add(:acct, I18n.t('migrations.errors.move_to_self'))
|
|
|
|
end
|
|
|
|
end
|
2019-09-19 19:58:19 +01:00
|
|
|
end
|