@@ -28,17 +28,6 @@ class Picture < BaseRecord
28
28
large : "240x180"
29
29
} . with_indifferent_access . freeze
30
30
31
- TRANSFORMATION_OPTIONS = [
32
- :crop ,
33
- :crop_from ,
34
- :crop_size ,
35
- :flatten ,
36
- :format ,
37
- :quality ,
38
- :size ,
39
- :upsample
40
- ]
41
-
42
31
include Alchemy ::Logger
43
32
include Alchemy ::NameConversions
44
33
include Alchemy ::Taggable
@@ -68,7 +57,7 @@ class Picture < BaseRecord
68
57
69
58
# Image preprocessing class
70
59
def self . preprocessor_class
71
- @_preprocessor_class ||= Preprocessor
60
+ @_preprocessor_class ||= Alchemy . storage_adapter . preprocessor_class
72
61
end
73
62
74
63
# Set a image preprocessing class
@@ -80,31 +69,7 @@ def self.preprocessor_class=(klass)
80
69
@_preprocessor_class = klass
81
70
end
82
71
83
- attr_readonly (
84
- :legacy_image_file_format ,
85
- :legacy_image_file_height ,
86
- :legacy_image_file_name ,
87
- :legacy_image_file_size ,
88
- :legacy_image_file_uid ,
89
- :legacy_image_file_width
90
- )
91
-
92
- deprecate (
93
- :legacy_image_file_format ,
94
- :legacy_image_file_height ,
95
- :legacy_image_file_name ,
96
- :legacy_image_file_size ,
97
- :legacy_image_file_uid ,
98
- :legacy_image_file_width ,
99
- deprecator : Alchemy ::Deprecation
100
- )
101
-
102
- # Use ActiveStorage image processing
103
- has_one_attached :image_file do |attachable |
104
- # Only works in Rails 7.1
105
- preprocessor_class . new ( attachable ) . call
106
- Preprocessor . generate_thumbs! ( attachable )
107
- end
72
+ include Alchemy . storage_adapter . picture_class_methods
108
73
109
74
validates_presence_of :image_file
110
75
validate :image_file_type_allowed , :image_file_not_too_big ,
@@ -131,7 +96,7 @@ class << self
131
96
#
132
97
# @see Alchemy::Picture::Url
133
98
def url_class
134
- @_url_class ||= Alchemy :: Picture :: Url
99
+ @_url_class ||= Alchemy . storage_adapter . url_class
135
100
end
136
101
137
102
# Set a different picture url class
@@ -177,9 +142,7 @@ def last_upload
177
142
private
178
143
179
144
def file_formats
180
- ActiveStorage ::Blob . joins ( :attachments ) . merge (
181
- ActiveStorage ::Attachment . where ( record_type : name )
182
- ) . distinct . pluck ( :content_type )
145
+ Alchemy . storage_adapter . picture_file_formats
183
146
end
184
147
end
185
148
@@ -196,7 +159,7 @@ def url(options = {})
196
159
return unless image_file
197
160
198
161
self . class . url_class . new ( self ) . call ( options )
199
- rescue :: ActiveStorage :: Error => e
162
+ rescue Alchemy . storage_adapter . rescuable_errors => e
200
163
log_warning ( e . message )
201
164
nil
202
165
end
@@ -280,7 +243,7 @@ def convertible?
280
243
# Returns true if the image can be converted into other formats
281
244
#
282
245
def has_convertible_format?
283
- image_file &. variable?
246
+ Alchemy . storage_adapter . has_convertible_format? ( self )
284
247
end
285
248
286
249
# Checks if the picture is restricted.
@@ -302,27 +265,27 @@ def deletable?
302
265
end
303
266
304
267
def image_file_name
305
- image_file &. filename &. to_s
268
+ Alchemy . storage_adapter . image_file_name ( self )
306
269
end
307
270
308
271
def image_file_format
309
- image_file &. content_type
272
+ Alchemy . storage_adapter . image_file_format ( self )
310
273
end
311
274
312
275
def image_file_size
313
- image_file &. byte_size
276
+ Alchemy . storage_adapter . image_file_size ( self )
314
277
end
315
278
316
279
def image_file_width
317
- image_file &. metadata &. fetch ( :width , nil )
280
+ Alchemy . storage_adapter . image_file_width ( self )
318
281
end
319
282
320
283
def image_file_height
321
- image_file &. metadata &. fetch ( :height , nil )
284
+ Alchemy . storage_adapter . image_file_height ( self )
322
285
end
323
286
324
287
def image_file_extension
325
- image_file &. filename &. extension &. downcase
288
+ Alchemy . storage_adapter . image_file_extension ( self )
326
289
end
327
290
328
291
alias_method :suffix , :image_file_extension
0 commit comments