wolf_core 1.0.102 → 1.0.104
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: f8ba8aeb052841bfadfea7e032d4ffcc9dee3ec667d9385bd1a8c7e9dbe97fff
|
4
|
+
data.tar.gz: 2d5052c3edf9346a09dbf55cf9c1417bf92d1f83c2b3301ac622b2cec9a22c4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2096f8d7b6aef4aecbc700251af3c9c72a08d15798de47de6829906cd5972e6eb43eb87dc98a67cf1d0cdf60d5c31ce0d22b2458ff1b98c191641b31edb31e8
|
7
|
+
data.tar.gz: 483e399f0e98e0b7d095e3dc2cdb8f412ae6bcc0d358af4357bb8406a5ae4ef8572c9b100fcdffb3de5f412d0354e32e61c6ebf668a0e3593240c83e5914bc52
|
@@ -1,5 +1,69 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module WolfCore
|
4
|
+
class ApplicationSerializer
|
5
|
+
attr_reader :object, :options
|
6
|
+
|
7
|
+
def initialize(object, options = {})
|
8
|
+
@object = object
|
9
|
+
@options = options
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.serialize_all(collection, options = {})
|
13
|
+
collection.map { |item| serialize(item, options) }
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.serialize(entity, options = {})
|
17
|
+
new(entity, options).as_json.with_indifferent_access
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.attributes(*attrs)
|
21
|
+
_attributes.concat(attrs.map(&:to_sym))
|
22
|
+
end
|
23
|
+
|
24
|
+
def self.has_many(relationship, serializer:) # rubocop:disable Naming/PredicateName
|
25
|
+
_relationships[relationship.to_sym] = serializer
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.has_one(relationship, serializer:) # rubocop:disable Naming/PredicateName
|
29
|
+
_relationships[relationship.to_sym] = serializer
|
30
|
+
end
|
31
|
+
|
32
|
+
def self._attributes
|
33
|
+
@_attributes ||= []
|
34
|
+
end
|
35
|
+
|
36
|
+
def self._relationships
|
37
|
+
@_relationships ||= {}
|
38
|
+
end
|
39
|
+
|
40
|
+
def as_json(*)
|
41
|
+
attributes = serialized_attributes
|
42
|
+
relationships = serialized_relationships
|
43
|
+
attributes.merge(relationships)
|
44
|
+
end
|
45
|
+
|
46
|
+
private
|
47
|
+
|
48
|
+
def serialized_attributes
|
49
|
+
self.class._attributes.each_with_object({}) do |attribute, hash|
|
50
|
+
hash[attribute] = if respond_to?(attribute, true)
|
51
|
+
send(attribute)
|
52
|
+
elsif object.respond_to?(attribute)
|
53
|
+
object.public_send(attribute)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
def serialized_relationships
|
59
|
+
self.class._relationships.each_with_object({}) do |(key, serializer_class), hash|
|
60
|
+
related_object = object.public_send(key)
|
61
|
+
hash[key] = if related_object.is_a?(Enumerable)
|
62
|
+
serializer_class.serialize_all(related_object, options)
|
63
|
+
else
|
64
|
+
serializer_class.new(related_object, options).as_json
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
data/lib/wolf_core/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wolf_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.104
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Javier Roncallo
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -147,7 +147,6 @@ files:
|
|
147
147
|
- lib/wolf_core/infrastructure/lambda_function_operations.rb
|
148
148
|
- lib/wolf_core/infrastructure/no_sql_db_data_source.rb
|
149
149
|
- lib/wolf_core/infrastructure/no_sql_db_operations.rb
|
150
|
-
- lib/wolf_core/infrastructure/serializable.rb
|
151
150
|
- lib/wolf_core/utils/array_utils.rb
|
152
151
|
- lib/wolf_core/utils/async_utils.rb
|
153
152
|
- lib/wolf_core/utils/file_utils.rb
|
@@ -1,17 +0,0 @@
|
|
1
|
-
# module WolfCore
|
2
|
-
# module Serializable
|
3
|
-
# def serialize_with(serializer, entity, options = {})
|
4
|
-
# serializer.new(entity, options).as_json.with_indifferent_access
|
5
|
-
# end
|
6
|
-
|
7
|
-
# def serialize_all_with(serializer, collection, options = {})
|
8
|
-
# collection.map do |item|
|
9
|
-
# serialize_with(
|
10
|
-
# serializer,
|
11
|
-
# item,
|
12
|
-
# options
|
13
|
-
# )
|
14
|
-
# end
|
15
|
-
# end
|
16
|
-
# end
|
17
|
-
# end
|