wolf_core 1.0.85 → 1.0.87

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: 4bf1687b51adb4d505140463475ebd50b00c54c5e809fbf4bb3981866847a265
4
- data.tar.gz: 35b32d6b4ade624eb07ced2b86db567fea77bdb502ebc110822f1874c9c49da5
3
+ metadata.gz: 5ff4be5d8370b933a99e3f8759bfde8f6769a941d25e8b617f7f19008bd462f7
4
+ data.tar.gz: e0765d75bb28bb02c2406ac0ef18722f26f3afbedaa3ae19b3670da023ecc216
5
5
  SHA512:
6
- metadata.gz: 94841588033bbb2962822c4c7b11c0c5fb10930b30bd3947d208bba73f283d63e0be4a46a4d6b8d6aa5fae70b551670b92c5d2c9faa259cfea6b15f30e473210
7
- data.tar.gz: 778338dabcdfa8447f5f2ac1d4f1af45d0c264d5755adad61a8c7cb679c7c555da014fb1ea03c9fa811450c487c2df2c5883119fd5f1bbdac3cab652d830642b
6
+ metadata.gz: 73bd114d5f4e9ff4c3912142980325645030883ff898ce62ac3230ca3f3faaaa0281266177411783cd77b6734273f590ad8af11180f0ffefcf008974c11d4732
7
+ data.tar.gz: 97e9d0d585f9f4cdefb0f831f391cc45f70307c025328817a2bf08b1a029c44a36b4dfac0faeb050823d1846078910ccbbd664fc6bd11ef4f63be9175fe76042
@@ -0,0 +1,122 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WolfCore
4
+ class DomainObject
5
+ include ActiveModel::Model
6
+ # include ActiveModel::Serializers::JSON
7
+ include ActiveModel::Dirty
8
+ include ActiveModel::Callbacks
9
+
10
+ define_model_callbacks :initialize, only: [:after, :before]
11
+ define_model_callbacks :validation, only: [:after, :before]
12
+ define_model_callbacks :attribute_change, only: [:after, :before]
13
+
14
+ after_initialize do
15
+ parse_attributes
16
+ end
17
+
18
+ after_attribute_change do
19
+ parse_attributes
20
+ end
21
+
22
+ class_attribute :fields, default: []
23
+
24
+ def self.define_attributes(*attributes)
25
+ self.fields += attributes
26
+
27
+ attr_accessor(*attributes)
28
+
29
+ define_attribute_methods(*attributes)
30
+
31
+ attributes.each do |attribute|
32
+ define_method(:"#{attribute}=") do |value|
33
+ send(:"#{attribute}_will_change!") unless value == send(attribute)
34
+ run_callbacks :attribute_change do
35
+ instance_variable_set(:"@#{attribute}", value)
36
+ end
37
+ value
38
+ end
39
+ end
40
+ end
41
+
42
+ def self.cast_all(objects)
43
+ objects.map { |object| cast(object) }
44
+ end
45
+
46
+ def self.cast(object)
47
+ if object.is_a?(self)
48
+ object
49
+ else
50
+ result = self.create(object)
51
+ success_key = extract_success_key(object)
52
+ result.success? ? result.data.send(success_key) : object
53
+ end
54
+ end
55
+
56
+ def self.create_all(objects)
57
+ success_key = extract_success_key(objects.first)
58
+ final_array = []
59
+ objects.each do |object|
60
+ result = create(object)
61
+ if result.failure?
62
+ return result
63
+ else
64
+ final_array << result.data[success_key.to_sym]
65
+ end
66
+ end
67
+ Result.success(data: { success_key.pluralize.to_s => final_array })
68
+ end
69
+
70
+ def self.create(params = {}, **kwargs)
71
+ object = self.new(parse_params(params, **kwargs))
72
+ object.reset_changes
73
+ if object.valid?
74
+ success_key = extract_success_key(object)
75
+ Result.success(data: { success_key => object })
76
+ else
77
+ Result.failure(error: { message: object.errors.full_messages.to_sentence })
78
+ end
79
+ rescue ActiveModel::UnknownAttributeError => e
80
+ Result.failure(error: { message: e.message, error_type: e.class.to_s })
81
+ end
82
+
83
+ def self.extract_success_key(object)
84
+ object.class.to_s.split('::').last.underscore
85
+ end
86
+
87
+ def self.parse_params(params = {}, **kwargs)
88
+ params = {} unless params.is_a?(Hash)
89
+ params = params.merge(kwargs)
90
+ (params.to_h).with_indifferent_access
91
+ end
92
+
93
+ def initialize(attributes = {})
94
+ run_callbacks :initialize do
95
+ super
96
+ end
97
+ end
98
+
99
+ def valid?(*args)
100
+ run_callbacks(:validation) do
101
+ super
102
+ end
103
+ errors.empty?
104
+ end
105
+
106
+ def attributes
107
+ instance_values.slice(*self.class.fields.map(&:to_s)).with_indifferent_access
108
+ end
109
+
110
+ def attributes=(attrs)
111
+ run_callbacks :attribute_change do
112
+ super
113
+ end
114
+ end
115
+
116
+ def reset_changes
117
+ self.changes_applied
118
+ end
119
+
120
+ def parse_attributes; end
121
+ end
122
+ end
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WolfCore
4
+ class Entity < DomainObject
5
+ define_attributes :id
6
+ validates :id, presence: true
7
+
8
+ after_initialize do
9
+ @id ||= generate_id
10
+ end
11
+
12
+ def ==(other)
13
+ id == other.id
14
+ end
15
+
16
+ def created_at
17
+ return if id.blank?
18
+
19
+ timestamp = id.split('-')[1].to_i
20
+ @created_at ||= Time.at(timestamp).utc
21
+ end
22
+
23
+ private
24
+
25
+ def generate_id
26
+ prefix = self.class.to_s.underscore.split('/').last.downcase[0..4]
27
+ timestamp = Time.now.utc.to_i
28
+ uuid = SecureRandom.uuid.delete('-')[0..9]
29
+ "#{prefix}-#{timestamp}-#{uuid}"
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WolfCore
4
+ class ValueObject < DomainObject
5
+ def ==(other)
6
+ return false unless other.is_a?(self.class)
7
+ self.class.fields.each do |key|
8
+ return false unless attributes[key] == other.attributes[key]
9
+ end
10
+ true
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module WolfCore
4
+ class ApplicationRepository
5
+ include WolfCore::NoSqlDbOperations
6
+ include WolfCore::HttpOperations
7
+ end
8
+ end
@@ -15,7 +15,7 @@ module WolfCore
15
15
  safe_require(files_to_require)
16
16
  end
17
17
 
18
- def safe_require(missing_files) # rubocop:disable Metrics/MethodLength
18
+ def safe_require(missing_files)
19
19
  error_counter = {}
20
20
  while missing_files.any?
21
21
  files_to_require = missing_files
@@ -28,6 +28,7 @@ module WolfCore
28
28
  if error_counter[file] >= 10
29
29
  log_object "Error requiring file: #{file}"
30
30
  log_object e, title: "Error is"
31
+ log_object e.backtrace, title: "Error backtrace is"
31
32
  end
32
33
  missing_files << file if error_counter[file] < 15
33
34
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.85"
4
+ VERSION = "1.0.87"
5
5
  end
data/lib/wolf_core.rb CHANGED
@@ -4,6 +4,7 @@ require 'json'
4
4
  require 'ostruct'
5
5
  require 'httparty'
6
6
  require 'active_support'
7
+ require 'active_model'
7
8
  require 'active_support/core_ext'
8
9
  require 'aws-sdk-lambda'
9
10
  require 'redis'
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.85
4
+ version: 1.0.87
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-02-07 00:00:00.000000000 Z
11
+ date: 2025-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -94,6 +94,20 @@ dependencies:
94
94
  - - ">="
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: activemodel
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
97
111
  description: Repository to store shared code among Ruby projects.
98
112
  email:
99
113
  - jroncallo96@gmail.com
@@ -119,6 +133,10 @@ files:
119
133
  - lib/wolf_core/application/integrations/webhooks_operations.rb
120
134
  - lib/wolf_core/application/salesforce_oauth_service.rb
121
135
  - lib/wolf_core/application/service_exception.rb
136
+ - lib/wolf_core/domain/domain_object.rb
137
+ - lib/wolf_core/domain/entity.rb
138
+ - lib/wolf_core/domain/value_object.rb
139
+ - lib/wolf_core/infrastructure/application_repository.rb
122
140
  - lib/wolf_core/infrastructure/fkm_operations.rb
123
141
  - lib/wolf_core/infrastructure/http_data_source.rb
124
142
  - lib/wolf_core/infrastructure/http_operations.rb