|
| 1 | +require "alchemy/shell" |
| 2 | +require "alchemy/upgrader/tasks/active_storage_migration" |
| 3 | +require "benchmark" |
| 4 | +require "dragonfly" |
| 5 | +require "dragonfly_svg" |
| 6 | +require "fileutils" |
| 7 | +require "thor" |
| 8 | + |
| 9 | +module Alchemy |
| 10 | + class Upgrader::EightZero < Upgrader |
| 11 | + include Thor::Base |
| 12 | + include Thor::Actions |
| 13 | + |
| 14 | + class << self |
| 15 | + def install_active_storage |
| 16 | + Rake::Task["active_storage:install"].invoke |
| 17 | + Rake::Task["db:migrate"].invoke |
| 18 | + |
| 19 | + text = <<-YAML.strip_heredoc |
| 20 | +
|
| 21 | + alchemy_cms: |
| 22 | + service: Disk |
| 23 | + root: <%= Rails.root.join("storage") %> |
| 24 | + YAML |
| 25 | + |
| 26 | + storage_yml = Rails.application.root.join("config/storage.yml") |
| 27 | + if File.exist?(storage_yml) |
| 28 | + task.insert_into_file(storage_yml, text) |
| 29 | + else |
| 30 | + task.create_file(storage_yml, text) |
| 31 | + end |
| 32 | + end |
| 33 | + |
| 34 | + def prepare_dragonfly_config |
| 35 | + task.prepend_to_file "config/initializers/dragonfly.rb", <<~RUBY |
| 36 | + require "dragonfly" |
| 37 | + require "dragonfly_svg" |
| 38 | + RUBY |
| 39 | + end |
| 40 | + |
| 41 | + def migrate_pictures_to_active_storage |
| 42 | + Dragonfly.logger = Rails.logger |
| 43 | + |
| 44 | + Alchemy::Picture.class_eval do |
| 45 | + extend Dragonfly::Model |
| 46 | + dragonfly_accessor :legacy_image_file, app: :alchemy_pictures |
| 47 | + end |
| 48 | + |
| 49 | + pictures_without_as_attachment = Alchemy::Picture.where.missing(:image_file_attachment) |
| 50 | + count = pictures_without_as_attachment.count |
| 51 | + if count > 0 |
| 52 | + log "Migrating #{count} Dragonfly image file(s) to ActiveStorage." |
| 53 | + realtime = Benchmark.realtime do |
| 54 | + pictures_without_as_attachment.find_each do |picture| |
| 55 | + Alchemy::Upgrader::Tasks::ActiveStorageMigration.migrate_picture(picture) |
| 56 | + print "." |
| 57 | + end |
| 58 | + end |
| 59 | + puts "\nDone in #{realtime.round(2)}s!" |
| 60 | + else |
| 61 | + log "No Dragonfly image files for migration found.", :skip |
| 62 | + end |
| 63 | + end |
| 64 | + |
| 65 | + def migrate_attachments_to_active_storage |
| 66 | + Dragonfly.logger = Rails.logger |
| 67 | + |
| 68 | + Alchemy::Attachment.class_eval do |
| 69 | + extend Dragonfly::Model |
| 70 | + dragonfly_accessor :legacy_file, app: :alchemy_attachments |
| 71 | + end |
| 72 | + |
| 73 | + attachments_without_as_attachment = Alchemy::Attachment.where.missing(:file_attachment) |
| 74 | + count = attachments_without_as_attachment.count |
| 75 | + if count > 0 |
| 76 | + log "Migrating #{count} Dragonfly attachment file(s) to ActiveStorage." |
| 77 | + realtime = Benchmark.realtime do |
| 78 | + attachments_without_as_attachment.find_each do |attachment| |
| 79 | + Alchemy::Upgrader::Tasks::ActiveStorageMigration.migrate_attachment(attachment) |
| 80 | + print "." |
| 81 | + end |
| 82 | + end |
| 83 | + puts "\nDone in #{realtime.round(2)}s!" |
| 84 | + else |
| 85 | + log "No Dragonfly attachment files for migration found.", :skip |
| 86 | + end |
| 87 | + end |
| 88 | + |
| 89 | + def remove_dragonfly_todo |
| 90 | + todo <<-TXT.strip_heredoc |
| 91 | + Please check if all pictures and attachments are migrated to ActiveStorage. |
| 92 | +
|
| 93 | + If so, you can remove the Dragonfly gem, its configuration and storage by running: |
| 94 | +
|
| 95 | + rm config/initializers/dragonfly.rb |
| 96 | + rm -rf uploads |
| 97 | +
|
| 98 | + TXT |
| 99 | + end |
| 100 | + |
| 101 | + private |
| 102 | + |
| 103 | + def task |
| 104 | + @_task || new |
| 105 | + end |
| 106 | + end |
| 107 | + end |
| 108 | +end |
0 commit comments