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.

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