standard_procedure_global_id_serialiser 0.1.1 → 0.1.2
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: 8a2dbf92f0c7144ab7190ad6e6f284acdfdf2ff5595888e725f7d6fcd8d5a057
|
4
|
+
data.tar.gz: 350946224c236cf89f1c09d21cba74b6a8333ec2e4f13767936ca2b68652c005
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72db94a95ae5c5667e979a8a60ad5f00a265603fa2cb3e966b36263f99e50953fb6031f01708d8050848b848b8d057c66f2fa3a7f5f41cabe8cdfc2375b46ee7
|
7
|
+
data.tar.gz: 74b22b14271c999222ad6c9ebee4979da9e077944aaddcdaf0331beeec36fb4a4b33d860eff64b8374eb28b1e8f1c58b973cad2936c430e492ad9e52b91955c0
|
data/README.md
CHANGED
@@ -4,7 +4,26 @@ A [Ruby on Rails serialiser](https://api.rubyonrails.org/classes/ActiveRecord/At
|
|
4
4
|
|
5
5
|
## Usage
|
6
6
|
|
7
|
-
|
7
|
+
### Outside of Rails serialisation
|
8
|
+
|
9
|
+
Rails serialisation uses the `GlobalIdSerialiser#dump` and `GlobalIdSerialiser#load` methods - which convert your data to and from JSON.
|
10
|
+
|
11
|
+
However, internally, these methods use `GlobalIdSerialiser#marshal` and `GlobalIdSerialiser#unmarshal`. These do the conversion from GlobalID to model and back again, without the conversion to JSON. So you can use these anywhere that expects standard ruby objects.
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
@alice = Person.create name: "Alice"
|
15
|
+
@data = { title: "Welcome to my blog", author: @alice }
|
16
|
+
|
17
|
+
@marshalled_data = GlobalIdSerialiser.marshal @data
|
18
|
+
puts @marshalled_data # => { title: "Welcome to my blog", author: "gid://my_app/person/1" }
|
19
|
+
|
20
|
+
@unmarshalled_data = GlobalIdSerialiser.unmarshal @marshalled_data
|
21
|
+
puts @unmarshalled_data # => { title: "Welcome to my blog", author: Person<id: 1, name: "Alice"> }
|
22
|
+
```
|
23
|
+
|
24
|
+
### Serialising data to and from ActiveRecord
|
25
|
+
|
26
|
+
Create your ActiveRecord model, declaring your serialised field - but instead of declaring the `coder` as `JSON`, use `GlobalIdSerialiser`.
|
8
27
|
|
9
28
|
```ruby
|
10
29
|
class BlogPost < ApplicationRecord
|
@@ -19,13 +38,21 @@ Then go about your day, safely storing your models in your serialised field.
|
|
19
38
|
|
20
39
|
@blog_post = BlogPost.create data: { title: "Welcome to my blog", author: @alice }
|
21
40
|
|
22
|
-
puts @blog_post.
|
41
|
+
puts @blog_post.data_before_type_cast # => '{"title":"Welcome to my blog","author":"gid://my_app/person/1"}'
|
23
42
|
|
24
43
|
@reloaded_blog_post = BlogPost.find @blog_post.id
|
25
44
|
|
26
45
|
puts @blog_post.data["author"] # => Person<id: 1, name: "Alice">
|
27
46
|
```
|
28
47
|
|
48
|
+
### Deleted records
|
49
|
+
|
50
|
+
When your data is marshalled, any objects that implement `GlobalID::Identification` get converted to a GlobalID URI string.
|
51
|
+
|
52
|
+
Later, when that data is unmarshalled, any GlobalID URIs are passed to the `GlobalID::Locator` to find them in the database. If the record in question has been deleted, the data will be unmarshalled as `nil`. This is so as much of the data as possible is retrieved without raising any `ActiveRecord::RecordNotFound` errors (which would stop the unmarshalling process part-way through and leave you with no data at all).
|
53
|
+
|
54
|
+
So be aware that `nil`s may be returned if the record in question has been deleted.
|
55
|
+
|
29
56
|
## Installation
|
30
57
|
|
31
58
|
Add it to your Gemfile. `bundle install`. Relax.
|
@@ -0,0 +1 @@
|
|
1
|
+
e55756bb70b00d06279f3c2ce6ed27da16b88f1c7d606fb835eb2159f90120643026872dd56701ce5813dff39596d65a3f9d7bf103d522412ea4ef6ff68ff26f
|
data/lib/global_id_serialiser.rb
CHANGED
@@ -6,9 +6,13 @@ require "global_id"
|
|
6
6
|
require "json"
|
7
7
|
|
8
8
|
class GlobalIdSerialiser
|
9
|
-
def self.
|
9
|
+
def self.marshal(data) = pack(data)
|
10
10
|
|
11
|
-
def self.
|
11
|
+
def self.dump(data) = JSON.generate(marshal(data))
|
12
|
+
|
13
|
+
def self.unmarshal(data) = unpack(data)
|
14
|
+
|
15
|
+
def self.load(json) = unmarshal(JSON.parse(json))
|
12
16
|
|
13
17
|
private_class_method def self.pack argument
|
14
18
|
case argument
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: standard_procedure_global_id_serialiser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rahoul Baruah
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: globalid
|
@@ -52,6 +52,7 @@ files:
|
|
52
52
|
- Rakefile
|
53
53
|
- checksums/standard_procedure_global_id_serialiser-0.1.0.gem.sha512
|
54
54
|
- checksums/standard_procedure_global_id_serialiser-0.1.1.gem.sha512
|
55
|
+
- checksums/standard_procedure_global_id_serialiser-0.1.2.gem.sha512
|
55
56
|
- lib/global_id_serialiser.rb
|
56
57
|
- lib/global_id_serialiser/version.rb
|
57
58
|
- lib/standard_procedure_global_id_serialiser.rb
|