apidae 1.2.32 → 1.2.34
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/apidae/apidae_data_parser.rb +4 -1
- data/app/models/apidae/obj.rb +1 -1
- data/lib/apidae/version.rb +1 -1
- data/test/dummy/log/development.log +10 -168
- data/test/dummy/log/test.log +5592 -501
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b548817eebe84592342e15e6b2803973996ba58a9db772735c3354905056ad85
|
4
|
+
data.tar.gz: 7e58e1648fe95c04b89ab03a2038577267da8e1353fa72f294a3a0475958745a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df46f230175cf3c7d9fc6c07d2bd271436ac2fdeb412b6e899d92d984d9603bacc5621bcd3e3c1953efe654516f547abb07d75b7e9e77a4c8dc66cb647f27484
|
7
|
+
data.tar.gz: 49934f72f635316528b6712d44f7029f9317507fbffa0e5b48b881226b9050167e2d19fb0b5e3a760bebee6a1cb492571b8a37900e9dac4209b102b94295cc49
|
@@ -362,7 +362,10 @@ module Apidae
|
|
362
362
|
entity_hash = {}
|
363
363
|
if information_hash
|
364
364
|
if information_hash[:structureGestion]
|
365
|
-
entity_hash.merge!({entity_id: information_hash[:structureGestion][:id],
|
365
|
+
entity_hash.merge!({entity_id: information_hash[:structureGestion][:id], entity_name: information_hash[:structureGestion].dig(:nom, :libelleFr),
|
366
|
+
info_entity_id: (information_hash[:structureInformation] || information_hash[:structureGestion])[:id],
|
367
|
+
info_entity_name: (information_hash[:structureInformation] || information_hash[:structureGestion]).dig(:nom, :libelleFr),
|
368
|
+
service_provider_id: node_id(type_data_hash, :prestataireActivites)})
|
366
369
|
end
|
367
370
|
|
368
371
|
if information_hash[:informationsLegales]
|
data/app/models/apidae/obj.rb
CHANGED
@@ -17,7 +17,7 @@ module Apidae
|
|
17
17
|
store_accessor :type_data, :categories, :themes, :capacity, :classification, :classification_date,
|
18
18
|
:classification_ref, :labels, :chains, :area, :track, :tricky_sections, :products, :audience, :animals,
|
19
19
|
:animals_desc, :extra, :duration, :certifications, :business, :business_equipments, :business_rooms
|
20
|
-
store_accessor :entity_data, :entity_id, :entity_name, :service_provider_id, :is_service_provider, :legal
|
20
|
+
store_accessor :entity_data, :entity_id, :entity_name, :info_entity_id, :info_entity_name, :service_provider_id, :is_service_provider, :legal
|
21
21
|
store_accessor :contact_data, :telephone, :email, :website, :google, :facebook, :twitter, :yelp, :trip_advisor, :fax,
|
22
22
|
:mobile_website, :shorty_url, :contacts
|
23
23
|
store_accessor :location_data, :address, :place, :latitude, :longitude, :access, :territories, :environments, :altitude, :map_reference
|
data/lib/apidae/version.rb
CHANGED
@@ -19,177 +19,19 @@ callback this way:
|
|
19
19
|
That block runs when the application boots, and every time there is a reload.
|
20
20
|
For historical reasons, it may run twice, so it has to be idempotent.
|
21
21
|
|
22
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
23
|
-
Rails autoloads and reloads.
|
24
|
-
(called from <top (required)> at /Users/jbvilain/workspace/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
25
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
26
|
-
|
27
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
28
|
-
to be an error condition in future versions of Rails.
|
29
|
-
|
30
|
-
Reloading does not reboot the application, and therefore code executed during
|
31
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
32
|
-
the expected changes won't be reflected in that stale Module object.
|
33
|
-
|
34
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
35
|
-
|
36
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
37
|
-
callback this way:
|
38
|
-
|
39
|
-
Rails.application.reloader.to_prepare do
|
40
|
-
# Autoload classes and modules needed at boot time here.
|
41
|
-
end
|
42
|
-
|
43
|
-
That block runs when the application boots, and every time there is a reload.
|
44
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
45
|
-
|
46
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
47
|
-
Rails autoloads and reloads.
|
48
|
-
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
49
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
50
|
-
|
51
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
52
|
-
to be an error condition in future versions of Rails.
|
53
|
-
|
54
|
-
Reloading does not reboot the application, and therefore code executed during
|
55
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
56
|
-
the expected changes won't be reflected in that stale Module object.
|
57
|
-
|
58
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
59
|
-
|
60
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
61
|
-
callback this way:
|
62
|
-
|
63
|
-
Rails.application.reloader.to_prepare do
|
64
|
-
# Autoload classes and modules needed at boot time here.
|
65
|
-
end
|
66
|
-
|
67
|
-
That block runs when the application boots, and every time there is a reload.
|
68
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
69
|
-
|
70
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
71
|
-
Rails autoloads and reloads.
|
72
|
-
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
73
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
74
|
-
|
75
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
76
|
-
to be an error condition in future versions of Rails.
|
77
|
-
|
78
|
-
Reloading does not reboot the application, and therefore code executed during
|
79
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
80
|
-
the expected changes won't be reflected in that stale Module object.
|
81
|
-
|
82
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
83
|
-
|
84
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
85
|
-
callback this way:
|
86
|
-
|
87
|
-
Rails.application.reloader.to_prepare do
|
88
|
-
# Autoload classes and modules needed at boot time here.
|
89
|
-
end
|
90
|
-
|
91
|
-
That block runs when the application boots, and every time there is a reload.
|
92
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
93
|
-
|
94
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
95
|
-
Rails autoloads and reloads.
|
96
|
-
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
97
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
98
|
-
|
99
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
100
|
-
to be an error condition in future versions of Rails.
|
101
|
-
|
102
|
-
Reloading does not reboot the application, and therefore code executed during
|
103
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
104
|
-
the expected changes won't be reflected in that stale Module object.
|
105
|
-
|
106
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
107
|
-
|
108
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
109
|
-
callback this way:
|
110
|
-
|
111
|
-
Rails.application.reloader.to_prepare do
|
112
|
-
# Autoload classes and modules needed at boot time here.
|
113
|
-
end
|
114
|
-
|
115
|
-
That block runs when the application boots, and every time there is a reload.
|
116
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
117
|
-
|
118
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
119
|
-
Rails autoloads and reloads.
|
120
|
-
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
121
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
122
|
-
|
123
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
124
|
-
to be an error condition in future versions of Rails.
|
125
|
-
|
126
|
-
Reloading does not reboot the application, and therefore code executed during
|
127
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
128
|
-
the expected changes won't be reflected in that stale Module object.
|
129
|
-
|
130
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
131
|
-
|
132
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
133
|
-
callback this way:
|
134
|
-
|
135
|
-
Rails.application.reloader.to_prepare do
|
136
|
-
# Autoload classes and modules needed at boot time here.
|
137
|
-
end
|
138
|
-
|
139
|
-
That block runs when the application boots, and every time there is a reload.
|
140
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
141
|
-
|
142
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
143
|
-
Rails autoloads and reloads.
|
144
|
-
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
145
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
146
|
-
|
147
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
148
|
-
to be an error condition in future versions of Rails.
|
149
|
-
|
150
|
-
Reloading does not reboot the application, and therefore code executed during
|
151
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
152
|
-
the expected changes won't be reflected in that stale Module object.
|
153
|
-
|
154
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
155
|
-
|
156
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
157
|
-
callback this way:
|
158
|
-
|
159
|
-
Rails.application.reloader.to_prepare do
|
160
|
-
# Autoload classes and modules needed at boot time here.
|
161
|
-
end
|
162
|
-
|
163
|
-
That block runs when the application boots, and every time there is a reload.
|
164
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
165
|
-
|
166
|
-
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
167
|
-
Rails autoloads and reloads.
|
168
|
-
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
169
|
-
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
170
|
-
|
171
|
-
Being able to do this is deprecated. Autoloading during initialization is going
|
172
|
-
to be an error condition in future versions of Rails.
|
173
|
-
|
174
|
-
Reloading does not reboot the application, and therefore code executed during
|
175
|
-
initialization does not run again. So, if you reload Apidae::ApidaeHelper, for example,
|
176
|
-
the expected changes won't be reflected in that stale Module object.
|
177
|
-
|
178
|
-
`config.autoloader` is set to `classic`. These autoloaded constants would have been unloaded if `config.autoloader` had been set to `:zeitwerk`.
|
179
|
-
|
180
|
-
In order to autoload safely at boot time, please wrap your code in a reloader
|
181
|
-
callback this way:
|
182
|
-
|
183
|
-
Rails.application.reloader.to_prepare do
|
184
|
-
# Autoload classes and modules needed at boot time here.
|
185
|
-
end
|
186
|
-
|
187
|
-
That block runs when the application boots, and every time there is a reload.
|
188
|
-
For historical reasons, it may run twice, so it has to be idempotent.
|
189
|
-
|
190
22
|
Check the "Autoloading and Reloading Constants" guide to learn more about how
|
191
23
|
Rails autoloads and reloads.
|
192
24
|
(called from <top (required)> at /Users/jbvilain/workspace/code/apidae-engine-rails/test/dummy/config/environment.rb:5)
|
25
|
+
[1m[36mApidae::Obj Load (0.8ms)[0m [1m[34mSELECT "apidae_objs".* FROM "apidae_objs" WHERE "apidae_objs"."root_obj_id" IS NULL ORDER BY "apidae_objs"."id" ASC LIMIT $1[0m [["LIMIT", 1]]
|
26
|
+
[1m[36mTRANSACTION (1.0ms)[0m [1m[35mBEGIN[0m
|
27
|
+
[1m[36mApidae::Obj Create (8.3ms)[0m [1m[32mINSERT INTO "apidae_objs" ("apidae_type", "created_at", "updated_at", "description_data") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["apidae_type", "test"], ["created_at", "2023-02-16 21:12:52.351303"], ["updated_at", "2023-02-16 21:12:52.351303"], ["description_data", "{\"short_desc\":{\"\":\"test desc\"}}"]]
|
28
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
29
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
30
|
+
[1m[36mApidae::Obj Update (1.3ms)[0m [1m[33mUPDATE "apidae_objs" SET "updated_at" = $1, "description_data" = $2 WHERE "apidae_objs"."id" = $3[0m [["updated_at", "2023-02-16 21:16:00.968796"], ["description_data", "{\"short_desc\":{\"\":\"test desc\",\"fr\":\"updated desc\"}}"], ["id", 1]]
|
31
|
+
[1m[36mTRANSACTION (0.7ms)[0m [1m[35mCOMMIT[0m
|
32
|
+
[1m[36mTRANSACTION (0.2ms)[0m [1m[35mBEGIN[0m
|
33
|
+
[1m[36mApidae::Obj Create (0.9ms)[0m [1m[32mINSERT INTO "apidae_objs" ("apidae_type", "created_at", "updated_at", "description_data") VALUES ($1, $2, $3, $4) RETURNING "id"[0m [["apidae_type", "HOTELLERIE"], ["created_at", "2023-02-16 21:17:36.422310"], ["updated_at", "2023-02-16 21:17:36.422310"], ["description_data", "{\"short_desc\":{\"fr\":\"short desc fr\"}}"]]
|
34
|
+
[1m[36mTRANSACTION (1.4ms)[0m [1m[35mCOMMIT[0m
|
193
35
|
DEPRECATION WARNING: Initialization autoloaded the constants Apidae::ApidaeHelper, Apidae::ApplicationHelper, Apidae::ApiHelper, Apidae::DashboardHelper, Apidae::ExtendableHelper, Apidae::ImportHelper, Apidae::ObjectsHelper, Apidae::ReferencesHelper, Apidae::SelectionsHelper, and Apidae::ApplicationController.
|
194
36
|
|
195
37
|
Being able to do this is deprecated. Autoloading during initialization is going
|