From af8a1309bde2a85bd94d06f3f152ae6355677095 Mon Sep 17 00:00:00 2001 From: Fire Demon Date: Fri, 17 Jul 2020 19:56:35 -0500 Subject: [Feature] Introduce nest_level attribute to posts and API to help apps visualize nesting in threads --- .../20200717014609_add_nest_level_to_statuses.rb | 7 +++++++ .../20200717015413_backfill_status_nest_level.rb | 24 ++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 db/migrate/20200717014609_add_nest_level_to_statuses.rb create mode 100644 db/migrate/20200717015413_backfill_status_nest_level.rb (limited to 'db') diff --git a/db/migrate/20200717014609_add_nest_level_to_statuses.rb b/db/migrate/20200717014609_add_nest_level_to_statuses.rb new file mode 100644 index 000000000..0b2196ad6 --- /dev/null +++ b/db/migrate/20200717014609_add_nest_level_to_statuses.rb @@ -0,0 +1,7 @@ +class AddNestLevelToStatuses < ActiveRecord::Migration[5.2] + def change + safety_assured do + add_column :statuses, :nest_level, :integer, limit: 1, null: false, default: 0 + end + end +end diff --git a/db/migrate/20200717015413_backfill_status_nest_level.rb b/db/migrate/20200717015413_backfill_status_nest_level.rb new file mode 100644 index 000000000..1f37ef847 --- /dev/null +++ b/db/migrate/20200717015413_backfill_status_nest_level.rb @@ -0,0 +1,24 @@ +class BackfillStatusNestLevel < ActiveRecord::Migration[5.2] + disable_ddl_transaction! + + def up + Rails.logger.info("Populating nest levels for orphaned replies...") + Status.select(:id, :account_id).where(reply: true, in_reply_to_id: nil).reorder(nil).in_batches.update_all(nest_level: 1) + + count = 1.0 + total = Conversation.count + + Conversation.reorder('conversations.id DESC').find_each do |conversation| + Rails.logger.info("(#{(count/total*100).to_i}%) Populating nest levels for threads...") + conversation.statuses.where(reply: true).reorder('statuses.id ASC').find_each do |status| + level = [status.thread&.account_id == status.account_id ? status.thread&.nest_level.to_i : status.thread&.nest_level.to_i + 1, 127].min + status.update(nest_level: level) if level != status.nest_level + end + count += 1 + end + end + + def down + true + end +end -- cgit