2023-03-25 23:39:24 +00:00
|
|
|
require_relative '../../lib/mastodon/migration_warning'
|
|
|
|
|
2018-10-24 23:44:02 +00:00
|
|
|
class MigrateAccountConversations < ActiveRecord::Migration[5.2]
|
2023-03-25 23:39:24 +00:00
|
|
|
include Mastodon::MigrationWarning
|
|
|
|
|
2018-10-24 23:44:02 +00:00
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2019-12-04 03:34:31 +00:00
|
|
|
class Mention < ApplicationRecord
|
|
|
|
belongs_to :account, inverse_of: :mentions
|
|
|
|
belongs_to :status, -> { unscope(where: :deleted_at) }
|
|
|
|
|
|
|
|
delegate(
|
|
|
|
:username,
|
|
|
|
:acct,
|
|
|
|
to: :account,
|
|
|
|
prefix: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
class Notification < ApplicationRecord
|
|
|
|
belongs_to :account, optional: true
|
|
|
|
belongs_to :activity, polymorphic: true, optional: true
|
|
|
|
|
2021-03-19 01:45:34 +00:00
|
|
|
belongs_to :status, foreign_key: 'activity_id', optional: true
|
|
|
|
belongs_to :mention, foreign_key: 'activity_id', optional: true
|
2019-12-04 03:34:31 +00:00
|
|
|
|
|
|
|
def target_status
|
|
|
|
mention&.status
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class AccountConversation < ApplicationRecord
|
|
|
|
belongs_to :account
|
|
|
|
belongs_to :conversation
|
|
|
|
belongs_to :last_status, -> { unscope(where: :deleted_at) }, class_name: 'Status'
|
|
|
|
|
|
|
|
before_validation :set_last_status
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def add_status(recipient, status)
|
|
|
|
conversation = find_or_initialize_by(account: recipient, conversation_id: status.conversation_id, participant_account_ids: participants_from_status(recipient, status))
|
|
|
|
|
|
|
|
return conversation if conversation.status_ids.include?(status.id)
|
|
|
|
|
|
|
|
conversation.status_ids << status.id
|
|
|
|
conversation.unread = status.account_id != recipient.id
|
|
|
|
conversation.save
|
|
|
|
conversation
|
|
|
|
rescue ActiveRecord::StaleObjectError
|
|
|
|
retry
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def participants_from_status(recipient, status)
|
|
|
|
((status.active_mentions.pluck(:account_id) + [status.account_id]).uniq - [recipient.id]).sort
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_last_status
|
|
|
|
self.status_ids = status_ids.sort
|
|
|
|
self.last_status_id = status_ids.last
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-24 23:44:02 +00:00
|
|
|
def up
|
2023-03-25 23:39:24 +00:00
|
|
|
migration_duration_warning
|
2018-10-24 23:44:02 +00:00
|
|
|
|
2018-10-30 20:09:33 +00:00
|
|
|
migrated = 0
|
|
|
|
last_time = Time.zone.now
|
2018-10-28 05:40:45 +00:00
|
|
|
|
|
|
|
local_direct_statuses.includes(:account, mentions: :account).find_each do |status|
|
2018-10-24 23:44:02 +00:00
|
|
|
AccountConversation.add_status(status.account, status)
|
2018-10-28 05:40:45 +00:00
|
|
|
migrated += 1
|
|
|
|
|
|
|
|
if Time.zone.now - last_time > 1
|
2018-10-30 20:09:33 +00:00
|
|
|
say_progress(migrated)
|
2018-10-28 05:40:45 +00:00
|
|
|
last_time = Time.zone.now
|
|
|
|
end
|
2018-10-24 23:44:02 +00:00
|
|
|
end
|
|
|
|
|
2018-10-28 05:40:45 +00:00
|
|
|
notifications_about_direct_statuses.includes(:account, mention: { status: [:account, mentions: :account] }).find_each do |notification|
|
2018-10-24 23:44:02 +00:00
|
|
|
AccountConversation.add_status(notification.account, notification.target_status)
|
2018-10-28 05:40:45 +00:00
|
|
|
migrated += 1
|
|
|
|
|
|
|
|
if Time.zone.now - last_time > 1
|
2018-10-30 20:09:33 +00:00
|
|
|
say_progress(migrated)
|
2018-10-28 05:40:45 +00:00
|
|
|
last_time = Time.zone.now
|
|
|
|
end
|
2018-10-24 23:44:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-02-20 01:18:54 +00:00
|
|
|
def down; end
|
2018-10-24 23:44:02 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2018-10-30 20:09:33 +00:00
|
|
|
def say_progress(migrated)
|
|
|
|
say "Migrated #{migrated} rows", true
|
2018-10-28 05:40:45 +00:00
|
|
|
end
|
|
|
|
|
2018-10-24 23:44:02 +00:00
|
|
|
def local_direct_statuses
|
2018-10-28 05:40:45 +00:00
|
|
|
Status.unscoped.local.where(visibility: :direct)
|
2018-10-24 23:44:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def notifications_about_direct_statuses
|
2019-10-07 04:05:14 +00:00
|
|
|
Notification.joins('INNER JOIN mentions ON mentions.id = notifications.activity_id INNER JOIN statuses ON statuses.id = mentions.status_id').where(activity_type: 'Mention', statuses: { visibility: :direct })
|
2018-10-24 23:44:02 +00:00
|
|
|
end
|
|
|
|
end
|