-
-
Notifications
You must be signed in to change notification settings - Fork 313
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
170 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
require "active_storage/service" | ||
require "active_storage/service/disk_service" | ||
|
||
module Alchemy | ||
class Upgrader | ||
module Tasks | ||
class ActiveStorageMigration | ||
DEFAULT_CONTENT_TYPE = "application/octet-stream" | ||
DISK_SERVICE = ActiveStorage::Service::DiskService | ||
SERVICE_NAME = :alchemy_cms | ||
|
||
METADATA = { | ||
identified: true, # Skip identifying file type | ||
analyzed: true, # Skip analyze job | ||
composed: true # Skip checksum check | ||
} | ||
|
||
class << self | ||
def migrate_picture(picture) | ||
Alchemy::Picture.extend Dragonfly::Model | ||
Alchemy::Picture.dragonfly_accessor :legacy_image_file, app: :alchemy_pictures | ||
|
||
Alchemy::Deprecation.silence do | ||
uid = picture.legacy_image_file_uid | ||
key = key_for_uid(uid) | ||
content_type = Mime::Type.lookup_by_extension(picture.legacy_image_file_format) || DEFAULT_CONTENT_TYPE | ||
Alchemy::Picture.transaction do | ||
blob = ActiveStorage::Blob.create!( | ||
key: key, | ||
filename: picture.legacy_image_file_name, | ||
byte_size: picture.legacy_image_file_size, | ||
content_type: content_type, | ||
# Prevents (down)loading the original file | ||
metadata: METADATA.merge( | ||
width: picture.legacy_image_file_width, | ||
height: picture.legacy_image_file_height | ||
), | ||
service_name: SERVICE_NAME | ||
) | ||
picture.create_image_file_attachment!( | ||
name: :image_file, | ||
record: picture, | ||
blob: blob | ||
) | ||
end | ||
move_file(Rails.root.join("uploads/pictures", uid), key) | ||
end | ||
end | ||
|
||
def migrate_attachment(attachment) | ||
Alchemy::Attachment.extend Dragonfly::Model | ||
Alchemy::Attachment.dragonfly_accessor :legacy_file, app: :alchemy_attachments | ||
|
||
Alchemy::Deprecation.silence do | ||
uid = attachment.legacy_file_uid | ||
key = key_for_uid(uid) | ||
Alchemy::Attachment.transaction do | ||
blob = ActiveStorage::Blob.create!( | ||
key: key, | ||
filename: attachment.legacy_file_name, | ||
byte_size: attachment.legacy_file_size, | ||
content_type: attachment.file_mime_type.presence || DEFAULT_CONTENT_TYPE, | ||
metadata: METADATA, | ||
service_name: SERVICE_NAME | ||
) | ||
attachment.create_file_attachment!( | ||
record: attachment, | ||
name: :file, | ||
blob: blob | ||
) | ||
end | ||
move_file(Rails.root.join("uploads/attachments", uid), key) | ||
end | ||
end | ||
|
||
private | ||
|
||
# ActiveStorage::Service::DiskService stores files in a folder structure | ||
# based on the first two characters of the file uid. | ||
def key_for_uid(uid) | ||
case service | ||
when DISK_SERVICE | ||
uid.split("/").last | ||
else | ||
uid | ||
end | ||
end | ||
|
||
# ActiveStorage::Service::DiskService stores files in a folder structure | ||
# based on the first two characters of the file uid. | ||
def move_file(uid, key) | ||
case service | ||
when DISK_SERVICE | ||
if File.exist?(uid) | ||
service.send(:make_path_for, key) | ||
FileUtils.mv uid, service.send(:path_for, key) | ||
end | ||
end | ||
end | ||
|
||
def service | ||
ActiveStorage::Blob.services.fetch(SERVICE_NAME) | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters