The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

219 lines
7.7 KiB

  1. # frozen_string_literal: true
  2. module AccountInteractions
  3. extend ActiveSupport::Concern
  4. class_methods do
  5. def following_map(target_account_ids, account_id)
  6. Follow.where(target_account_id: target_account_ids, account_id: account_id).each_with_object({}) do |follow, mapping|
  7. mapping[follow.target_account_id] = {
  8. reblogs: follow.show_reblogs?,
  9. }
  10. end
  11. end
  12. def followed_by_map(target_account_ids, account_id)
  13. follow_mapping(Follow.where(account_id: target_account_ids, target_account_id: account_id), :account_id)
  14. end
  15. def blocking_map(target_account_ids, account_id)
  16. follow_mapping(Block.where(target_account_id: target_account_ids, account_id: account_id), :target_account_id)
  17. end
  18. def blocked_by_map(target_account_ids, account_id)
  19. follow_mapping(Block.where(account_id: target_account_ids, target_account_id: account_id), :account_id)
  20. end
  21. def muting_map(target_account_ids, account_id)
  22. Mute.where(target_account_id: target_account_ids, account_id: account_id).each_with_object({}) do |mute, mapping|
  23. mapping[mute.target_account_id] = {
  24. notifications: mute.hide_notifications?,
  25. }
  26. end
  27. end
  28. def requested_map(target_account_ids, account_id)
  29. FollowRequest.where(target_account_id: target_account_ids, account_id: account_id).each_with_object({}) do |follow_request, mapping|
  30. mapping[follow_request.target_account_id] = {
  31. reblogs: follow_request.show_reblogs?,
  32. }
  33. end
  34. end
  35. def endorsed_map(target_account_ids, account_id)
  36. follow_mapping(AccountPin.where(account_id: account_id, target_account_id: target_account_ids), :target_account_id)
  37. end
  38. def domain_blocking_map(target_account_ids, account_id)
  39. accounts_map = Account.where(id: target_account_ids).select('id, domain').map { |a| [a.id, a.domain] }.to_h
  40. blocked_domains = domain_blocking_map_by_domain(accounts_map.values.compact, account_id)
  41. accounts_map.map { |id, domain| [id, blocked_domains[domain]] }.to_h
  42. end
  43. def domain_blocking_map_by_domain(target_domains, account_id)
  44. follow_mapping(AccountDomainBlock.where(account_id: account_id, domain: target_domains), :domain)
  45. end
  46. private
  47. def follow_mapping(query, field)
  48. query.pluck(field).each_with_object({}) { |id, mapping| mapping[id] = true }
  49. end
  50. end
  51. included do
  52. # Follow relations
  53. has_many :follow_requests, dependent: :destroy
  54. has_many :active_relationships, class_name: 'Follow', foreign_key: 'account_id', dependent: :destroy
  55. has_many :passive_relationships, class_name: 'Follow', foreign_key: 'target_account_id', dependent: :destroy
  56. has_many :following, -> { order('follows.id desc') }, through: :active_relationships, source: :target_account
  57. has_many :followers, -> { order('follows.id desc') }, through: :passive_relationships, source: :account
  58. # Block relationships
  59. has_many :block_relationships, class_name: 'Block', foreign_key: 'account_id', dependent: :destroy
  60. has_many :blocking, -> { order('blocks.id desc') }, through: :block_relationships, source: :target_account
  61. has_many :blocked_by_relationships, class_name: 'Block', foreign_key: :target_account_id, dependent: :destroy
  62. has_many :blocked_by, -> { order('blocks.id desc') }, through: :blocked_by_relationships, source: :account
  63. # Mute relationships
  64. has_many :mute_relationships, class_name: 'Mute', foreign_key: 'account_id', dependent: :destroy
  65. has_many :muting, -> { order('mutes.id desc') }, through: :mute_relationships, source: :target_account
  66. has_many :muted_by_relationships, class_name: 'Mute', foreign_key: :target_account_id, dependent: :destroy
  67. has_many :muted_by, -> { order('mutes.id desc') }, through: :muted_by_relationships, source: :account
  68. has_many :conversation_mutes, dependent: :destroy
  69. has_many :domain_blocks, class_name: 'AccountDomainBlock', dependent: :destroy
  70. end
  71. def follow!(other_account, reblogs: nil, uri: nil)
  72. reblogs = true if reblogs.nil?
  73. rel = active_relationships.create_with(show_reblogs: reblogs, uri: uri)
  74. .find_or_create_by!(target_account: other_account)
  75. rel.update!(show_reblogs: reblogs)
  76. remove_potential_friendship(other_account)
  77. rel
  78. end
  79. def block!(other_account, uri: nil)
  80. remove_potential_friendship(other_account)
  81. block_relationships.create_with(uri: uri)
  82. .find_or_create_by!(target_account: other_account)
  83. end
  84. def mute!(other_account, notifications: nil)
  85. notifications = true if notifications.nil?
  86. mute = mute_relationships.create_with(hide_notifications: notifications).find_or_create_by!(target_account: other_account)
  87. remove_potential_friendship(other_account)
  88. # When toggling a mute between hiding and allowing notifications, the mute will already exist, so the find_or_create_by! call will return the existing Mute without updating the hide_notifications attribute. Therefore, we check that hide_notifications? is what we want and set it if it isn't.
  89. if mute.hide_notifications? != notifications
  90. mute.update!(hide_notifications: notifications)
  91. end
  92. mute
  93. end
  94. def mute_conversation!(conversation)
  95. conversation_mutes.find_or_create_by!(conversation: conversation)
  96. end
  97. def block_domain!(other_domain)
  98. domain_blocks.find_or_create_by!(domain: other_domain)
  99. end
  100. def unfollow!(other_account)
  101. follow = active_relationships.find_by(target_account: other_account)
  102. follow&.destroy
  103. end
  104. def unblock!(other_account)
  105. block = block_relationships.find_by(target_account: other_account)
  106. block&.destroy
  107. end
  108. def unmute!(other_account)
  109. mute = mute_relationships.find_by(target_account: other_account)
  110. mute&.destroy
  111. end
  112. def unmute_conversation!(conversation)
  113. mute = conversation_mutes.find_by(conversation: conversation)
  114. mute&.destroy!
  115. end
  116. def unblock_domain!(other_domain)
  117. block = domain_blocks.find_by(domain: other_domain)
  118. block&.destroy
  119. end
  120. def following?(other_account)
  121. active_relationships.where(target_account: other_account).exists?
  122. end
  123. def blocking?(other_account)
  124. block_relationships.where(target_account: other_account).exists?
  125. end
  126. def domain_blocking?(other_domain)
  127. domain_blocks.where(domain: other_domain).exists?
  128. end
  129. def muting?(other_account)
  130. mute_relationships.where(target_account: other_account).exists?
  131. end
  132. def muting_conversation?(conversation)
  133. conversation_mutes.where(conversation: conversation).exists?
  134. end
  135. def muting_notifications?(other_account)
  136. mute_relationships.where(target_account: other_account, hide_notifications: true).exists?
  137. end
  138. def muting_reblogs?(other_account)
  139. active_relationships.where(target_account: other_account, show_reblogs: false).exists?
  140. end
  141. def requested?(other_account)
  142. follow_requests.where(target_account: other_account).exists?
  143. end
  144. def favourited?(status)
  145. status.proper.favourites.where(account: self).exists?
  146. end
  147. def reblogged?(status)
  148. status.proper.reblogs.where(account: self).exists?
  149. end
  150. def pinned?(status)
  151. status_pins.where(status: status).exists?
  152. end
  153. def endorsed?(account)
  154. account_pins.where(target_account: account).exists?
  155. end
  156. def followers_for_local_distribution
  157. followers.local
  158. .joins(:user)
  159. .where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago)
  160. end
  161. def lists_for_local_distribution
  162. lists.joins(account: :user)
  163. .where('users.current_sign_in_at > ?', User::ACTIVE_DURATION.ago)
  164. end
  165. private
  166. def remove_potential_friendship(other_account, mutual = false)
  167. PotentialFriendshipTracker.remove(id, other_account.id)
  168. PotentialFriendshipTracker.remove(other_account.id, id) if mutual
  169. end
  170. end