1
1
require "alchemy/shell"
2
+ require "alchemy/upgrader/tasks/active_storage_migration"
2
3
require "benchmark"
3
- require "active_storage/service/disk_service"
4
+ require "fileutils"
5
+ require "thor"
4
6
5
7
module Alchemy
6
8
class Upgrader ::EightZero < Upgrader
7
- extend Alchemy ::Shell
8
- DEFAULT_CONTENT_TYPE = "application/octet-stream"
9
- DISK_SERVICE = ActiveStorage ::Service ::DiskService
10
- SERVICE_NAME = :alchemy_cms
11
-
12
- # Prevents (down)loading the original file
13
- METADATA = {
14
- identified : true , # Skip identifying file type
15
- analyzed : true , # Skip analyze job
16
- composed : true # Skip checksum check
17
- }
9
+ include Thor ::Base
10
+ include Thor ::Actions
18
11
19
12
class << self
13
+ def install_active_storage
14
+ Rake ::Task [ "active_storage:install" ] . invoke
15
+ Rake ::Task [ "db:migrate" ] . invoke
16
+
17
+ text = <<-YAML . strip_heredoc
18
+
19
+ alchemy_cms:
20
+ service: Disk
21
+ root: <%= Rails.root.join("storage") %>
22
+ YAML
23
+
24
+ storage_yml = Rails . application . root . join ( "config/storage.yml" )
25
+ if File . exist? ( storage_yml )
26
+ task . insert_into_file ( storage_yml , text )
27
+ else
28
+ task . create_file ( storage_yml , text )
29
+ end
30
+ end
31
+
20
32
def migrate_pictures_to_active_storage
21
33
pictures_without_as_attachment = Alchemy ::Picture . where . missing ( :image_file_attachment )
22
34
count = pictures_without_as_attachment . count
23
35
if count > 0
24
36
log "Migrating #{ count } Dragonfly image file(s) to ActiveStorage."
25
37
realtime = Benchmark . realtime do
26
38
pictures_without_as_attachment . find_each do |picture |
27
- Alchemy ::Deprecation . silence do
28
- uid = picture . legacy_image_file_uid
29
- key = key_for_uid ( uid )
30
- content_type = Mime ::Type . lookup_by_extension ( picture . legacy_image_file_format ) || DEFAULT_CONTENT_TYPE
31
- Alchemy ::Picture . transaction do
32
- blob = ActiveStorage ::Blob . create! (
33
- key : key ,
34
- filename : picture . legacy_image_file_name ,
35
- byte_size : picture . legacy_image_file_size ,
36
- content_type : content_type ,
37
- metadata : METADATA . merge (
38
- width : picture . legacy_image_file_width ,
39
- height : picture . legacy_image_file_height
40
- ) ,
41
- service_name : SERVICE_NAME
42
- )
43
- picture . create_image_file_attachment! (
44
- name : :image_file ,
45
- record : picture ,
46
- blob : blob
47
- )
48
- end
49
- move_file ( Rails . root . join ( "uploads/pictures" , uid ) , key )
50
- end
39
+ Alchemy ::Upgrader ::Tasks ::ActiveStorageMigration . migrate_picture ( picture )
51
40
print "."
52
41
end
53
42
end
@@ -64,26 +53,7 @@ def migrate_attachments_to_active_storage
64
53
log "Migrating #{ count } Dragonfly attachment file(s) to ActiveStorage."
65
54
realtime = Benchmark . realtime do
66
55
attachments_without_as_attachment . find_each do |attachment |
67
- Alchemy ::Deprecation . silence do
68
- uid = attachment . legacy_file_uid
69
- key = key_for_uid ( uid )
70
- Alchemy ::Attachment . transaction do
71
- blob = ActiveStorage ::Blob . create! (
72
- key : key ,
73
- filename : attachment . legacy_file_name ,
74
- byte_size : attachment . legacy_file_size ,
75
- content_type : attachment . file_mime_type . presence || DEFAULT_CONTENT_TYPE ,
76
- metadata : METADATA ,
77
- service_name : SERVICE_NAME
78
- )
79
- attachment . create_file_attachment! (
80
- record : attachment ,
81
- name : :file ,
82
- blob : blob
83
- )
84
- end
85
- move_file ( Rails . root . join ( "uploads/attachments" , uid ) , key )
86
- end
56
+ Alchemy ::Upgrader ::Tasks ::ActiveStorageMigration . migrate_attachment ( attachment )
87
57
print "."
88
58
end
89
59
end
@@ -95,31 +65,8 @@ def migrate_attachments_to_active_storage
95
65
96
66
private
97
67
98
- # ActiveStorage::Service::DiskService stores files in a folder structure
99
- # based on the first two characters of the file uid.
100
- def key_for_uid ( uid )
101
- case service
102
- when DISK_SERVICE
103
- uid . split ( "/" ) . last
104
- else
105
- uid
106
- end
107
- end
108
-
109
- # ActiveStorage::Service::DiskService stores files in a folder structure
110
- # based on the first two characters of the file uid.
111
- def move_file ( uid , key )
112
- case service
113
- when DISK_SERVICE
114
- if File . exist? ( uid )
115
- service . send ( :make_path_for , key )
116
- FileUtils . mv uid , service . send ( :path_for , key )
117
- end
118
- end
119
- end
120
-
121
- def service
122
- ActiveStorage ::Blob . services . fetch ( SERVICE_NAME )
68
+ def task
69
+ @_task || new
123
70
end
124
71
end
125
72
end
0 commit comments