about summary refs log tree commit diff
path: root/db/migrate/20181024224956_migrate_account_conversations.rb
blob: 1821e8c2755d767014d17a1c566db3054d7d7f68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class MigrateAccountConversations < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def up
    say ''
    say 'WARNING: This migration may take a *long* time for large instances'
    say 'It will *not* lock tables for any significant time, but it may run'
    say 'for a very long time. We will pause for 10 seconds to allow you to'
    say 'interrupt this migration if you are not ready.'
    say ''

    10.downto(1) do |i|
      say "Continuing in #{i} second#{i == 1 ? '' : 's'}...", true
      sleep 1
    end

    local_direct_statuses.find_each do |status|
      AccountConversation.add_status(status.account, status)
    end

    notifications_about_direct_statuses.find_each do |notification|
      AccountConversation.add_status(notification.account, notification.target_status)
    end
  end

  def down
  end

  private

  def local_direct_statuses
    Status.unscoped
          .local
          .where(visibility: :direct)
          .includes(:account, mentions: :account)
  end

  def notifications_about_direct_statuses
    Notification.joins(mention: :status)
                .where(activity_type: 'Mention', statuses: { visibility: :direct })
                .includes(:account, mention: { status: [:account, mentions: :account] })
  end
end