The code powering m.abunchtell.com https://m.abunchtell.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

277 Zeilen
9.3 KiB

  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: accounts
  5. #
  6. # id :integer not null, primary key
  7. # username :string default(""), not null
  8. # domain :string
  9. # secret :string default(""), not null
  10. # private_key :text
  11. # public_key :text default(""), not null
  12. # remote_url :string default(""), not null
  13. # salmon_url :string default(""), not null
  14. # hub_url :string default(""), not null
  15. # created_at :datetime not null
  16. # updated_at :datetime not null
  17. # note :text default(""), not null
  18. # display_name :string default(""), not null
  19. # uri :string default(""), not null
  20. # url :string
  21. # avatar_file_name :string
  22. # avatar_content_type :string
  23. # avatar_file_size :integer
  24. # avatar_updated_at :datetime
  25. # header_file_name :string
  26. # header_content_type :string
  27. # header_file_size :integer
  28. # header_updated_at :datetime
  29. # avatar_remote_url :string
  30. # subscription_expires_at :datetime
  31. # silenced :boolean default(FALSE), not null
  32. # suspended :boolean default(FALSE), not null
  33. # locked :boolean default(FALSE), not null
  34. # header_remote_url :string default(""), not null
  35. # statuses_count :integer default(0), not null
  36. # followers_count :integer default(0), not null
  37. # following_count :integer default(0), not null
  38. # last_webfingered_at :datetime
  39. # inbox_url :string default(""), not null
  40. # outbox_url :string default(""), not null
  41. # shared_inbox_url :string default(""), not null
  42. # followers_url :string default(""), not null
  43. # protocol :integer default("ostatus"), not null
  44. #
  45. class Account < ApplicationRecord
  46. MENTION_RE = /(?:^|[^\/[:word:]])@(([a-z0-9_]+)(?:@[a-z0-9\.\-]+[a-z0-9]+)?)/i
  47. include AccountAvatar
  48. include AccountFinderConcern
  49. include AccountHeader
  50. include AccountInteractions
  51. include Attachmentable
  52. include Remotable
  53. include EmojiHelper
  54. enum protocol: [:ostatus, :activitypub]
  55. # Local users
  56. has_one :user, inverse_of: :account
  57. validates :username, presence: true
  58. # Remote user validations
  59. validates :username, uniqueness: { scope: :domain, case_sensitive: true }, if: -> { !local? && will_save_change_to_username? }
  60. # Local user validations
  61. validates :username, format: { with: /\A[a-z0-9_]+\z/i }, uniqueness: { scope: :domain, case_sensitive: false }, length: { maximum: 30 }, if: -> { local? && will_save_change_to_username? }
  62. validates_with UnreservedUsernameValidator, if: -> { local? && will_save_change_to_username? }
  63. validates :display_name, length: { maximum: 30 }, if: -> { local? && will_save_change_to_display_name? }
  64. validates :note, length: { maximum: 160 }, if: -> { local? && will_save_change_to_note? }
  65. # Timelines
  66. has_many :stream_entries, inverse_of: :account, dependent: :destroy
  67. has_many :statuses, inverse_of: :account, dependent: :destroy
  68. has_many :favourites, inverse_of: :account, dependent: :destroy
  69. has_many :mentions, inverse_of: :account, dependent: :destroy
  70. has_many :notifications, inverse_of: :account, dependent: :destroy
  71. # Media
  72. has_many :media_attachments, dependent: :destroy
  73. # PuSH subscriptions
  74. has_many :subscriptions, dependent: :destroy
  75. # Report relationships
  76. has_many :reports
  77. has_many :targeted_reports, class_name: 'Report', foreign_key: :target_account_id
  78. scope :remote, -> { where.not(domain: nil) }
  79. scope :local, -> { where(domain: nil) }
  80. scope :without_followers, -> { where(followers_count: 0) }
  81. scope :with_followers, -> { where('followers_count > 0') }
  82. scope :expiring, ->(time) { where(subscription_expires_at: nil).or(where('subscription_expires_at < ?', time)).remote.with_followers }
  83. scope :partitioned, -> { order('row_number() over (partition by domain)') }
  84. scope :silenced, -> { where(silenced: true) }
  85. scope :suspended, -> { where(suspended: true) }
  86. scope :recent, -> { reorder(id: :desc) }
  87. scope :alphabetic, -> { order(domain: :asc, username: :asc) }
  88. scope :by_domain_accounts, -> { group(:domain).select(:domain, 'COUNT(*) AS accounts_count').order('accounts_count desc') }
  89. scope :matches_username, ->(value) { where(arel_table[:username].matches("#{value}%")) }
  90. scope :matches_display_name, ->(value) { where(arel_table[:display_name].matches("#{value}%")) }
  91. delegate :email,
  92. :current_sign_in_ip,
  93. :current_sign_in_at,
  94. :confirmed?,
  95. :locale,
  96. to: :user,
  97. prefix: true,
  98. allow_nil: true
  99. delegate :filtered_languages, to: :user, prefix: false, allow_nil: true
  100. def local?
  101. domain.nil?
  102. end
  103. def acct
  104. local? ? username : "#{username}@#{domain}"
  105. end
  106. def local_username_and_domain
  107. "#{username}@#{Rails.configuration.x.local_domain}"
  108. end
  109. def to_webfinger_s
  110. "acct:#{local_username_and_domain}"
  111. end
  112. def subscribed?
  113. subscription_expires_at.present?
  114. end
  115. def keypair
  116. OpenSSL::PKey::RSA.new(private_key || public_key)
  117. end
  118. def subscription(webhook_url)
  119. OStatus2::Subscription.new(remote_url, secret: secret, lease_seconds: 30.days.seconds, webhook: webhook_url, hub: hub_url)
  120. end
  121. def save_with_optional_media!
  122. save!
  123. rescue ActiveRecord::RecordInvalid
  124. self.avatar = nil
  125. self.header = nil
  126. self[:avatar_remote_url] = ''
  127. self[:header_remote_url] = ''
  128. save!
  129. end
  130. def object_type
  131. :person
  132. end
  133. def to_param
  134. username
  135. end
  136. def excluded_from_timeline_account_ids
  137. Rails.cache.fetch("exclude_account_ids_for:#{id}") { blocking.pluck(:target_account_id) + blocked_by.pluck(:account_id) + muting.pluck(:target_account_id) }
  138. end
  139. def excluded_from_timeline_domains
  140. Rails.cache.fetch("exclude_domains_for:#{id}") { domain_blocks.pluck(:domain) }
  141. end
  142. class << self
  143. def domains
  144. reorder(nil).pluck('distinct accounts.domain')
  145. end
  146. def triadic_closures(account, limit: 5, offset: 0)
  147. sql = <<-SQL.squish
  148. WITH first_degree AS (
  149. SELECT target_account_id
  150. FROM follows
  151. WHERE account_id = :account_id
  152. )
  153. SELECT accounts.*
  154. FROM follows
  155. INNER JOIN accounts ON follows.target_account_id = accounts.id
  156. WHERE
  157. account_id IN (SELECT * FROM first_degree)
  158. AND target_account_id NOT IN (SELECT * FROM first_degree)
  159. AND target_account_id NOT IN (:excluded_account_ids)
  160. AND accounts.suspended = false
  161. GROUP BY target_account_id, accounts.id
  162. ORDER BY count(account_id) DESC
  163. OFFSET :offset
  164. LIMIT :limit
  165. SQL
  166. excluded_account_ids = account.excluded_from_timeline_account_ids + [account.id]
  167. find_by_sql(
  168. [sql, { account_id: account.id, excluded_account_ids: excluded_account_ids, limit: limit, offset: offset }]
  169. )
  170. end
  171. def search_for(terms, limit = 10)
  172. textsearch, query = generate_query_for_search(terms)
  173. sql = <<-SQL.squish
  174. SELECT
  175. accounts.*,
  176. ts_rank_cd(#{textsearch}, #{query}, 32) AS rank
  177. FROM accounts
  178. WHERE #{query} @@ #{textsearch}
  179. AND accounts.suspended = false
  180. ORDER BY rank DESC
  181. LIMIT ?
  182. SQL
  183. find_by_sql([sql, limit])
  184. end
  185. def advanced_search_for(terms, account, limit = 10)
  186. textsearch, query = generate_query_for_search(terms)
  187. sql = <<-SQL.squish
  188. SELECT
  189. accounts.*,
  190. (count(f.id) + 1) * ts_rank_cd(#{textsearch}, #{query}, 32) AS rank
  191. FROM accounts
  192. LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = ?) OR (accounts.id = f.target_account_id AND f.account_id = ?)
  193. WHERE #{query} @@ #{textsearch}
  194. AND accounts.suspended = false
  195. GROUP BY accounts.id
  196. ORDER BY rank DESC
  197. LIMIT ?
  198. SQL
  199. find_by_sql([sql, account.id, account.id, limit])
  200. end
  201. private
  202. def generate_query_for_search(terms)
  203. terms = Arel.sql(connection.quote(terms.gsub(/['?\\:]/, ' ')))
  204. textsearch = "(setweight(to_tsvector('simple', accounts.display_name), 'A') || setweight(to_tsvector('simple', accounts.username), 'B') || setweight(to_tsvector('simple', coalesce(accounts.domain, '')), 'C'))"
  205. query = "to_tsquery('simple', ''' ' || #{terms} || ' ''' || ':*')"
  206. [textsearch, query]
  207. end
  208. end
  209. before_create :generate_keys
  210. before_validation :normalize_domain
  211. before_validation :prepare_contents, if: :local?
  212. private
  213. def prepare_contents
  214. display_name&.strip!
  215. note&.strip!
  216. self.display_name = emojify(display_name)
  217. self.note = emojify(note)
  218. end
  219. def generate_keys
  220. return unless local?
  221. keypair = OpenSSL::PKey::RSA.new(Rails.env.test? ? 1024 : 2048)
  222. self.private_key = keypair.to_pem
  223. self.public_key = keypair.public_key.to_pem
  224. end
  225. def normalize_domain
  226. return if local?
  227. self.domain = TagManager.instance.normalize_domain(domain)
  228. end
  229. end