227a8d71b3
Squashed, modified, and rebased from glitch-soc/mastodon#2221. Co-authored-by: fef <owo@fef.moe> Co-authored-by: Jeremy Kescher <jeremy@kescher.at> Co-authored-by: neatchee <neatchee@gmail.com> Co-authored-by: Ivan Rodriguez <104603218+IRod22@users.noreply.github.com> Co-authored-by: Plastikmensch <plastikmensch@users.noreply.github.com>
49 lines
1.4 KiB
Ruby
49 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class MoveEmojiReactionSettings < ActiveRecord::Migration[6.1]
|
|
class User < ApplicationRecord; end
|
|
|
|
MAPPING = {
|
|
setting_visible_reactions: 'visible_reactions',
|
|
}.freeze
|
|
|
|
class LegacySetting < ApplicationRecord
|
|
self.table_name = 'settings'
|
|
|
|
def var
|
|
self[:var]&.to_sym
|
|
end
|
|
|
|
def value
|
|
YAML.safe_load(self[:value], permitted_classes: [ActiveSupport::HashWithIndifferentAccess]) if self[:value].present?
|
|
end
|
|
end
|
|
|
|
def up
|
|
User.find_in_batches do |users|
|
|
previous_settings_for_batch = LegacySetting.where(thing_type: 'User', thing_id: users.map(&:id)).group_by(&:thing_id)
|
|
|
|
users.each do |user|
|
|
previous_settings = previous_settings_for_batch[user.id]&.index_by(&:var) || {}
|
|
user_settings = Oj.load(user.settings || '{}')
|
|
user_settings.delete('theme')
|
|
|
|
MAPPING.each do |legacy_key, new_key|
|
|
value = previous_settings[legacy_key]&.value
|
|
|
|
next if value.blank?
|
|
|
|
if value.is_a?(Hash)
|
|
value.each do |nested_key, nested_value|
|
|
user_settings[MAPPING[legacy_key][nested_key.to_sym]] = nested_value
|
|
end
|
|
else
|
|
user_settings[new_key] = value
|
|
end
|
|
end
|
|
|
|
user.update_column('settings', Oj.dump(user_settings)) # rubocop:disable Rails/SkipsModelValidations
|
|
end
|
|
end
|
|
end
|
|
end
|