wolf_core 1.0.102 → 1.0.103

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: 9ffdd6f7a199f3ef534d4e6319ba5e7075ecbb84499454332ce9ee25cd010d53
4
- data.tar.gz: 72d57d275db146e73b3b490640c1946ddb2b018573384310a2acb37121ace391
3
+ metadata.gz: 0b6f37a3d12a3d254b4e77ca8419e17d5bfe976ec0a8031b9a9f3c0eb14382ee
4
+ data.tar.gz: a7bb675465522a00826b12e6550bef1c8d0cc9cb047834523ecd261ecf806bc3
5
5
  SHA512:
6
- metadata.gz: 27ca859ef9c6fc711696a3dc7552e8f77632ed8006ffd79355bf8cae635d3bb0cf63ae6104a9f9efbcb0f4b3b375b94f629fea4a846fe2fed16eca161b15573c
7
- data.tar.gz: ac3e83bc81ce59b56a56408998e4d550171c1f5f58e3d26ec29dd5b923a57210870dcd4bada7d45bbb535968a330d85fdd7935c9b9581be1211dd8e2f7edbcde
6
+ metadata.gz: 2645cb05c97671ae078a2bc5172bf027f1e867a910d8eaac341f6cf1d449dc48551d406d354a7e0e1c37fc1565f25eaba0ff4299a15ff686be0b110de9f4cbec
7
+ data.tar.gz: 6cfd1c89289630b62d6d01ae5563e836c03ab63bb1e403ecc235141ce7b87403f37c7c9e85326df3659de50fb92144d5a52dc306f4aad5578a89ac0c1f531eb3
@@ -4,6 +4,5 @@ module WolfCore
4
4
  class ApplicationRepository
5
5
  include WolfCore::NoSqlDbOperations
6
6
  include WolfCore::HttpOperations
7
- # include WolfCore::Serializable
8
7
  end
9
8
  end
@@ -1,5 +1,69 @@
1
- # module WolfCore
2
- # class ApplicationSerializer < ActiveModel::Serializer
3
- # include WolfCore::Serializable
4
- # end
5
- # end
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 object.respond_to?(attribute)
51
+ object.public_send(attribute)
52
+ elsif respond_to?(attribute, true)
53
+ 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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.102"
4
+ VERSION = "1.0.103"
5
5
  end
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.102
4
+ version: 1.0.103
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-07 00:00:00.000000000 Z
11
+ date: 2025-03-25 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