alchemy-dragonfly-s3 5.2.1 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -2
- data/README.md +2 -1
- data/alchemy-dragonfly-s3.gemspec +1 -1
- data/lib/alchemy/dragonfly/s3/create_picture_thumb.rb +8 -6
- data/lib/alchemy/dragonfly/s3/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8731b036311b3a669e0644fe5fd9e0301bc981bdc431c102979961aa4db3671e
|
4
|
+
data.tar.gz: dbddcab7948012fe5d9a12a140fbc203dadac20157b039d74d82d86abb3a7390
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0ca6b6a588e561c9c154853d4393e67aeaa7950810347f84d04cf3b61a6e7621c6d228c977d6bd9c3df02c07014e632fabf579392d82687828136b70cef3c75
|
7
|
+
data.tar.gz: cd8f538c29407ba748d89f6a6b71960b0e9f9812b4924a19151909b42ddad41a3ab14edb43f04b09d546bba3124ce2b4f9c152112f599bcadf04320ce0f52eaa
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -6,8 +6,9 @@ Provides classes for storing Alchemy pictures and file attachments on Amazon AWS
|
|
6
6
|
|
7
7
|
## Alchemy Version
|
8
8
|
|
9
|
-
This branch works with Alchemy
|
9
|
+
This branch works with Alchemy 6.0 and above.
|
10
10
|
|
11
|
+
- For a Alchemy 5.2/5.3 compatible version use the `5.2-stable` branch.
|
11
12
|
- For a Alchemy 5.0 compatible version use the `alchemy-5` branch.
|
12
13
|
- For a Alchemy 4 compatible version use the `alchemy-4` branch.
|
13
14
|
- For a Alchemy 3 compatible version use the `alchemy-3` branch.
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
|
|
24
24
|
"README.md",
|
25
25
|
]
|
26
26
|
|
27
|
-
s.add_dependency "alchemy_cms", [">=
|
27
|
+
s.add_dependency "alchemy_cms", [">= 6.0.0", "< 7"]
|
28
28
|
s.add_dependency "dragonfly-s3_data_store", "~> 1.3"
|
29
29
|
|
30
30
|
s.add_development_dependency "rspec-rails", "~> 4.0"
|
@@ -5,13 +5,15 @@ module Alchemy
|
|
5
5
|
module S3
|
6
6
|
class CreatePictureThumb
|
7
7
|
def self.call(variant, signature, uid)
|
8
|
-
return if !variant.picture.valid?
|
9
|
-
|
10
8
|
# create the thumb before uploading
|
11
9
|
# to prevent db race conditions
|
12
|
-
|
13
|
-
|
14
|
-
thumb
|
10
|
+
thumb = nil
|
11
|
+
if variant.picture.valid?
|
12
|
+
thumb = Alchemy::PictureThumb.create!(
|
13
|
+
picture: variant.picture,
|
14
|
+
signature: signature,
|
15
|
+
uid: uid,
|
16
|
+
)
|
15
17
|
end
|
16
18
|
begin
|
17
19
|
# fetch and process the image
|
@@ -21,7 +23,7 @@ module Alchemy
|
|
21
23
|
rescue RuntimeError, Excon::Error => e
|
22
24
|
ErrorTracking.notification_handler.call(e)
|
23
25
|
# destroy the thumb if processing or upload fails
|
24
|
-
|
26
|
+
thumb&.destroy
|
25
27
|
end
|
26
28
|
end
|
27
29
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alchemy-dragonfly-s3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas von Deyen
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-01-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: alchemy_cms
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.0.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '
|
22
|
+
version: '7'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 6.0.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '
|
32
|
+
version: '7'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: dragonfly-s3_data_store
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|