active_shrine 0.3.4 → 0.5.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 197975739ca00f2daa4c862413a372ee52ce634c308b6f5784d2b588d4f4e498
|
4
|
+
data.tar.gz: 5d6119a5f5d32d54a79adff404fce302c2aa170b0b62edb09486b6d510732185
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cce39085bbe3593da28a9d845b9319343efead530dfd8177d62a4c3f9891cbdb771900772e7f4e561f31f5fe25def92eae07c237be3f6b547084093eecc68a3e
|
7
|
+
data.tar.gz: 66ecf1b6c13c4f0420a3e1ae45a554620a73c3f67ca96c7bca2c0dd0e72afdcad103596f66cac72bd974291a9e7008a0465e175a560299517b3ce1f83a2c28d6
|
@@ -23,6 +23,14 @@ module ActiveShrine
|
|
23
23
|
end
|
24
24
|
|
25
25
|
def save
|
26
|
+
unless attachment.valid?
|
27
|
+
attachment.errors.each do |error|
|
28
|
+
record.errors.add(name, error.message)
|
29
|
+
end
|
30
|
+
|
31
|
+
raise ActiveRecord::RecordInvalid.new(record)
|
32
|
+
end
|
33
|
+
|
26
34
|
record.public_send(:"#{name}_attachment=", attachment)
|
27
35
|
end
|
28
36
|
|
data/lib/active_shrine/model.rb
CHANGED
@@ -140,9 +140,6 @@ module ActiveShrine
|
|
140
140
|
|
141
141
|
after_save do
|
142
142
|
shrine_attachment_changes[name.to_s]&.save
|
143
|
-
rescue => e
|
144
|
-
errors.add(name, :invalid, message: "failed to save. Please make sure it is a valid file.")
|
145
|
-
raise ActiveRecord::RecordInvalid.new(self)
|
146
143
|
end
|
147
144
|
|
148
145
|
after_commit(on: %i[create update]) { shrine_attachment_changes.delete(name.to_s) }
|
@@ -240,9 +237,6 @@ module ActiveShrine
|
|
240
237
|
|
241
238
|
after_save do
|
242
239
|
shrine_attachment_changes[name.to_s]&.save
|
243
|
-
rescue => e
|
244
|
-
errors.add(name, :invalid, message: "failed to save. Please make sure it is a valid file.")
|
245
|
-
raise ActiveRecord::RecordInvalid.new(self)
|
246
240
|
end
|
247
241
|
|
248
242
|
after_commit(on: %i[create update]) { shrine_attachment_changes.delete(name.to_s) }
|
data/lib/generators/active_shrine/install/templates/db/migrate/create_active_shrine_attachments.rb
CHANGED
@@ -2,8 +2,11 @@
|
|
2
2
|
|
3
3
|
class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
|
4
4
|
def change
|
5
|
-
|
6
|
-
|
5
|
+
# Use Active Record's configured type for primary and foreign keys
|
6
|
+
primary_key_type, foreign_key_type = primary_and_foreign_key_types
|
7
|
+
|
8
|
+
create_table :active_shrine_attachments, id: primary_key_type do |t|
|
9
|
+
t.belongs_to :record, polymorphic: true, null: true, type: foreign_key_type
|
7
10
|
t.string :name, null: false
|
8
11
|
t.string :type, null: false, default: "ActiveShrine::Attachment"
|
9
12
|
if ActiveRecord::Base.connection.adapter_name.downcase.include?("postgresql")
|
@@ -16,6 +19,7 @@ class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
|
|
16
19
|
|
17
20
|
t.timestamps
|
18
21
|
end
|
22
|
+
|
19
23
|
add_index :active_shrine_attachments, :name
|
20
24
|
if ActiveRecord::Base.connection.adapter_name.downcase.include?("postgresql")
|
21
25
|
add_index :active_shrine_attachments, :file_data, using: :gin
|
@@ -25,4 +29,14 @@ class CreateActiveShrineAttachments < ActiveRecord::Migration[7.0]
|
|
25
29
|
add_index :active_shrine_attachments, :metadata
|
26
30
|
end
|
27
31
|
end
|
32
|
+
|
33
|
+
private
|
34
|
+
|
35
|
+
def primary_and_foreign_key_types
|
36
|
+
config = Rails.configuration.generators
|
37
|
+
setting = config.options[config.orm][:primary_key_type]
|
38
|
+
primary_key_type = setting || :primary_key
|
39
|
+
foreign_key_type = setting || :bigint
|
40
|
+
[ primary_key_type, foreign_key_type ]
|
41
|
+
end
|
28
42
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_shrine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Radioactive Labs
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|