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 +4 -4
- data/lib/wolf_core/domain/domain_object.rb +122 -0
- data/lib/wolf_core/domain/entity.rb +32 -0
- data/lib/wolf_core/domain/value_object.rb +13 -0
- data/lib/wolf_core/infrastructure/application_repository.rb +8 -0
- data/lib/wolf_core/utils/file_utils.rb +2 -1
- data/lib/wolf_core/version.rb +1 -1
- data/lib/wolf_core.rb +1 -0
- metadata +20 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ff4be5d8370b933a99e3f8759bfde8f6769a941d25e8b617f7f19008bd462f7
|
4
|
+
data.tar.gz: e0765d75bb28bb02c2406ac0ef18722f26f3afbedaa3ae19b3670da023ecc216
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
@@ -15,7 +15,7 @@ module WolfCore
|
|
15
15
|
safe_require(files_to_require)
|
16
16
|
end
|
17
17
|
|
18
|
-
def safe_require(missing_files)
|
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
|
data/lib/wolf_core/version.rb
CHANGED
data/lib/wolf_core.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.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-
|
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
|