activestorage 6.1.7 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of activestorage might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +153 -257
- data/MIT-LICENSE +1 -1
- data/README.md +25 -11
- data/app/assets/javascripts/activestorage.esm.js +856 -0
- data/app/assets/javascripts/activestorage.js +270 -377
- data/app/controllers/active_storage/base_controller.rb +1 -10
- data/app/controllers/active_storage/blobs/proxy_controller.rb +14 -4
- data/app/controllers/active_storage/blobs/redirect_controller.rb +6 -4
- data/app/controllers/active_storage/direct_uploads_controller.rb +7 -1
- data/app/controllers/active_storage/disk_controller.rb +1 -0
- data/app/controllers/active_storage/representations/base_controller.rb +5 -1
- data/app/controllers/active_storage/representations/proxy_controller.rb +6 -4
- data/app/controllers/active_storage/representations/redirect_controller.rb +6 -4
- data/app/controllers/concerns/active_storage/set_blob.rb +6 -2
- data/app/controllers/concerns/active_storage/set_current.rb +3 -3
- data/app/controllers/concerns/active_storage/streaming.rb +65 -0
- data/app/javascript/activestorage/blob_record.js +10 -3
- data/app/javascript/activestorage/direct_upload.js +4 -2
- data/app/javascript/activestorage/direct_upload_controller.js +9 -1
- data/app/javascript/activestorage/ujs.js +1 -1
- data/app/models/active_storage/attachment.rb +35 -2
- data/app/models/active_storage/blob/representable.rb +7 -5
- data/app/models/active_storage/blob.rb +92 -36
- data/app/models/active_storage/current.rb +12 -2
- data/app/models/active_storage/preview.rb +6 -4
- data/app/models/active_storage/record.rb +1 -1
- data/app/models/active_storage/variant.rb +6 -9
- data/app/models/active_storage/variant_record.rb +2 -0
- data/app/models/active_storage/variant_with_record.rb +9 -5
- data/app/models/active_storage/variation.rb +3 -3
- data/config/routes.rb +10 -10
- data/db/migrate/20170806125915_create_active_storage_tables.rb +14 -5
- data/db/update_migrate/20190112182829_add_service_name_to_active_storage_blobs.rb +0 -4
- data/db/update_migrate/20191206030411_create_active_storage_variant_records.rb +0 -2
- data/db/update_migrate/20211119233751_remove_not_null_on_active_storage_blobs_checksum.rb +5 -0
- data/lib/active_storage/analyzer/audio_analyzer.rb +65 -0
- data/lib/active_storage/analyzer/image_analyzer/image_magick.rb +39 -0
- data/lib/active_storage/analyzer/image_analyzer/vips.rb +49 -0
- data/lib/active_storage/analyzer/image_analyzer.rb +2 -30
- data/lib/active_storage/analyzer/video_analyzer.rb +26 -11
- data/lib/active_storage/analyzer.rb +8 -4
- data/lib/active_storage/attached/changes/create_many.rb +7 -3
- data/lib/active_storage/attached/changes/create_one.rb +1 -1
- data/lib/active_storage/attached/changes/create_one_of_many.rb +1 -1
- data/lib/active_storage/attached/changes/delete_many.rb +1 -1
- data/lib/active_storage/attached/changes/delete_one.rb +1 -1
- data/lib/active_storage/attached/changes/detach_many.rb +18 -0
- data/lib/active_storage/attached/changes/detach_one.rb +24 -0
- data/lib/active_storage/attached/changes/purge_many.rb +27 -0
- data/lib/active_storage/attached/changes/purge_one.rb +27 -0
- data/lib/active_storage/attached/changes.rb +7 -1
- data/lib/active_storage/attached/many.rb +27 -15
- data/lib/active_storage/attached/model.rb +35 -7
- data/lib/active_storage/attached/one.rb +32 -27
- data/lib/active_storage/direct_upload_token.rb +59 -0
- data/lib/active_storage/downloader.rb +4 -4
- data/lib/active_storage/engine.rb +42 -16
- data/lib/active_storage/errors.rb +3 -0
- data/lib/active_storage/fixture_set.rb +76 -0
- data/lib/active_storage/gem_version.rb +3 -3
- data/lib/active_storage/previewer/video_previewer.rb +0 -2
- data/lib/active_storage/previewer.rb +4 -4
- data/lib/active_storage/reflection.rb +12 -2
- data/lib/active_storage/service/azure_storage_service.rb +28 -6
- data/lib/active_storage/service/configurator.rb +1 -1
- data/lib/active_storage/service/disk_service.rb +24 -19
- data/lib/active_storage/service/gcs_service.rb +109 -11
- data/lib/active_storage/service/mirror_service.rb +2 -2
- data/lib/active_storage/service/registry.rb +1 -1
- data/lib/active_storage/service/s3_service.rb +37 -15
- data/lib/active_storage/service.rb +13 -5
- data/lib/active_storage/transformers/image_processing_transformer.rb +1 -66
- data/lib/active_storage/transformers/transformer.rb +1 -1
- data/lib/active_storage.rb +6 -292
- metadata +30 -19
- data/app/controllers/concerns/active_storage/set_headers.rb +0 -12
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveStorage
|
4
|
+
# This analyzer relies on the third-party {MiniMagick}[https://github.com/minimagick/minimagick] gem. MiniMagick requires
|
5
|
+
# the {ImageMagick}[http://www.imagemagick.org] system library.
|
6
|
+
class Analyzer::ImageAnalyzer::ImageMagick < Analyzer::ImageAnalyzer
|
7
|
+
def self.accept?(blob)
|
8
|
+
super && ActiveStorage.variant_processor == :mini_magick
|
9
|
+
end
|
10
|
+
|
11
|
+
private
|
12
|
+
def read_image
|
13
|
+
download_blob_to_tempfile do |file|
|
14
|
+
require "mini_magick"
|
15
|
+
|
16
|
+
image = instrument("mini_magick") do
|
17
|
+
MiniMagick::Image.new(file.path)
|
18
|
+
end
|
19
|
+
|
20
|
+
if image.valid?
|
21
|
+
yield image
|
22
|
+
else
|
23
|
+
logger.info "Skipping image analysis because ImageMagick doesn't support the file"
|
24
|
+
{}
|
25
|
+
end
|
26
|
+
end
|
27
|
+
rescue LoadError
|
28
|
+
logger.info "Skipping image analysis because the mini_magick gem isn't installed"
|
29
|
+
{}
|
30
|
+
rescue MiniMagick::Error => error
|
31
|
+
logger.error "Skipping image analysis due to an ImageMagick error: #{error.message}"
|
32
|
+
{}
|
33
|
+
end
|
34
|
+
|
35
|
+
def rotated_image?(image)
|
36
|
+
%w[ RightTop LeftBottom TopRight BottomLeft ].include?(image["%[orientation]"])
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveStorage
|
4
|
+
# This analyzer relies on the third-party {ruby-vips}[https://github.com/libvips/ruby-vips] gem. Ruby-vips requires
|
5
|
+
# the {libvips}[https://libvips.github.io/libvips/] system library.
|
6
|
+
class Analyzer::ImageAnalyzer::Vips < Analyzer::ImageAnalyzer
|
7
|
+
def self.accept?(blob)
|
8
|
+
super && ActiveStorage.variant_processor == :vips
|
9
|
+
end
|
10
|
+
|
11
|
+
private
|
12
|
+
def read_image
|
13
|
+
download_blob_to_tempfile do |file|
|
14
|
+
require "ruby-vips"
|
15
|
+
|
16
|
+
image = instrument("vips") do
|
17
|
+
::Vips::Image.new_from_file(file.path, access: :sequential)
|
18
|
+
end
|
19
|
+
|
20
|
+
if valid_image?(image)
|
21
|
+
yield image
|
22
|
+
else
|
23
|
+
logger.info "Skipping image analysis because Vips doesn't support the file"
|
24
|
+
{}
|
25
|
+
end
|
26
|
+
end
|
27
|
+
rescue LoadError
|
28
|
+
logger.info "Skipping image analysis because the ruby-vips gem isn't installed"
|
29
|
+
{}
|
30
|
+
rescue ::Vips::Error => error
|
31
|
+
logger.error "Skipping image analysis due to an Vips error: #{error.message}"
|
32
|
+
{}
|
33
|
+
end
|
34
|
+
|
35
|
+
ROTATIONS = /Right-top|Left-bottom|Top-right|Bottom-left/
|
36
|
+
def rotated_image?(image)
|
37
|
+
ROTATIONS === image.get("exif-ifd0-Orientation")
|
38
|
+
rescue ::Vips::Error
|
39
|
+
false
|
40
|
+
end
|
41
|
+
|
42
|
+
def valid_image?(image)
|
43
|
+
image.avg
|
44
|
+
true
|
45
|
+
rescue ::Vips::Error
|
46
|
+
false
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -1,17 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ActiveStorage
|
4
|
-
#
|
4
|
+
# This is an abstract base class for image analyzers, which extract width and height from an image blob.
|
5
5
|
#
|
6
6
|
# If the image contains EXIF data indicating its angle is 90 or 270 degrees, its width and height are swapped for convenience.
|
7
7
|
#
|
8
8
|
# Example:
|
9
9
|
#
|
10
|
-
# ActiveStorage::Analyzer::ImageAnalyzer.new(blob).metadata
|
10
|
+
# ActiveStorage::Analyzer::ImageAnalyzer::ImageMagick.new(blob).metadata
|
11
11
|
# # => { width: 4104, height: 2736 }
|
12
|
-
#
|
13
|
-
# This analyzer relies on the third-party {MiniMagick}[https://github.com/minimagick/minimagick] gem. MiniMagick requires
|
14
|
-
# the {ImageMagick}[http://www.imagemagick.org] system library.
|
15
12
|
class Analyzer::ImageAnalyzer < Analyzer
|
16
13
|
def self.accept?(blob)
|
17
14
|
blob.image?
|
@@ -26,30 +23,5 @@ module ActiveStorage
|
|
26
23
|
end
|
27
24
|
end
|
28
25
|
end
|
29
|
-
|
30
|
-
private
|
31
|
-
def read_image
|
32
|
-
download_blob_to_tempfile do |file|
|
33
|
-
require "mini_magick"
|
34
|
-
image = MiniMagick::Image.new(file.path)
|
35
|
-
|
36
|
-
if image.valid?
|
37
|
-
yield image
|
38
|
-
else
|
39
|
-
logger.info "Skipping image analysis because ImageMagick doesn't support the file"
|
40
|
-
{}
|
41
|
-
end
|
42
|
-
end
|
43
|
-
rescue LoadError
|
44
|
-
logger.info "Skipping image analysis because the mini_magick gem isn't installed"
|
45
|
-
{}
|
46
|
-
rescue MiniMagick::Error => error
|
47
|
-
logger.error "Skipping image analysis due to an ImageMagick error: #{error.message}"
|
48
|
-
{}
|
49
|
-
end
|
50
|
-
|
51
|
-
def rotated_image?(image)
|
52
|
-
%w[ RightTop LeftBottom ].include?(image["%[orientation]"])
|
53
|
-
end
|
54
26
|
end
|
55
27
|
end
|
@@ -8,11 +8,13 @@ module ActiveStorage
|
|
8
8
|
# * Duration (seconds)
|
9
9
|
# * Angle (degrees)
|
10
10
|
# * Display aspect ratio
|
11
|
+
# * Audio (true if file has an audio channel, false if not)
|
12
|
+
# * Video (true if file has an video channel, false if not)
|
11
13
|
#
|
12
14
|
# Example:
|
13
15
|
#
|
14
16
|
# ActiveStorage::Analyzer::VideoAnalyzer.new(blob).metadata
|
15
|
-
# # => { width: 640.0, height: 480.0, duration: 5.0, angle: 0, display_aspect_ratio: [4, 3] }
|
17
|
+
# # => { width: 640.0, height: 480.0, duration: 5.0, angle: 0, display_aspect_ratio: [4, 3], audio: true, video: true }
|
16
18
|
#
|
17
19
|
# When a video's angle is 90 or 270 degrees, its width and height are automatically swapped for convenience.
|
18
20
|
#
|
@@ -23,7 +25,7 @@ module ActiveStorage
|
|
23
25
|
end
|
24
26
|
|
25
27
|
def metadata
|
26
|
-
{ width: width, height: height, duration: duration, angle: angle, display_aspect_ratio: display_aspect_ratio }.compact
|
28
|
+
{ width: width, height: height, duration: duration, angle: angle, display_aspect_ratio: display_aspect_ratio, audio: audio?, video: video? }.compact
|
27
29
|
end
|
28
30
|
|
29
31
|
private
|
@@ -63,11 +65,18 @@ module ActiveStorage
|
|
63
65
|
end
|
64
66
|
end
|
65
67
|
|
66
|
-
|
67
68
|
def rotated?
|
68
69
|
angle == 90 || angle == 270
|
69
70
|
end
|
70
71
|
|
72
|
+
def audio?
|
73
|
+
audio_stream.present?
|
74
|
+
end
|
75
|
+
|
76
|
+
def video?
|
77
|
+
video_stream.present?
|
78
|
+
end
|
79
|
+
|
71
80
|
def computed_height
|
72
81
|
if encoded_width && display_height_scale
|
73
82
|
encoded_width * display_height_scale
|
@@ -95,6 +104,10 @@ module ActiveStorage
|
|
95
104
|
@video_stream ||= streams.detect { |stream| stream["codec_type"] == "video" } || {}
|
96
105
|
end
|
97
106
|
|
107
|
+
def audio_stream
|
108
|
+
@audio_stream ||= streams.detect { |stream| stream["codec_type"] == "audio" } || {}
|
109
|
+
end
|
110
|
+
|
98
111
|
def streams
|
99
112
|
probe["streams"] || []
|
100
113
|
end
|
@@ -108,14 +121,16 @@ module ActiveStorage
|
|
108
121
|
end
|
109
122
|
|
110
123
|
def probe_from(file)
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
124
|
+
instrument(File.basename(ffprobe_path)) do
|
125
|
+
IO.popen([ ffprobe_path,
|
126
|
+
"-print_format", "json",
|
127
|
+
"-show_streams",
|
128
|
+
"-show_format",
|
129
|
+
"-v", "error",
|
130
|
+
file.path
|
131
|
+
]) do |output|
|
132
|
+
JSON.parse(output.read)
|
133
|
+
end
|
119
134
|
end
|
120
135
|
rescue Errno::ENOENT
|
121
136
|
logger.info "Skipping video analysis because FFmpeg isn't installed"
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
module ActiveStorage
|
4
4
|
# This is an abstract base class for analyzers, which extract metadata from blobs. See
|
5
|
-
# ActiveStorage::Analyzer::
|
5
|
+
# ActiveStorage::Analyzer::VideoAnalyzer for an example of a concrete subclass.
|
6
6
|
class Analyzer
|
7
7
|
attr_reader :blob
|
8
8
|
|
@@ -29,16 +29,20 @@ module ActiveStorage
|
|
29
29
|
|
30
30
|
private
|
31
31
|
# Downloads the blob to a tempfile on disk. Yields the tempfile.
|
32
|
-
def download_blob_to_tempfile(&block)
|
32
|
+
def download_blob_to_tempfile(&block) # :doc:
|
33
33
|
blob.open tmpdir: tmpdir, &block
|
34
34
|
end
|
35
35
|
|
36
|
-
def logger
|
36
|
+
def logger # :doc:
|
37
37
|
ActiveStorage.logger
|
38
38
|
end
|
39
39
|
|
40
|
-
def tmpdir
|
40
|
+
def tmpdir # :doc:
|
41
41
|
Dir.tmpdir
|
42
42
|
end
|
43
|
+
|
44
|
+
def instrument(analyzer, &block) # :doc:
|
45
|
+
ActiveSupport::Notifications.instrument("analyze.active_storage", analyzer: analyzer, &block)
|
46
|
+
end
|
43
47
|
end
|
44
48
|
end
|
@@ -1,12 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ActiveStorage
|
4
|
-
class Attached::Changes::CreateMany
|
4
|
+
class Attached::Changes::CreateMany # :nodoc:
|
5
5
|
attr_reader :name, :record, :attachables
|
6
6
|
|
7
7
|
def initialize(name, record, attachables)
|
8
8
|
@name, @record, @attachables = name, record, Array(attachables)
|
9
9
|
blobs.each(&:identify_without_saving)
|
10
|
+
attachments
|
10
11
|
end
|
11
12
|
|
12
13
|
def attachments
|
@@ -35,13 +36,16 @@ module ActiveStorage
|
|
35
36
|
ActiveStorage::Attached::Changes::CreateOneOfMany.new(name, record, attachable)
|
36
37
|
end
|
37
38
|
|
38
|
-
|
39
39
|
def assign_associated_attachments
|
40
|
-
record.public_send("#{name}_attachments=",
|
40
|
+
record.public_send("#{name}_attachments=", persisted_or_new_attachments)
|
41
41
|
end
|
42
42
|
|
43
43
|
def reset_associated_blobs
|
44
44
|
record.public_send("#{name}_blobs").reset
|
45
45
|
end
|
46
|
+
|
47
|
+
def persisted_or_new_attachments
|
48
|
+
attachments.select { |attachment| attachment.persisted? || attachment.new_record? }
|
49
|
+
end
|
46
50
|
end
|
47
51
|
end
|
@@ -4,7 +4,7 @@ require "action_dispatch"
|
|
4
4
|
require "action_dispatch/http/upload"
|
5
5
|
|
6
6
|
module ActiveStorage
|
7
|
-
class Attached::Changes::CreateOne
|
7
|
+
class Attached::Changes::CreateOne # :nodoc:
|
8
8
|
attr_reader :name, :record, :attachable
|
9
9
|
|
10
10
|
def initialize(name, record, attachable)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ActiveStorage
|
4
|
-
class Attached::Changes::CreateOneOfMany < Attached::Changes::CreateOne
|
4
|
+
class Attached::Changes::CreateOneOfMany < Attached::Changes::CreateOne # :nodoc:
|
5
5
|
private
|
6
6
|
def find_attachment
|
7
7
|
record.public_send("#{name}_attachments").detect { |attachment| attachment.blob_id == blob.id }
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveStorage
|
4
|
+
class Attached::Changes::DetachMany # :nodoc:
|
5
|
+
attr_reader :name, :record, :attachments
|
6
|
+
|
7
|
+
def initialize(name, record, attachments)
|
8
|
+
@name, @record, @attachments = name, record, attachments
|
9
|
+
end
|
10
|
+
|
11
|
+
def detach
|
12
|
+
if attachments.any?
|
13
|
+
attachments.delete_all if attachments.respond_to?(:delete_all)
|
14
|
+
record.attachment_changes.delete(name)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveStorage
|
4
|
+
class Attached::Changes::DetachOne # :nodoc:
|
5
|
+
attr_reader :name, :record, :attachment
|
6
|
+
|
7
|
+
def initialize(name, record, attachment)
|
8
|
+
@name, @record, @attachment = name, record, attachment
|
9
|
+
end
|
10
|
+
|
11
|
+
def detach
|
12
|
+
if attachment.present?
|
13
|
+
attachment.delete
|
14
|
+
reset
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
private
|
19
|
+
def reset
|
20
|
+
record.attachment_changes.delete(name)
|
21
|
+
record.public_send("#{name}_attachment=", nil)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveStorage
|
4
|
+
class Attached::Changes::PurgeMany # :nodoc:
|
5
|
+
attr_reader :name, :record, :attachments
|
6
|
+
|
7
|
+
def initialize(name, record, attachments)
|
8
|
+
@name, @record, @attachments = name, record, attachments
|
9
|
+
end
|
10
|
+
|
11
|
+
def purge
|
12
|
+
attachments.each(&:purge)
|
13
|
+
reset
|
14
|
+
end
|
15
|
+
|
16
|
+
def purge_later
|
17
|
+
attachments.each(&:purge_later)
|
18
|
+
reset
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
def reset
|
23
|
+
record.attachment_changes.delete(name)
|
24
|
+
record.public_send("#{name}_attachments").reset
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveStorage
|
4
|
+
class Attached::Changes::PurgeOne # :nodoc:
|
5
|
+
attr_reader :name, :record, :attachment
|
6
|
+
|
7
|
+
def initialize(name, record, attachment)
|
8
|
+
@name, @record, @attachment = name, record, attachment
|
9
|
+
end
|
10
|
+
|
11
|
+
def purge
|
12
|
+
attachment&.purge
|
13
|
+
reset
|
14
|
+
end
|
15
|
+
|
16
|
+
def purge_later
|
17
|
+
attachment&.purge_later
|
18
|
+
reset
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
def reset
|
23
|
+
record.attachment_changes.delete(name)
|
24
|
+
record.public_send("#{name}_attachment=", nil)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module ActiveStorage
|
4
|
-
module Attached::Changes
|
4
|
+
module Attached::Changes # :nodoc:
|
5
5
|
extend ActiveSupport::Autoload
|
6
6
|
|
7
7
|
eager_autoload do
|
@@ -11,6 +11,12 @@ module ActiveStorage
|
|
11
11
|
|
12
12
|
autoload :DeleteOne
|
13
13
|
autoload :DeleteMany
|
14
|
+
|
15
|
+
autoload :DetachOne
|
16
|
+
autoload :DetachMany
|
17
|
+
|
18
|
+
autoload :PurgeOne
|
19
|
+
autoload :PurgeMany
|
14
20
|
end
|
15
21
|
end
|
16
22
|
end
|
@@ -3,6 +3,25 @@
|
|
3
3
|
module ActiveStorage
|
4
4
|
# Decorated proxy object representing of multiple attachments to a model.
|
5
5
|
class Attached::Many < Attached
|
6
|
+
##
|
7
|
+
# :method: purge
|
8
|
+
#
|
9
|
+
# Directly purges each associated attachment (i.e. destroys the blobs and
|
10
|
+
# attachments and deletes the files on the service).
|
11
|
+
delegate :purge, to: :purge_many
|
12
|
+
|
13
|
+
##
|
14
|
+
# :method: purge_later
|
15
|
+
#
|
16
|
+
# Purges each associated attachment through the queuing system.
|
17
|
+
delegate :purge_later, to: :purge_many
|
18
|
+
|
19
|
+
##
|
20
|
+
# :method: detach
|
21
|
+
#
|
22
|
+
# Deletes associated attachments without purging them, leaving their respective blobs in place.
|
23
|
+
delegate :detach, to: :detach_many
|
24
|
+
|
6
25
|
delegate_missing_to :attachments
|
7
26
|
|
8
27
|
# Returns all the associated attachment records.
|
@@ -25,7 +44,7 @@ module ActiveStorage
|
|
25
44
|
#
|
26
45
|
# document.images.attach(params[:images]) # Array of ActionDispatch::Http::UploadedFile objects
|
27
46
|
# document.images.attach(params[:signed_blob_id]) # Signed reference to blob from direct upload
|
28
|
-
# document.images.attach(io: File.open("/path/to/racecar.jpg"), filename: "racecar.jpg", content_type: "image/
|
47
|
+
# document.images.attach(io: File.open("/path/to/racecar.jpg"), filename: "racecar.jpg", content_type: "image/jpeg")
|
29
48
|
# document.images.attach([ first_blob, second_blob ])
|
30
49
|
def attach(*attachables)
|
31
50
|
if record.persisted? && !record.changed?
|
@@ -47,20 +66,13 @@ module ActiveStorage
|
|
47
66
|
attachments.any?
|
48
67
|
end
|
49
68
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
##
|
56
|
-
# :method: purge
|
57
|
-
#
|
58
|
-
# Directly purges each associated attachment (i.e. destroys the blobs and
|
59
|
-
# attachments and deletes the files on the service).
|
69
|
+
private
|
70
|
+
def purge_many
|
71
|
+
Attached::Changes::PurgeMany.new(name, record, attachments)
|
72
|
+
end
|
60
73
|
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
# Purges each associated attachment through the queuing system.
|
74
|
+
def detach_many
|
75
|
+
Attached::Changes::DetachMany.new(name, record, attachments)
|
76
|
+
end
|
65
77
|
end
|
66
78
|
end
|
@@ -83,6 +83,7 @@ module ActiveStorage
|
|
83
83
|
{ dependent: dependent, service_name: service },
|
84
84
|
self
|
85
85
|
)
|
86
|
+
yield reflection if block_given?
|
86
87
|
ActiveRecord::Reflection.add_attachment_reflection(self, name, reflection)
|
87
88
|
end
|
88
89
|
|
@@ -136,15 +137,23 @@ module ActiveStorage
|
|
136
137
|
end
|
137
138
|
|
138
139
|
def #{name}=(attachables)
|
140
|
+
attachables = Array(attachables).compact_blank
|
141
|
+
|
139
142
|
if ActiveStorage.replace_on_assign_to_many
|
140
143
|
attachment_changes["#{name}"] =
|
141
|
-
if
|
144
|
+
if attachables.none?
|
142
145
|
ActiveStorage::Attached::Changes::DeleteMany.new("#{name}", self)
|
143
146
|
else
|
144
147
|
ActiveStorage::Attached::Changes::CreateMany.new("#{name}", self, attachables)
|
145
148
|
end
|
146
149
|
else
|
147
|
-
|
150
|
+
ActiveSupport::Deprecation.warn \
|
151
|
+
"config.active_storage.replace_on_assign_to_many is deprecated and will be removed in Rails 7.1. " \
|
152
|
+
"Make sure that your code works well with config.active_storage.replace_on_assign_to_many set to true before upgrading. " \
|
153
|
+
"To append new attachables to the Active Storage association, prefer using `attach`. " \
|
154
|
+
"Using association setter would result in purging the existing attached attachments and replacing them with new ones."
|
155
|
+
|
156
|
+
if attachables.any?
|
148
157
|
attachment_changes["#{name}"] =
|
149
158
|
ActiveStorage::Attached::Changes::CreateMany.new("#{name}", self, #{name}.blobs + attachables)
|
150
159
|
end
|
@@ -154,18 +163,36 @@ module ActiveStorage
|
|
154
163
|
|
155
164
|
has_many :"#{name}_attachments", -> { where(name: name) }, as: :record, class_name: "ActiveStorage::Attachment", inverse_of: :record, dependent: :destroy, strict_loading: strict_loading do
|
156
165
|
def purge
|
166
|
+
deprecate(:purge)
|
157
167
|
each(&:purge)
|
158
168
|
reset
|
159
169
|
end
|
160
170
|
|
161
171
|
def purge_later
|
172
|
+
deprecate(:purge_later)
|
162
173
|
each(&:purge_later)
|
163
174
|
reset
|
164
175
|
end
|
176
|
+
|
177
|
+
private
|
178
|
+
def deprecate(action)
|
179
|
+
reflection_name = proxy_association.reflection.name
|
180
|
+
attached_name = reflection_name.to_s.partition("_").first
|
181
|
+
ActiveSupport::Deprecation.warn(<<-MSG.squish)
|
182
|
+
Calling `#{action}` from `#{reflection_name}` is deprecated and will be removed in Rails 7.1.
|
183
|
+
To migrate to Rails 7.1's behavior call `#{action}` from `#{attached_name}` instead: `#{attached_name}.#{action}`.
|
184
|
+
MSG
|
185
|
+
end
|
165
186
|
end
|
166
187
|
has_many :"#{name}_blobs", through: :"#{name}_attachments", class_name: "ActiveStorage::Blob", source: :blob, strict_loading: strict_loading
|
167
188
|
|
168
|
-
scope :"with_attached_#{name}", -> {
|
189
|
+
scope :"with_attached_#{name}", -> {
|
190
|
+
if ActiveStorage.track_variants
|
191
|
+
includes("#{name}_attachments": { blob: :variant_records })
|
192
|
+
else
|
193
|
+
includes("#{name}_attachments": :blob)
|
194
|
+
end
|
195
|
+
}
|
169
196
|
|
170
197
|
after_save { attachment_changes[name.to_s]&.save }
|
171
198
|
|
@@ -178,6 +205,7 @@ module ActiveStorage
|
|
178
205
|
{ dependent: dependent, service_name: service },
|
179
206
|
self
|
180
207
|
)
|
208
|
+
yield reflection if block_given?
|
181
209
|
ActiveRecord::Reflection.add_attachment_reflection(self, name, reflection)
|
182
210
|
end
|
183
211
|
|
@@ -191,21 +219,21 @@ module ActiveStorage
|
|
191
219
|
end
|
192
220
|
end
|
193
221
|
|
194
|
-
def attachment_changes
|
222
|
+
def attachment_changes # :nodoc:
|
195
223
|
@attachment_changes ||= {}
|
196
224
|
end
|
197
225
|
|
198
|
-
def changed_for_autosave?
|
226
|
+
def changed_for_autosave? # :nodoc:
|
199
227
|
super || attachment_changes.any?
|
200
228
|
end
|
201
229
|
|
202
|
-
def initialize_dup(*)
|
230
|
+
def initialize_dup(*) # :nodoc:
|
203
231
|
super
|
204
232
|
@active_storage_attached = nil
|
205
233
|
@attachment_changes = nil
|
206
234
|
end
|
207
235
|
|
208
|
-
def reload(*)
|
236
|
+
def reload(*) # :nodoc:
|
209
237
|
super.tap { @attachment_changes = nil }
|
210
238
|
end
|
211
239
|
end
|