Open marckohlbrugge opened 9 months ago
Hi @marckohlbrugge
I read your issue, tried to explore it a bit, this one is not an easy one and requires further knowledge in ActiveStorage
that I currently do not have. I'll explore the ActiveStorage
API in the coming days to be able to offer a right approach.
Maybe @igorkasyanchuk can help you on that one? But unsure since he is quite busy these days.
Do you have the ability + time to make a PR on that topic?
I recently started encountering this issue as well after a routine Rails update.
@northeastprince could you tell us which version of Rails did you update from/to?
Hi @marckohlbrugge (again !),
I think that we could handle this case soon. I am currently refactoring the metadata.rb
file into several pieces following Rails ActiveStorage::Analyzer
files (see example for ImageMagick here: https://github.com/rails/rails/blob/main/activestorage/lib/active_storage/analyzer/image_analyzer/image_magick.rb).
Then I can add the corresponding tests to your case. IMO it should work because we will pass an attachable
to the analyzer (instead of a blob
for Rails analyzers), therefore we will have access to its io
.
I use the following to allow attaching of remote files:
This allows me to do things like:
This works as expected, but
active_storage_validations 1.1.4
does not seem compatible with this approach.The reason is that the above won't upload the photos to the cloud storage provider yet. So when we call
gallery.save!
and it runs the validations, we get anActiveStorage::FileNotFoundError (ActiveStorage::FileNotFoundError)
error inactivestorage-7.1.3/lib/active_storage/service/s3_service.rb:159:in stream: ActiveStorage::FileNotFoundError
After a little digging, I found out the reason for this:
https://github.com/igorkasyanchuk/active_storage_validations/blob/dd835e65283ac93607c1194d0a3541e30741978f/lib/active_storage_validations/metadata.rb#L74-L84
This code assumes the
blob
is already saved and uploaded. However, with the above code example, the blob will not be persisted yet. Soblob.id
will benil
andblob.download
raises the exception.Here's a relevant code comment from activestorage/lib/active_storage/attached/many.rb and activestorage/lib/active_storage/attached/one.rb's
attach(…)
methods:So it seems to be that approach from my
ActiveStorage::RemoteURLHelper
mixin is indeed a valid use of the ActiveStorage API's, butactive_storage_validations
is currently incompatible with the scenario where the blobs aren't persisted yet.Unfortunately, I don't see an easy solution as
ActiveStorageValidations::Metadata
is only passed the file (a blob in this case), and an unsaved blob, as far as I know, does have no knowledge of itsio
as that's typically passed in externally right before it gets uploaded.The proper approach might be to not pass the blob, but the
ActiveStorage::Attached::One
/ActiveStorage::Attached::Many
instead.