You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

182 lines
6.8 KiB

8 years ago
8 years ago
8 years ago
8 years ago
  1. # frozen_string_literal: true
  2. class Account < ApplicationRecord
  3. include Targetable
  4. include PgSearch
  5. MENTION_RE = /(?:^|[^\/\w])@([a-z0-9_]+(?:@[a-z0-9\.\-]+)?)/i
  6. IMAGE_MIME_TYPES = ['image/jpeg', 'image/png', 'image/gif'].freeze
  7. # Local users
  8. has_one :user, inverse_of: :account
  9. validates :username, presence: true, format: { with: /\A[a-z0-9_]+\z/i, message: 'only letters, numbers and underscores' }, uniqueness: { scope: :domain, case_sensitive: false }, length: { maximum: 30 }, if: 'local?'
  10. validates :username, presence: true, uniqueness: { scope: :domain, case_sensitive: true }, unless: 'local?'
  11. # Avatar upload
  12. has_attached_file :avatar, styles: { large: '300x300#', medium: '96x96#', small: '48x48#' }
  13. validates_attachment_content_type :avatar, content_type: IMAGE_MIME_TYPES
  14. validates_attachment_size :avatar, less_than: 2.megabytes
  15. # Header upload
  16. has_attached_file :header, styles: { medium: '700x335#' }
  17. validates_attachment_content_type :header, content_type: IMAGE_MIME_TYPES
  18. validates_attachment_size :header, less_than: 2.megabytes
  19. # Local user profile validations
  20. validates :display_name, length: { maximum: 30 }, if: 'local?'
  21. validates :note, length: { maximum: 160 }, if: 'local?'
  22. # Timelines
  23. has_many :stream_entries, inverse_of: :account, dependent: :destroy
  24. has_many :statuses, inverse_of: :account, dependent: :destroy
  25. has_many :favourites, inverse_of: :account, dependent: :destroy
  26. has_many :mentions, inverse_of: :account, dependent: :destroy
  27. # Follow relations
  28. has_many :active_relationships, class_name: 'Follow', foreign_key: 'account_id', dependent: :destroy
  29. has_many :passive_relationships, class_name: 'Follow', foreign_key: 'target_account_id', dependent: :destroy
  30. has_many :following, -> { order('follows.id desc') }, through: :active_relationships, source: :target_account
  31. has_many :followers, -> { order('follows.id desc') }, through: :passive_relationships, source: :account
  32. # Block relationships
  33. has_many :block_relationships, class_name: 'Block', foreign_key: 'account_id', dependent: :destroy
  34. has_many :blocking, -> { order('blocks.id desc') }, through: :block_relationships, source: :target_account
  35. has_many :media_attachments, dependent: :destroy
  36. pg_search_scope :search_for, against: { username: 'A', domain: 'B' }, using: { tsearch: { prefix: true } }
  37. scope :remote, -> { where.not(domain: nil) }
  38. scope :local, -> { where(domain: nil) }
  39. scope :without_followers, -> { where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) = 0') }
  40. scope :with_followers, -> { where('(select count(f.id) from follows as f where f.target_account_id = accounts.id) > 0') }
  41. scope :expiring, -> (time) { where(subscription_expires_at: nil).or(where('subscription_expires_at < ?', time)).remote.with_followers }
  42. scope :with_counters, -> { select('accounts.*, (select count(f.id) from follows as f where f.target_account_id = accounts.id) as followers_count, (select count(f.id) from follows as f where f.account_id = accounts.id) as following_count, (select count(s.id) from statuses as s where s.account_id = accounts.id) as statuses_count') }
  43. def follow!(other_account)
  44. active_relationships.where(target_account: other_account).first_or_create!(target_account: other_account)
  45. end
  46. def block!(other_account)
  47. block_relationships.where(target_account: other_account).first_or_create!(target_account: other_account)
  48. end
  49. def unfollow!(other_account)
  50. follow = active_relationships.find_by(target_account: other_account)
  51. follow.destroy unless follow.nil?
  52. end
  53. def unblock!(other_account)
  54. block = block_relationships.find_by(target_account: other_account)
  55. block.destroy unless block.nil?
  56. end
  57. def following?(other_account)
  58. following.include?(other_account)
  59. end
  60. def blocking?(other_account)
  61. blocking.include?(other_account)
  62. end
  63. def local?
  64. domain.nil?
  65. end
  66. def acct
  67. local? ? username : "#{username}@#{domain}"
  68. end
  69. def subscribed?
  70. !subscription_expires_at.nil?
  71. end
  72. def favourited?(status)
  73. (status.reblog? ? status.reblog : status).favourites.where(account: self).count.positive?
  74. end
  75. def reblogged?(status)
  76. (status.reblog? ? status.reblog : status).reblogs.where(account: self).count.positive?
  77. end
  78. def keypair
  79. private_key.nil? ? OpenSSL::PKey::RSA.new(public_key) : OpenSSL::PKey::RSA.new(private_key)
  80. end
  81. def subscription(webhook_url)
  82. OStatus2::Subscription.new(remote_url, secret: secret, lease_seconds: 86_400 * 30, webhook: webhook_url, hub: hub_url)
  83. end
  84. def ping!(atom_url, hubs)
  85. return unless local? && !Rails.env.development?
  86. OStatus2::Publication.new(atom_url, hubs).publish
  87. end
  88. def avatar_remote_url=(url)
  89. self.avatar = URI.parse(url) unless self[:avatar_remote_url] == url
  90. self[:avatar_remote_url] = url
  91. rescue OpenURI::HTTPError => e
  92. Rails.logger.debug "Error fetching remote avatar: #{e}"
  93. end
  94. def object_type
  95. :person
  96. end
  97. def to_param
  98. username
  99. end
  100. def common_followers_with(other_account)
  101. results = Neography::Rest.new.execute_query('MATCH (a {account_id: {a_id}})-[:follows]->(b)-[:follows]->(c {account_id: {c_id}}) RETURN b.account_id', a_id: id, c_id: other_account.id)
  102. ids = results['data'].map(&:first)
  103. accounts = Account.where(id: ids).with_counters.limit(20).map { |a| [a.id, a] }.to_h
  104. ids.map { |id| accounts[id] }.compact
  105. rescue Neography::NeographyError, Excon::Error::Socket
  106. []
  107. end
  108. class << self
  109. def find_local!(username)
  110. find_remote!(username, nil)
  111. end
  112. def find_remote!(username, domain)
  113. where(arel_table[:username].matches(username.gsub(/[%_]/, '\\\\\0'))).where(domain.nil? ? { domain: nil } : arel_table[:domain].matches(domain.gsub(/[%_]/, '\\\\\0'))).take!
  114. end
  115. def find_local(username)
  116. find_local!(username)
  117. rescue ActiveRecord::RecordNotFound
  118. nil
  119. end
  120. def find_remote(username, domain)
  121. find_remote!(username, domain)
  122. rescue ActiveRecord::RecordNotFound
  123. nil
  124. end
  125. def following_map(target_account_ids, account_id)
  126. Follow.where(target_account_id: target_account_ids).where(account_id: account_id).map { |f| [f.target_account_id, true] }.to_h
  127. end
  128. def followed_by_map(target_account_ids, account_id)
  129. Follow.where(account_id: target_account_ids).where(target_account_id: account_id).map { |f| [f.account_id, true] }.to_h
  130. end
  131. def blocking_map(target_account_ids, account_id)
  132. Block.where(target_account_id: target_account_ids).where(account_id: account_id).map { |b| [b.target_account_id, true] }.to_h
  133. end
  134. end
  135. before_create do
  136. if local?
  137. keypair = OpenSSL::PKey::RSA.new(Rails.env.test? ? 1024 : 2048)
  138. self.private_key = keypair.to_pem
  139. self.public_key = keypair.public_key.to_pem
  140. end
  141. end
  142. end