account.rb 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: accounts
  5. #
  6. # id :bigint(8) not null, primary key
  7. # username :string default(""), not null
  8. # domain :string
  9. # private_key :text
  10. # public_key :text default(""), not null
  11. # created_at :datetime not null
  12. # updated_at :datetime not null
  13. # note :text default(""), not null
  14. # display_name :string default(""), not null
  15. # uri :string default(""), not null
  16. # url :string
  17. # avatar_file_name :string
  18. # avatar_content_type :string
  19. # avatar_file_size :integer
  20. # avatar_updated_at :datetime
  21. # header_file_name :string
  22. # header_content_type :string
  23. # header_file_size :integer
  24. # header_updated_at :datetime
  25. # avatar_remote_url :string
  26. # locked :boolean default(FALSE), not null
  27. # header_remote_url :string default(""), not null
  28. # last_webfingered_at :datetime
  29. # inbox_url :string default(""), not null
  30. # outbox_url :string default(""), not null
  31. # shared_inbox_url :string default(""), not null
  32. # followers_url :string default(""), not null
  33. # protocol :integer default("ostatus"), not null
  34. # memorial :boolean default(FALSE), not null
  35. # moved_to_account_id :bigint(8)
  36. # featured_collection_url :string
  37. # fields :jsonb
  38. # actor_type :string
  39. # discoverable :boolean
  40. # also_known_as :string is an Array
  41. # silenced_at :datetime
  42. # suspended_at :datetime
  43. # trust_level :integer
  44. # hide_collections :boolean
  45. # avatar_storage_schema_version :integer
  46. # header_storage_schema_version :integer
  47. # devices_url :string
  48. # suspension_origin :integer
  49. # sensitized_at :datetime
  50. #
  51. class Account < ApplicationRecord
  52. self.ignored_columns = %w(
  53. subscription_expires_at
  54. secret
  55. remote_url
  56. salmon_url
  57. hub_url
  58. )
  59. USERNAME_RE = /[a-z0-9_]+([a-z0-9_\.-]+[a-z0-9_]+)?/i
  60. MENTION_RE = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE})(?:@[[:word:]\.\-]+[[:word:]]+)?)/i
  61. URL_PREFIX_RE = /\Ahttp(s?):\/\/[^\/]+/
  62. include AccountAssociations
  63. include AccountAvatar
  64. include AccountFinderConcern
  65. include AccountHeader
  66. include AccountInteractions
  67. include Attachmentable
  68. include Paginable
  69. include AccountCounters
  70. include DomainNormalizable
  71. include DomainMaterializable
  72. include AccountMerging
  73. TRUST_LEVELS = {
  74. untrusted: 0,
  75. trusted: 1,
  76. }.freeze
  77. enum protocol: [:ostatus, :activitypub]
  78. enum suspension_origin: [:local, :remote], _prefix: true
  79. validates :username, presence: true
  80. validates_with UniqueUsernameValidator, if: -> { will_save_change_to_username? }
  81. # Remote user validations
  82. validates :username, format: { with: /\A#{USERNAME_RE}\z/i }, if: -> { !local? && will_save_change_to_username? }
  83. # Local user validations
  84. validates :username, format: { with: /\A[a-z0-9_]+\z/i }, length: { maximum: 30 }, if: -> { local? && will_save_change_to_username? && actor_type != 'Application' }
  85. validates_with UnreservedUsernameValidator, if: -> { local? && will_save_change_to_username? }
  86. validates :display_name, length: { maximum: 30 }, if: -> { local? && will_save_change_to_display_name? }
  87. validates :note, note_length: { maximum: 500 }, if: -> { local? && will_save_change_to_note? }
  88. validates :fields, length: { maximum: 4 }, if: -> { local? && will_save_change_to_fields? }
  89. scope :remote, -> { where.not(domain: nil) }
  90. scope :local, -> { where(domain: nil) }
  91. scope :partitioned, -> { order(Arel.sql('row_number() over (partition by domain)')) }
  92. scope :silenced, -> { where.not(silenced_at: nil) }
  93. scope :suspended, -> { where.not(suspended_at: nil) }
  94. scope :sensitized, -> { where.not(sensitized_at: nil) }
  95. scope :without_suspended, -> { where(suspended_at: nil) }
  96. scope :without_silenced, -> { where(silenced_at: nil) }
  97. scope :without_instance_actor, -> { where.not(id: -99) }
  98. scope :recent, -> { reorder(id: :desc) }
  99. scope :bots, -> { where(actor_type: %w(Application Service)) }
  100. scope :groups, -> { where(actor_type: 'Group') }
  101. scope :alphabetic, -> { order(domain: :asc, username: :asc) }
  102. scope :matches_username, ->(value) { where(arel_table[:username].matches("#{value}%")) }
  103. scope :matches_display_name, ->(value) { where(arel_table[:display_name].matches("#{value}%")) }
  104. scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
  105. scope :searchable, -> { without_suspended.where(moved_to_account_id: nil) }
  106. scope :discoverable, -> { searchable.without_silenced.where(discoverable: true).left_outer_joins(:account_stat) }
  107. scope :followable_by, ->(account) { joins(arel_table.join(Follow.arel_table, Arel::Nodes::OuterJoin).on(arel_table[:id].eq(Follow.arel_table[:target_account_id]).and(Follow.arel_table[:account_id].eq(account.id))).join_sources).where(Follow.arel_table[:id].eq(nil)).joins(arel_table.join(FollowRequest.arel_table, Arel::Nodes::OuterJoin).on(arel_table[:id].eq(FollowRequest.arel_table[:target_account_id]).and(FollowRequest.arel_table[:account_id].eq(account.id))).join_sources).where(FollowRequest.arel_table[:id].eq(nil)) }
  108. scope :by_recent_status, -> { order(Arel.sql('(case when account_stats.last_status_at is null then 1 else 0 end) asc, account_stats.last_status_at desc, accounts.id desc')) }
  109. scope :by_recent_sign_in, -> { order(Arel.sql('(case when users.current_sign_in_at is null then 1 else 0 end) asc, users.current_sign_in_at desc, accounts.id desc')) }
  110. scope :popular, -> { order('account_stats.followers_count desc') }
  111. scope :by_domain_and_subdomains, ->(domain) { where(domain: domain).or(where(arel_table[:domain].matches('%.' + domain))) }
  112. scope :not_excluded_by_account, ->(account) { where.not(id: account.excluded_from_timeline_account_ids) }
  113. scope :not_domain_blocked_by_account, ->(account) { where(arel_table[:domain].eq(nil).or(arel_table[:domain].not_in(account.excluded_from_timeline_domains))) }
  114. delegate :email,
  115. :unconfirmed_email,
  116. :current_sign_in_ip,
  117. :current_sign_in_at,
  118. :confirmed?,
  119. :approved?,
  120. :pending?,
  121. :disabled?,
  122. :unconfirmed_or_pending?,
  123. :role,
  124. :admin?,
  125. :moderator?,
  126. :staff?,
  127. :locale,
  128. :hides_network?,
  129. :shows_application?,
  130. to: :user,
  131. prefix: true,
  132. allow_nil: true
  133. delegate :chosen_languages, to: :user, prefix: false, allow_nil: true
  134. update_index('accounts#account', :self)
  135. def local?
  136. domain.nil?
  137. end
  138. def moved?
  139. moved_to_account_id.present?
  140. end
  141. def bot?
  142. %w(Application Service).include? actor_type
  143. end
  144. def instance_actor?
  145. id == -99
  146. end
  147. alias bot bot?
  148. def bot=(val)
  149. self.actor_type = ActiveModel::Type::Boolean.new.cast(val) ? 'Service' : 'Person'
  150. end
  151. def group?
  152. actor_type == 'Group'
  153. end
  154. alias group group?
  155. def acct
  156. local? ? username : "#{username}@#{domain}"
  157. end
  158. def pretty_acct
  159. local? ? username : "#{username}@#{Addressable::IDNA.to_unicode(domain)}"
  160. end
  161. def local_username_and_domain
  162. "#{username}@#{Rails.configuration.x.local_domain}"
  163. end
  164. def local_followers_count
  165. Follow.where(target_account_id: id).count
  166. end
  167. def to_webfinger_s
  168. "acct:#{local_username_and_domain}"
  169. end
  170. def searchable?
  171. !(suspended? || moved?)
  172. end
  173. def possibly_stale?
  174. last_webfingered_at.nil? || last_webfingered_at <= 1.day.ago
  175. end
  176. def trust_level
  177. self[:trust_level] || 0
  178. end
  179. def refresh!
  180. ResolveAccountService.new.call(acct) unless local?
  181. end
  182. def silenced?
  183. silenced_at.present?
  184. end
  185. def silence!(date = Time.now.utc)
  186. update!(silenced_at: date)
  187. end
  188. def unsilence!
  189. update!(silenced_at: nil)
  190. end
  191. def suspended?
  192. suspended_at.present? && !instance_actor?
  193. end
  194. def suspended_permanently?
  195. suspended? && deletion_request.nil?
  196. end
  197. def suspended_temporarily?
  198. suspended? && deletion_request.present?
  199. end
  200. def suspend!(date: Time.now.utc, origin: :local, block_email: true)
  201. transaction do
  202. create_deletion_request!
  203. update!(suspended_at: date, suspension_origin: origin)
  204. create_canonical_email_block! if block_email
  205. end
  206. end
  207. def unsuspend!
  208. transaction do
  209. deletion_request&.destroy!
  210. update!(suspended_at: nil, suspension_origin: nil)
  211. destroy_canonical_email_block!
  212. end
  213. end
  214. def sensitized?
  215. sensitized_at.present?
  216. end
  217. def sensitize!(date = Time.now.utc)
  218. update!(sensitized_at: date)
  219. end
  220. def unsensitize!
  221. update!(sensitized_at: nil)
  222. end
  223. def memorialize!
  224. update!(memorial: true)
  225. end
  226. def sign?
  227. true
  228. end
  229. def keypair
  230. @keypair ||= OpenSSL::PKey::RSA.new(private_key || public_key)
  231. end
  232. def tags_as_strings=(tag_names)
  233. hashtags_map = Tag.find_or_create_by_names(tag_names).index_by(&:name)
  234. # Remove hashtags that are to be deleted
  235. tags.each do |tag|
  236. if hashtags_map.key?(tag.name)
  237. hashtags_map.delete(tag.name)
  238. else
  239. tags.delete(tag)
  240. end
  241. end
  242. # Add hashtags that were so far missing
  243. hashtags_map.each_value do |tag|
  244. tags << tag
  245. end
  246. end
  247. def also_known_as
  248. self[:also_known_as] || []
  249. end
  250. def fields
  251. (self[:fields] || []).map do |f|
  252. Field.new(self, f)
  253. rescue
  254. nil
  255. end.compact
  256. end
  257. def fields_attributes=(attributes)
  258. fields = []
  259. old_fields = self[:fields] || []
  260. old_fields = [] if old_fields.is_a?(Hash)
  261. if attributes.is_a?(Hash)
  262. attributes.each_value do |attr|
  263. next if attr[:name].blank?
  264. previous = old_fields.find { |item| item['value'] == attr[:value] }
  265. if previous && previous['verified_at'].present?
  266. attr[:verified_at] = previous['verified_at']
  267. end
  268. fields << attr
  269. end
  270. end
  271. self[:fields] = fields
  272. end
  273. DEFAULT_FIELDS_SIZE = 4
  274. def build_fields
  275. return if fields.size >= DEFAULT_FIELDS_SIZE
  276. tmp = self[:fields] || []
  277. tmp = [] if tmp.is_a?(Hash)
  278. (DEFAULT_FIELDS_SIZE - tmp.size).times do
  279. tmp << { name: '', value: '' }
  280. end
  281. self.fields = tmp
  282. end
  283. def save_with_optional_media!
  284. save!
  285. rescue ActiveRecord::RecordInvalid
  286. self.avatar = nil
  287. self.header = nil
  288. save!
  289. end
  290. def hides_followers?
  291. hide_collections? || user_hides_network?
  292. end
  293. def hides_following?
  294. hide_collections? || user_hides_network?
  295. end
  296. def object_type
  297. :person
  298. end
  299. def to_param
  300. username
  301. end
  302. def excluded_from_timeline_account_ids
  303. Rails.cache.fetch("exclude_account_ids_for:#{id}") { block_relationships.pluck(:target_account_id) + blocked_by_relationships.pluck(:account_id) + mute_relationships.pluck(:target_account_id) }
  304. end
  305. def excluded_from_timeline_domains
  306. Rails.cache.fetch("exclude_domains_for:#{id}") { domain_blocks.pluck(:domain) }
  307. end
  308. def preferred_inbox_url
  309. shared_inbox_url.presence || inbox_url
  310. end
  311. def synchronization_uri_prefix
  312. return 'local' if local?
  313. @synchronization_uri_prefix ||= "#{uri[URL_PREFIX_RE]}/"
  314. end
  315. class Field < ActiveModelSerializers::Model
  316. attributes :name, :value, :verified_at, :account
  317. def initialize(account, attributes)
  318. @original_field = attributes
  319. string_limit = account.local? ? 255 : 2047
  320. super(
  321. account: account,
  322. name: attributes['name'].strip[0, string_limit],
  323. value: attributes['value'].strip[0, string_limit],
  324. verified_at: attributes['verified_at']&.to_datetime,
  325. )
  326. end
  327. def verified?
  328. verified_at.present?
  329. end
  330. def value_for_verification
  331. @value_for_verification ||= begin
  332. if account.local?
  333. value
  334. else
  335. ActionController::Base.helpers.strip_tags(value)
  336. end
  337. end
  338. end
  339. def verifiable?
  340. value_for_verification.present? && value_for_verification.start_with?('http://', 'https://')
  341. end
  342. def mark_verified!
  343. self.verified_at = Time.now.utc
  344. @original_field['verified_at'] = verified_at
  345. end
  346. def to_h
  347. { name: name, value: value, verified_at: verified_at }
  348. end
  349. end
  350. class << self
  351. DISALLOWED_TSQUERY_CHARACTERS = /['?\\:‘’]/.freeze
  352. TEXTSEARCH = "(setweight(to_tsvector('simple', accounts.display_name), 'A') || setweight(to_tsvector('simple', accounts.username), 'B') || setweight(to_tsvector('simple', coalesce(accounts.domain, '')), 'C'))"
  353. def readonly_attributes
  354. super - %w(statuses_count following_count followers_count)
  355. end
  356. def inboxes
  357. urls = reorder(nil).where(protocol: :activitypub).group(:preferred_inbox_url).pluck(Arel.sql("coalesce(nullif(accounts.shared_inbox_url, ''), accounts.inbox_url) AS preferred_inbox_url"))
  358. DeliveryFailureTracker.without_unavailable(urls)
  359. end
  360. def search_for(terms, limit = 10, offset = 0)
  361. tsquery = generate_query_for_search(terms)
  362. sql = <<-SQL.squish
  363. SELECT
  364. accounts.*,
  365. ts_rank_cd(#{TEXTSEARCH}, to_tsquery('simple', :tsquery), 32) AS rank
  366. FROM accounts
  367. WHERE to_tsquery('simple', :tsquery) @@ #{TEXTSEARCH}
  368. AND accounts.suspended_at IS NULL
  369. AND accounts.moved_to_account_id IS NULL
  370. ORDER BY rank DESC
  371. LIMIT :limit OFFSET :offset
  372. SQL
  373. records = find_by_sql([sql, limit: limit, offset: offset, tsquery: tsquery])
  374. ActiveRecord::Associations::Preloader.new.preload(records, :account_stat)
  375. records
  376. end
  377. def advanced_search_for(terms, account, limit = 10, following = false, offset = 0)
  378. tsquery = generate_query_for_search(terms)
  379. sql = advanced_search_for_sql_template(following)
  380. records = find_by_sql([sql, id: account.id, limit: limit, offset: offset, tsquery: tsquery])
  381. ActiveRecord::Associations::Preloader.new.preload(records, :account_stat)
  382. records
  383. end
  384. def from_text(text)
  385. return [] if text.blank?
  386. text.scan(MENTION_RE).map { |match| match.first.split('@', 2) }.uniq.filter_map do |(username, domain)|
  387. domain = begin
  388. if TagManager.instance.local_domain?(domain)
  389. nil
  390. else
  391. TagManager.instance.normalize_domain(domain)
  392. end
  393. end
  394. EntityCache.instance.mention(username, domain)
  395. end
  396. end
  397. private
  398. def generate_query_for_search(unsanitized_terms)
  399. terms = unsanitized_terms.gsub(DISALLOWED_TSQUERY_CHARACTERS, ' ')
  400. # The final ":*" is for prefix search.
  401. # The trailing space does not seem to fit any purpose, but `to_tsquery`
  402. # behaves differently with and without a leading space if the terms start
  403. # with `./`, `../`, or `.. `. I don't understand why, so, in doubt, keep
  404. # the same query.
  405. "' #{terms} ':*"
  406. end
  407. def advanced_search_for_sql_template(following)
  408. if following
  409. <<-SQL.squish
  410. WITH first_degree AS (
  411. SELECT target_account_id
  412. FROM follows
  413. WHERE account_id = :id
  414. UNION ALL
  415. SELECT :id
  416. )
  417. SELECT
  418. accounts.*,
  419. (count(f.id) + 1) * ts_rank_cd(#{TEXTSEARCH}, to_tsquery('simple', :tsquery), 32) AS rank
  420. FROM accounts
  421. LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = :id)
  422. WHERE accounts.id IN (SELECT * FROM first_degree)
  423. AND to_tsquery('simple', :tsquery) @@ #{TEXTSEARCH}
  424. AND accounts.suspended_at IS NULL
  425. AND accounts.moved_to_account_id IS NULL
  426. GROUP BY accounts.id
  427. ORDER BY rank DESC
  428. LIMIT :limit OFFSET :offset
  429. SQL
  430. else
  431. <<-SQL.squish
  432. SELECT
  433. accounts.*,
  434. (count(f.id) + 1) * ts_rank_cd(#{TEXTSEARCH}, to_tsquery('simple', :tsquery), 32) AS rank
  435. FROM accounts
  436. LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = :id) OR (accounts.id = f.target_account_id AND f.account_id = :id)
  437. WHERE to_tsquery('simple', :tsquery) @@ #{TEXTSEARCH}
  438. AND accounts.suspended_at IS NULL
  439. AND accounts.moved_to_account_id IS NULL
  440. GROUP BY accounts.id
  441. ORDER BY rank DESC
  442. LIMIT :limit OFFSET :offset
  443. SQL
  444. end
  445. end
  446. end
  447. def emojis
  448. @emojis ||= CustomEmoji.from_text(emojifiable_text, domain)
  449. end
  450. before_create :generate_keys
  451. before_validation :prepare_contents, if: :local?
  452. before_validation :prepare_username, on: :create
  453. before_destroy :clean_feed_manager
  454. private
  455. def prepare_contents
  456. display_name&.strip!
  457. note&.strip!
  458. end
  459. def prepare_username
  460. username&.squish!
  461. end
  462. def generate_keys
  463. return unless local? && private_key.blank? && public_key.blank?
  464. keypair = OpenSSL::PKey::RSA.new(2048)
  465. self.private_key = keypair.to_pem
  466. self.public_key = keypair.public_key.to_pem
  467. end
  468. def normalize_domain
  469. return if local?
  470. super
  471. end
  472. def emojifiable_text
  473. [note, display_name, fields.map(&:name), fields.map(&:value)].join(' ')
  474. end
  475. def clean_feed_manager
  476. FeedManager.instance.clean_feeds!(:home, [id])
  477. end
  478. def create_canonical_email_block!
  479. return unless local? && user_email.present?
  480. begin
  481. CanonicalEmailBlock.create(reference_account: self, email: user_email)
  482. rescue ActiveRecord::RecordNotUnique
  483. # A canonical e-mail block may already exist for the same e-mail
  484. end
  485. end
  486. def destroy_canonical_email_block!
  487. return unless local?
  488. CanonicalEmailBlock.where(reference_account: self).delete_all
  489. end
  490. end