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.

594 lines
19 KiB

Account domain blocks (#2381) * Add <ostatus:conversation /> tag to Atom input/output Only uses ref attribute (not href) because href would be the alternate link that's always included also. Creates new conversation for every non-reply status. Carries over conversation for every reply. Keeps remote URIs verbatim, generates local URIs on the fly like the rest of them. * Conversation muting - prevents notifications that reference a conversation (including replies, favourites, reblogs) from being created. API endpoints /api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute Currently no way to tell when a status/conversation is muted, so the web UI only has a "disable notifications" button, doesn't work as a toggle * Display "Dismiss notifications" on all statuses in notifications column, not just own * Add "muted" as a boolean attribute on statuses JSON For now always false on contained reblogs, since it's only relevant for statuses returned from the notifications endpoint, which are not nested Remove "Disable notifications" from detailed status view, since it's only relevant in the notifications column * Up max class length * Remove pending test for conversation mute * Add tests, clean up * Rename to "mute conversation" and "unmute conversation" * Raise validation error when trying to mute/unmute status without conversation * Adding account domain blocks that filter notifications and public timelines * Add tests for domain blocks in notifications, public timelines Filter reblogs of blocked domains from home * Add API for listing and creating account domain blocks * API for creating/deleting domain blocks, tests for Status#ancestors and Status#descendants, filter domain blocks from them * Filter domains in streaming API * Update account_domain_block_spec.rb
7 years ago
Fix Account model deprecation warnings (#3689) ``` DEPRECATION WARNING: The behavior of `attribute_changed?` inside of after callbacks will be changing in the next version of Rails. The new return value will reflect the behavior of calling the method after `save` returned (e.g. the opposite of what it returns now). To maintain the current behavior, use `saved_change_to_attribute?` instead. (called from block in <class:Account> at /Users/rene/Workspace/personal/ruby/mastodon/app/models/account.rb:60) DEPRECATION WARNING: The behavior of `attribute_changed?` inside of after callbacks will be changing in the next version of Rails. The new return value will reflect the behavior of calling the method after `save` returned (e.g. the opposite of what it returns now). To maintain the current behavior, use `saved_change_to_attribute?` instead. (called from block in <class:Account> at /Users/rene/Workspace/personal/ruby/mastodon/app/models/account.rb:60) DEPRECATION WARNING: The behavior of `attribute_changed?` inside of after callbacks will be changing in the next version of Rails. The new return value will reflect the behavior of calling the method after `save` returned (e.g. the opposite of what it returns now). To maintain the current behavior, use `saved_change_to_attribute?` instead. (called from block in <class:Account> at /Users/rene/Workspace/personal/ruby/mastodon/app/models/account.rb:60) DEPRECATION WARNING: The behavior of `attribute_changed?` inside of after callbacks will be changing in the next version of Rails. The new return value will reflect the behavior of calling the method after `save` returned (e.g. the opposite of what it returns now). To maintain the current behavior, use `saved_change_to_attribute?` instead. (called from block in <class:Account> at /Users/rene/Workspace/personal/ruby/mastodon/app/models/account.rb:61) DEPRECATION WARNING: The behavior of `attribute_changed?` inside of after callbacks will be changing in the next version of Rails. The new return value will reflect the behavior of calling the method after `save` returned (e.g. the opposite of what it returns now). To maintain the current behavior, use `saved_change_to_attribute?` instead. (called from block in <class:Account> at /Users/rene/Workspace/personal/ruby/mastodon/app/models/account.rb:62) DEPRECATION WARNING: The behavior of `attribute_changed?` inside of after callbacks will be changing in the next version of Rails. The new return value will reflect the behavior of calling the method after `save` returned (e.g. the opposite of what it returns now). To maintain the current behavior, use `saved_change_to_attribute?` instead. (called from block in <class:Account> at /Users/rene/Workspace/personal/ruby/mastodon/app/models/account.rb:63) ``` Here's PR describing changes to Dirty API https://github.com/rails/rails/pull/25337
7 years ago
Account domain blocks (#2381) * Add <ostatus:conversation /> tag to Atom input/output Only uses ref attribute (not href) because href would be the alternate link that's always included also. Creates new conversation for every non-reply status. Carries over conversation for every reply. Keeps remote URIs verbatim, generates local URIs on the fly like the rest of them. * Conversation muting - prevents notifications that reference a conversation (including replies, favourites, reblogs) from being created. API endpoints /api/v1/statuses/:id/mute and /api/v1/statuses/:id/unmute Currently no way to tell when a status/conversation is muted, so the web UI only has a "disable notifications" button, doesn't work as a toggle * Display "Dismiss notifications" on all statuses in notifications column, not just own * Add "muted" as a boolean attribute on statuses JSON For now always false on contained reblogs, since it's only relevant for statuses returned from the notifications endpoint, which are not nested Remove "Disable notifications" from detailed status view, since it's only relevant in the notifications column * Up max class length * Remove pending test for conversation mute * Add tests, clean up * Rename to "mute conversation" and "unmute conversation" * Raise validation error when trying to mute/unmute status without conversation * Adding account domain blocks that filter notifications and public timelines * Add tests for domain blocks in notifications, public timelines Filter reblogs of blocked domains from home * Add API for listing and creating account domain blocks * API for creating/deleting domain blocks, tests for Status#ancestors and Status#descendants, filter domain blocks from them * Filter domains in streaming API * Update account_domain_block_spec.rb
7 years ago
Add follower synchronization mechanism (#14510) * Add support for followers synchronization on the receiving end Check the `collectionSynchronization` attribute on `Create` and `Announce` activities and synchronize followers from provided collection if possible. * Add tests for followers synchronization on the receiving end * Add support for follower synchronization on the sender's end * Add tests for the sending end * Switch from AS attributes to HTTP header Replace the custom `collectionSynchronization` ActivityStreams attribute by an HTTP header (`X-AS-Collection-Synchronization`) with the same syntax as the `Signature` header and the following fields: - `collectionId` to specify which collection to synchronize - `digest` for the SHA256 hex-digest of the list of followers known on the receiving instance (where “receiving instance” is determined by accounts sharing the same host name for their ActivityPub actor `id`) - `url` of a collection that should be fetched by the instance actor Internally, move away from the webfinger-based `domain` attribute and use account `uri` prefix to group accounts. * Add environment variable to disable followers synchronization Since the whole mechanism relies on some new preconditions that, in some extremely rare cases, might not be met, add an environment variable (DISABLE_FOLLOWERS_SYNCHRONIZATION) to disable the mechanism altogether and avoid followers being incorrectly removed. The current conditions are: 1. all managed accounts' actor `id` and inbox URL have the same URI scheme and netloc. 2. all accounts whose actor `id` or inbox URL share the same URI scheme and netloc as a managed account must be managed by the same Mastodon instance as well. As far as Mastodon is concerned, breaking those preconditions require extensive configuration changes in the reverse proxy and might also cause other issues. Therefore, this environment variable provides a way out for people with highly unusual configurations, and can be safely ignored for the overwhelming majority of Mastodon administrators. * Only set follower synchronization header on non-public statuses This is to avoid unnecessary computations and allow Follow-related activities to be handled by the usual codepath instead of going through the synchronization mechanism (otherwise, any Follow/Undo/Accept activity would trigger the synchronization mechanism even if processing the activity itself would be enough to re-introduce synchronization) * Change how ActivityPub::SynchronizeFollowersService handles follow requests If the remote lists a local follower which we only know has sent a follow request, consider the follow request as accepted instead of sending an Undo. * Integrate review feeback - rename X-AS-Collection-Synchronization to Collection-Synchronization - various minor refactoring and code style changes * Only select required fields when computing followers_hash * Use actor URI rather than webfinger domain in synchronization endpoint * Change hash computation to be a XOR of individual hashes Makes it much easier to be memory-efficient, and avoid sorting discrepancy issues. * Marginally improve followers_hash computation speed * Further improve hash computation performances by using pluck_each
3 years ago
Add follower synchronization mechanism (#14510) * Add support for followers synchronization on the receiving end Check the `collectionSynchronization` attribute on `Create` and `Announce` activities and synchronize followers from provided collection if possible. * Add tests for followers synchronization on the receiving end * Add support for follower synchronization on the sender's end * Add tests for the sending end * Switch from AS attributes to HTTP header Replace the custom `collectionSynchronization` ActivityStreams attribute by an HTTP header (`X-AS-Collection-Synchronization`) with the same syntax as the `Signature` header and the following fields: - `collectionId` to specify which collection to synchronize - `digest` for the SHA256 hex-digest of the list of followers known on the receiving instance (where “receiving instance” is determined by accounts sharing the same host name for their ActivityPub actor `id`) - `url` of a collection that should be fetched by the instance actor Internally, move away from the webfinger-based `domain` attribute and use account `uri` prefix to group accounts. * Add environment variable to disable followers synchronization Since the whole mechanism relies on some new preconditions that, in some extremely rare cases, might not be met, add an environment variable (DISABLE_FOLLOWERS_SYNCHRONIZATION) to disable the mechanism altogether and avoid followers being incorrectly removed. The current conditions are: 1. all managed accounts' actor `id` and inbox URL have the same URI scheme and netloc. 2. all accounts whose actor `id` or inbox URL share the same URI scheme and netloc as a managed account must be managed by the same Mastodon instance as well. As far as Mastodon is concerned, breaking those preconditions require extensive configuration changes in the reverse proxy and might also cause other issues. Therefore, this environment variable provides a way out for people with highly unusual configurations, and can be safely ignored for the overwhelming majority of Mastodon administrators. * Only set follower synchronization header on non-public statuses This is to avoid unnecessary computations and allow Follow-related activities to be handled by the usual codepath instead of going through the synchronization mechanism (otherwise, any Follow/Undo/Accept activity would trigger the synchronization mechanism even if processing the activity itself would be enough to re-introduce synchronization) * Change how ActivityPub::SynchronizeFollowersService handles follow requests If the remote lists a local follower which we only know has sent a follow request, consider the follow request as accepted instead of sending an Undo. * Integrate review feeback - rename X-AS-Collection-Synchronization to Collection-Synchronization - various minor refactoring and code style changes * Only select required fields when computing followers_hash * Use actor URI rather than webfinger domain in synchronization endpoint * Change hash computation to be a XOR of individual hashes Makes it much easier to be memory-efficient, and avoid sorting discrepancy issues. * Marginally improve followers_hash computation speed * Further improve hash computation performances by using pluck_each
3 years ago
8 years ago
  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. # hide_collections :boolean
  44. # avatar_storage_schema_version :integer
  45. # header_storage_schema_version :integer
  46. # devices_url :string
  47. # suspension_origin :integer
  48. # sensitized_at :datetime
  49. # trendable :boolean
  50. # reviewed_at :datetime
  51. # requested_review_at :datetime
  52. #
  53. class Account < ApplicationRecord
  54. self.ignored_columns = %w(
  55. subscription_expires_at
  56. secret
  57. remote_url
  58. salmon_url
  59. hub_url
  60. trust_level
  61. )
  62. USERNAME_RE = /[a-z0-9_]+([a-z0-9_\.-]+[a-z0-9_]+)?/i
  63. MENTION_RE = /(?<=^|[^\/[:word:]])@((#{USERNAME_RE})(?:@[[:word:]\.\-]+[[:word:]]+)?)/i
  64. URL_PREFIX_RE = /\Ahttp(s?):\/\/[^\/]+/
  65. USERNAME_ONLY_RE = /\A#{USERNAME_RE}\z/i
  66. include Attachmentable
  67. include AccountAssociations
  68. include AccountAvatar
  69. include AccountFinderConcern
  70. include AccountHeader
  71. include AccountInteractions
  72. include Paginable
  73. include AccountCounters
  74. include DomainNormalizable
  75. include DomainMaterializable
  76. include AccountMerging
  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, also applies to internal actors
  82. validates :username, format: { with: USERNAME_ONLY_RE }, if: -> { (!local? || actor_type == 'Application') && 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? && actor_type != 'Application' }
  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 :without_unapproved, -> { left_outer_joins(:user).remote.or(left_outer_joins(:user).merge(User.approved.confirmed)) }
  106. scope :searchable, -> { without_unapproved.without_suspended.where(moved_to_account_id: nil) }
  107. scope :discoverable, -> { searchable.without_silenced.where(discoverable: true).left_outer_joins(:account_stat) }
  108. 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)) }
  109. 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')) }
  110. 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')) }
  111. scope :popular, -> { order('account_stats.followers_count desc') }
  112. scope :by_domain_and_subdomains, ->(domain) { where(domain: domain).or(where(arel_table[:domain].matches("%.#{domain}"))) }
  113. scope :not_excluded_by_account, ->(account) { where.not(id: account.excluded_from_timeline_account_ids) }
  114. scope :not_domain_blocked_by_account, ->(account) { where(arel_table[:domain].eq(nil).or(arel_table[:domain].not_in(account.excluded_from_timeline_domains))) }
  115. delegate :email,
  116. :unconfirmed_email,
  117. :current_sign_in_at,
  118. :created_at,
  119. :sign_up_ip,
  120. :confirmed?,
  121. :approved?,
  122. :pending?,
  123. :disabled?,
  124. :unconfirmed?,
  125. :unconfirmed_or_pending?,
  126. :role,
  127. :locale,
  128. :shows_application?,
  129. :prefers_noindex?,
  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', :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 possibly_stale?
  171. last_webfingered_at.nil? || last_webfingered_at <= 1.day.ago
  172. end
  173. def refresh!
  174. ResolveAccountService.new.call(acct) unless local?
  175. end
  176. def silenced?
  177. silenced_at.present?
  178. end
  179. def silence!(date = Time.now.utc)
  180. update!(silenced_at: date)
  181. end
  182. def unsilence!
  183. update!(silenced_at: nil)
  184. end
  185. def suspended?
  186. suspended_at.present? && !instance_actor?
  187. end
  188. def suspended_permanently?
  189. suspended? && deletion_request.nil?
  190. end
  191. def suspended_temporarily?
  192. suspended? && deletion_request.present?
  193. end
  194. def suspend!(date: Time.now.utc, origin: :local, block_email: true)
  195. transaction do
  196. create_deletion_request!
  197. update!(suspended_at: date, suspension_origin: origin)
  198. create_canonical_email_block! if block_email
  199. end
  200. end
  201. def unsuspend!
  202. transaction do
  203. deletion_request&.destroy!
  204. update!(suspended_at: nil, suspension_origin: nil)
  205. destroy_canonical_email_block!
  206. end
  207. end
  208. def sensitized?
  209. sensitized_at.present?
  210. end
  211. def sensitize!(date = Time.now.utc)
  212. update!(sensitized_at: date)
  213. end
  214. def unsensitize!
  215. update!(sensitized_at: nil)
  216. end
  217. def memorialize!
  218. update!(memorial: true)
  219. end
  220. def trendable?
  221. boolean_with_default('trendable', Setting.trendable_by_default)
  222. end
  223. def sign?
  224. true
  225. end
  226. def previous_strikes_count
  227. strikes.where(overruled_at: nil).count
  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. Account::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. attr[:verified_at] = previous['verified_at'] if previous && previous['verified_at'].present?
  266. fields << attr
  267. end
  268. end
  269. self[:fields] = fields
  270. end
  271. DEFAULT_FIELDS_SIZE = 4
  272. def build_fields
  273. return if fields.size >= DEFAULT_FIELDS_SIZE
  274. tmp = self[:fields] || []
  275. tmp = [] if tmp.is_a?(Hash)
  276. (DEFAULT_FIELDS_SIZE - tmp.size).times do
  277. tmp << { name: '', value: '' }
  278. end
  279. self.fields = tmp
  280. end
  281. def save_with_optional_media!
  282. save!
  283. rescue ActiveRecord::RecordInvalid => e
  284. errors = e.record.errors.errors
  285. errors.each do |err|
  286. if err.attribute == :avatar
  287. self.avatar = nil
  288. elsif err.attribute == :header
  289. self.header = nil
  290. end
  291. end
  292. save!
  293. end
  294. def hides_followers?
  295. hide_collections?
  296. end
  297. def hides_following?
  298. hide_collections?
  299. end
  300. def object_type
  301. :person
  302. end
  303. def to_param
  304. username
  305. end
  306. def to_log_human_identifier
  307. acct
  308. end
  309. def excluded_from_timeline_account_ids
  310. 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) }
  311. end
  312. def excluded_from_timeline_domains
  313. Rails.cache.fetch("exclude_domains_for:#{id}") { domain_blocks.pluck(:domain) }
  314. end
  315. def preferred_inbox_url
  316. shared_inbox_url.presence || inbox_url
  317. end
  318. def synchronization_uri_prefix
  319. return 'local' if local?
  320. @synchronization_uri_prefix ||= "#{uri[URL_PREFIX_RE]}/"
  321. end
  322. def requires_review?
  323. reviewed_at.nil?
  324. end
  325. def reviewed?
  326. reviewed_at.present?
  327. end
  328. def requested_review?
  329. requested_review_at.present?
  330. end
  331. def requires_review_notification?
  332. requires_review? && !requested_review?
  333. end
  334. class << self
  335. DISALLOWED_TSQUERY_CHARACTERS = /['?\\:‘’]/.freeze
  336. TEXTSEARCH = "(setweight(to_tsvector('simple', accounts.display_name), 'A') || setweight(to_tsvector('simple', accounts.username), 'B') || setweight(to_tsvector('simple', coalesce(accounts.domain, '')), 'C'))"
  337. REPUTATION_SCORE_FUNCTION = '(greatest(0, coalesce(s.followers_count, 0)) / (greatest(0, coalesce(s.following_count, 0)) + 1.0))'
  338. FOLLOWERS_SCORE_FUNCTION = 'log(greatest(0, coalesce(s.followers_count, 0)) + 2)'
  339. TIME_DISTANCE_FUNCTION = '(case when s.last_status_at is null then 0 else exp(-1.0 * ((greatest(0, abs(extract(DAY FROM age(s.last_status_at))) - 30.0)^2) / (2.0 * ((-1.0 * 30^2) / (2.0 * ln(0.3)))))) end)'
  340. BOOST = "((#{REPUTATION_SCORE_FUNCTION} + #{FOLLOWERS_SCORE_FUNCTION} + #{TIME_DISTANCE_FUNCTION}) / 3.0)"
  341. def readonly_attributes
  342. super - %w(statuses_count following_count followers_count)
  343. end
  344. def inboxes
  345. 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"))
  346. DeliveryFailureTracker.without_unavailable(urls)
  347. end
  348. def search_for(terms, limit: 10, offset: 0)
  349. tsquery = generate_query_for_search(terms)
  350. sql = <<-SQL.squish
  351. SELECT
  352. accounts.*,
  353. #{BOOST} * ts_rank_cd(#{TEXTSEARCH}, to_tsquery('simple', :tsquery), 32) AS rank
  354. FROM accounts
  355. LEFT JOIN users ON accounts.id = users.account_id
  356. LEFT JOIN account_stats AS s ON accounts.id = s.account_id
  357. WHERE to_tsquery('simple', :tsquery) @@ #{TEXTSEARCH}
  358. AND accounts.suspended_at IS NULL
  359. AND accounts.moved_to_account_id IS NULL
  360. AND (accounts.domain IS NOT NULL OR (users.approved = TRUE AND users.confirmed_at IS NOT NULL))
  361. ORDER BY rank DESC
  362. LIMIT :limit OFFSET :offset
  363. SQL
  364. records = find_by_sql([sql, limit: limit, offset: offset, tsquery: tsquery])
  365. ActiveRecord::Associations::Preloader.new.preload(records, :account_stat)
  366. records
  367. end
  368. def advanced_search_for(terms, account, limit: 10, following: false, offset: 0)
  369. tsquery = generate_query_for_search(terms)
  370. sql = advanced_search_for_sql_template(following)
  371. records = find_by_sql([sql, id: account.id, limit: limit, offset: offset, tsquery: tsquery])
  372. ActiveRecord::Associations::Preloader.new.preload(records, :account_stat)
  373. records
  374. end
  375. def from_text(text)
  376. return [] if text.blank?
  377. text.scan(MENTION_RE).map { |match| match.first.split('@', 2) }.uniq.filter_map do |(username, domain)|
  378. domain = if TagManager.instance.local_domain?(domain)
  379. nil
  380. else
  381. TagManager.instance.normalize_domain(domain)
  382. end
  383. EntityCache.instance.mention(username, domain)
  384. end
  385. end
  386. private
  387. def generate_query_for_search(unsanitized_terms)
  388. terms = unsanitized_terms.gsub(DISALLOWED_TSQUERY_CHARACTERS, ' ')
  389. # The final ":*" is for prefix search.
  390. # The trailing space does not seem to fit any purpose, but `to_tsquery`
  391. # behaves differently with and without a leading space if the terms start
  392. # with `./`, `../`, or `.. `. I don't understand why, so, in doubt, keep
  393. # the same query.
  394. "' #{terms} ':*"
  395. end
  396. def advanced_search_for_sql_template(following)
  397. if following
  398. <<-SQL.squish
  399. WITH first_degree AS (
  400. SELECT target_account_id
  401. FROM follows
  402. WHERE account_id = :id
  403. UNION ALL
  404. SELECT :id
  405. )
  406. SELECT
  407. accounts.*,
  408. (count(f.id) + 1) * #{BOOST} * ts_rank_cd(#{TEXTSEARCH}, to_tsquery('simple', :tsquery), 32) AS rank
  409. FROM accounts
  410. LEFT OUTER JOIN follows AS f ON (accounts.id = f.account_id AND f.target_account_id = :id)
  411. LEFT JOIN account_stats AS s ON accounts.id = s.account_id
  412. WHERE accounts.id IN (SELECT * FROM first_degree)
  413. AND to_tsquery('simple', :tsquery) @@ #{TEXTSEARCH}
  414. AND accounts.suspended_at IS NULL
  415. AND accounts.moved_to_account_id IS NULL
  416. GROUP BY accounts.id, s.id
  417. ORDER BY rank DESC
  418. LIMIT :limit OFFSET :offset
  419. SQL
  420. else
  421. <<-SQL.squish
  422. SELECT
  423. accounts.*,
  424. #{BOOST} * ts_rank_cd(#{TEXTSEARCH}, to_tsquery('simple', :tsquery), 32) AS rank,
  425. count(f.id) AS followed
  426. FROM accounts
  427. 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)
  428. LEFT JOIN users ON accounts.id = users.account_id
  429. LEFT JOIN account_stats AS s ON accounts.id = s.account_id
  430. WHERE to_tsquery('simple', :tsquery) @@ #{TEXTSEARCH}
  431. AND accounts.suspended_at IS NULL
  432. AND accounts.moved_to_account_id IS NULL
  433. AND (accounts.domain IS NOT NULL OR (users.approved = TRUE AND users.confirmed_at IS NOT NULL))
  434. GROUP BY accounts.id, s.id
  435. ORDER BY followed DESC, rank DESC
  436. LIMIT :limit OFFSET :offset
  437. SQL
  438. end
  439. end
  440. end
  441. def emojis
  442. @emojis ||= CustomEmoji.from_text(emojifiable_text, domain)
  443. end
  444. before_create :generate_keys
  445. before_validation :prepare_contents, if: :local?
  446. before_validation :prepare_username, on: :create
  447. before_destroy :clean_feed_manager
  448. def ensure_keys!
  449. return unless local? && private_key.blank? && public_key.blank?
  450. generate_keys
  451. save!
  452. end
  453. private
  454. def prepare_contents
  455. display_name&.strip!
  456. note&.strip!
  457. end
  458. def prepare_username
  459. username&.squish!
  460. end
  461. def generate_keys
  462. return unless local? && private_key.blank? && public_key.blank?
  463. keypair = OpenSSL::PKey::RSA.new(2048)
  464. self.private_key = keypair.to_pem
  465. self.public_key = keypair.public_key.to_pem
  466. end
  467. def normalize_domain
  468. return if local?
  469. super
  470. end
  471. def emojifiable_text
  472. [note, display_name, fields.map(&:name), fields.map(&:value)].join(' ')
  473. end
  474. def clean_feed_manager
  475. FeedManager.instance.clean_feeds!(:home, [id])
  476. end
  477. def create_canonical_email_block!
  478. return unless local? && user_email.present?
  479. begin
  480. CanonicalEmailBlock.create(reference_account: self, email: user_email)
  481. rescue ActiveRecord::RecordNotUnique
  482. # A canonical e-mail block may already exist for the same e-mail
  483. end
  484. end
  485. def destroy_canonical_email_block!
  486. return unless local?
  487. CanonicalEmailBlock.where(reference_account: self).delete_all
  488. end
  489. end