-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamic_entities.py
More file actions
489 lines (458 loc) · 13.7 KB
/
dynamic_entities.py
File metadata and controls
489 lines (458 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
import requests
import logging
import json
from obp_client import token, obp_host
from dotenv import load_dotenv
import os
# Configure logging
logger = logging.getLogger(__name__)
# Configuration
BASE_URL = obp_host # Replace with your OBP instance URL
DIRECTLOGIN_TOKEN = token # Optional: Replace with your DirectLogin token
load_dotenv()
PREFIX = os.getenv('OBP_ENTITY_PREFIX', '').lower()
if PREFIX != '':
if not PREFIX.endswith("_"):
PREFIX = PREFIX + "_"
# Entity name constants
ENTITY_PROJECT = f"{PREFIX}project"
ENTITY_PARCEL = f"{PREFIX}parcel"
ENTITY_PARCEL_OWNERSHIP_VERIFICATION = f"{PREFIX}parcel_owner_verification"
ENTITY_PROJECT_PARCEL_VERIFICATION = f"{PREFIX}project_parcel_verification"
ENTITY_PROJECT_VERIFICATION = f"{PREFIX}project_verification"
ENTITY_PARCEL_MONITORING_PERIOD_VERIFICATION = f"{PREFIX}parcel_monitoring_period_verification"
ENTITY_PROJECT_MONITORING_PERIOD_VERIFICATION = f"{PREFIX}project_monitoring_period_verification"
# Helper functions to get response keys and ID keys from entity constants
def get_response_key(entity_constant):
"""
Get the response key from an entity constant.
E.g., 'ogcr3_project' -> 'ogcr3_project'
"""
return entity_constant.lower()
def get_id_key(entity_constant):
"""
Get the ID key from an entity constant.
E.g., 'ogcr3_project' -> 'ogcr3_project_id'
"""
return f"{entity_constant.lower()}_id"
def get_list_key(entity_constant):
"""
Get the list key from an entity constant.
E.g., 'ogcr3_project' -> 'ogcr3_project_list'
"""
return f"{entity_constant.lower()}_list"
def create_system_dynamic_entity(entity_definition, token=None):
"""
Create a system-level dynamic entity in OBP.
Args:
entity_definition (dict): The dynamic entity definition
token (str, optional): DirectLogin authentication token
Returns:
dict: The API response
"""
url = f"{BASE_URL}/obp/v6.0.0/management/system-dynamic-entities"
headers = {
"Content-Type": "application/json"
}
# Add authentication if token is provided
if token:
headers["Authorization"] = f"DirectLogin token={token}"
try:
response = requests.post(url, headers=headers, json=entity_definition)
response.raise_for_status()
return response.json()
except requests.exceptions.RequestException as e:
logger.error(f"Error creating system dynamic entity: {e}")
logger.error(f"Request URL: {url}")
logger.error(f"Request body:\n{json.dumps(entity_definition, indent=2)}")
if hasattr(e.response, 'text'):
logger.error(f"Response: {e.response.text}")
raise
# Example 1: Customer Preferences Entity
project_entity = {
"entity_name": ENTITY_PROJECT,
"has_personal_entity": False,
"definition": {
"description": "a carbon credit project",
"required": [
"project_name",
"project_operator_name"
],
"properties": {
"project_operator_name": {
"type": "string",
"example": "Hugo Muller",
"description": "Name of the project operator / entity managing the project"
},
"project_operator_email": {
"type": "string",
"example": "hugo@example.com",
"description": "Contact email for the project operator"
},
"project_operator_phone": {
"type": "string",
"example": "+49 151 1234567",
"description": "Contact phone number for the project operator"
},
"project_operator_address_line_1": {
"type": "string",
"example": "Musterstrasse 1",
"description": "Operator address line 1"
},
"project_operator_address_line_2": {
"type": "string",
"example": "Suite 42",
"description": "Operator address line 2 (optional)"
},
"project_operator_postcode": {
"type": "string",
"example": "10115",
"description": "Operator postal code"
},
"project_operator_country": {
"type": "string",
"example": "Germany",
"description": "Operator country"
},
"project_name": {
"type": "string",
"example": "Example Carbon Project",
"description": "Readable name of the project"
},
"project_summary": {
"type": "string",
"example": "Smallholder agroforestry restoration on degraded land",
"description": "Short summary of the project"
},
"project_description": {
"type": "string",
"example": "A longer description with objectives, scope and impact",
"description": "Detailed description of the project"
},
"project_website": {
"type": "string",
"example": "https://example.org/project",
"description": "Optional website URL for the project"
},
"project_image": {
"type": "string",
"example": "https://example.org/image.jpg",
"description": "URL to a representative image for the project"
},
"project_media_links": {
"type": "array",
"items": { "type": "string" },
"example": ["https://example.org/video.mp4", "https://example.org/doc.pdf"],
"description": "List of media links (videos, documents, etc.)"
},
"project_activity_type": {
"type": "string",
"example": "Agroforestry",
"description": "High level activity type for the project"
},
"project_type": {
"type": "string",
"example": "Reforestation",
"description": "Project classification / type"
},
"project_city": {
"type": "string",
"example": "Berlin",
"description": "City where the project is located (if applicable)"
},
"project_country": {
"type": "string",
"example": "Germany",
"description": "Country where the project is located"
},
"project_cobenefits": {
"type": "array",
"items": { "type": "string" },
"example": ["biodiversity", "water retention"],
"description": "List of co-benefits produced by the project"
},
"project_activity_plan": {
"type": "string",
"example": "Planned activities and schedule",
"description": "Narrative or link describing the activity plan"
},
"project_start_date": {
"type": "string",
"example": "2024-01-01",
"description": "Project start date (ISO 8601)"
},
"project_end_date": {
"type": "string",
"example": "2034-12-31",
"description": "Project end date (ISO 8601)"
},
"project_term_commitment": {
"type": "integer",
"example": 10,
"description": "Term commitment (years)"
},
"project_methodology": {
"type": "string",
"example": "Methodology name or reference",
"description": "Methodology applied for carbon accounting"
},
"monitoring_period_years": {
"type": "integer",
"example": 5,
"description": "Number of years per monitoring period"
},
"monitoring_period_start_date": {
"type": "string",
"example": "2024-01-01",
"description": "Monitoring period start date (ISO 8601)"
},
"monitoring_period_end_date": {
"type": "string",
"example": "2029-12-31",
"description": "Monitoring period end date (ISO 8601)"
}
}
}
}
parcel_entity = {
"entity_name": ENTITY_PARCEL,
"has_personal_entity": False,
"definition": {
"description": "a piece of land",
"required": [
f"{ENTITY_PROJECT}_id",
"parcel_owner",
"geo_data"
],
"properties": {
f"{ENTITY_PROJECT}_id": {
"type": f"reference:{ENTITY_PROJECT}",
"example": "a8770fca-3d1d-47af-b6d0-7a6c3f124388",
"description": "ID of the project this parcel belongs to"
},
"parcel_owner": {
"type": "string",
"example": "hugo muller passport nr. 1234444",
"description": "legal identifier of landholder"
},
"geo_data": {
"type": "string",
"example": "some_geo_json",
"description": "a geojson polygon"
}
}
}
}
parcel_ownership_verification_entity = {
"entity_name": ENTITY_PARCEL_OWNERSHIP_VERIFICATION,
"has_personal_entity": False,
"definition": {
"description": "Verification of Landownership",
"required": [
f"{ENTITY_PARCEL}_id"
],
"properties": {
f"{ENTITY_PARCEL}_id": {
"type": f"reference:{ENTITY_PARCEL}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "(uu)id of the parcel that gets verified"
},
"status_code": {
"type": "string",
"example": "verified",
"description": "in_progress, verified, failed"
},
"status_message": {
"type": "string",
"example": "could not find owner",
"description": "further explanation of status code"
},
"authority": {
"type": "string",
"example": "Mycountry cadastre",
"description": "name of authority that verified the ownership"
}
}
}
}
parcel_verification_entity = {
"entity_name": ENTITY_PROJECT_PARCEL_VERIFICATION,
"has_personal_entity": False,
"definition": {
"description": "Verification of Project Claim Estimation",
"required": [
f"{ENTITY_PARCEL}_id",
f"{ENTITY_PROJECT}_id"
],
"properties": {
f"{ENTITY_PARCEL}_id": {
"type": f"reference:{ENTITY_PARCEL}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "(uu)id of the parcel that gets verified"
},
f"{ENTITY_PROJECT}_id": {
"type": f"reference:{ENTITY_PROJECT}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "ID of the project this parcel belongs to"
},
"status_code": {
"type": "string",
"example": "verified",
"description": "in_progress, verified, failed"
},
"status_message": {
"type": "string",
"example": "x behaved badly",
"description": "further explanation of status code"
},
"amount": {
"type": "integer",
"example": 6,
"description": "amount of carbon reduction calculated"
}
}
}
}
project_verification_entity = {
"entity_name": ENTITY_PROJECT_VERIFICATION,
"has_personal_entity": False,
"definition": {
"description": "Verification of Project",
"required": [
f"{ENTITY_PROJECT}_id"
],
"properties": {
f"{ENTITY_PROJECT}_id": {
"type": f"reference:{ENTITY_PROJECT}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "ID of the project verified"
},
"status_code": {
"type": "string",
"example": "verified",
"description": "in_progress, verified, failed"
},
"status_message": {
"type": "string",
"example": "x behaved badly",
"description": "further explanation of status code"
}
}
}
}
parcel_monitoring_period_verification = {
"entity_name": ENTITY_PARCEL_MONITORING_PERIOD_VERIFICATION,
"has_personal_entity": False,
"definition": {
"description": "Verification of Project Claim",
"required": [
f"{ENTITY_PARCEL}_id",
f"{ENTITY_PROJECT}_id"
],
"properties": {
f"{ENTITY_PARCEL}_id": {
"type": f"reference:{ENTITY_PARCEL}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "(uu)id of the parcel that gets verified"
},
f"{ENTITY_PROJECT}_id": {
"type": f"reference:{ENTITY_PROJECT}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "ID of the project this parcel belongs to"
},
"status_code": {
"type": "string",
"example": "verified",
"description": "in_progress, verified, failed"
},
"status_message": {
"type": "string",
"example": "x behaved badly",
"description": "further explanation of status code"
},
"amount": {
"type": "integer",
"example": 6,
"description": "amount of carbon reduction calculated"
}
}
}
}
project_monitoring_period_verification = {
"entity_name": ENTITY_PROJECT_MONITORING_PERIOD_VERIFICATION,
"has_personal_entity": False,
"definition": {
"description": "Verification of Project",
"required": [
f"{ENTITY_PROJECT}_id"
],
"properties": {
f"{ENTITY_PROJECT}_id": {
"type": f"reference:{ENTITY_PROJECT}",
"example": "3dece208-c95c-11f0-9041-54e1adfac5b1",
"description": "ID of the project verified"
},
"status_code": {
"type": "string",
"example": "verified",
"description": "in_progress, verified, failed"
},
"status_message": {
"type": "string",
"example": "x behaved badly",
"description": "further explanation of status code"
}
}
}
}
entities_data = [
(ENTITY_PROJECT, project_entity),
(ENTITY_PARCEL, parcel_entity),
(ENTITY_PARCEL_OWNERSHIP_VERIFICATION, parcel_ownership_verification_entity),
(ENTITY_PROJECT_PARCEL_VERIFICATION, parcel_verification_entity),
(ENTITY_PROJECT_VERIFICATION, project_verification_entity),
(ENTITY_PARCEL_MONITORING_PERIOD_VERIFICATION, parcel_monitoring_period_verification),
(ENTITY_PROJECT_MONITORING_PERIOD_VERIFICATION, project_monitoring_period_verification)
]
def create_all_entities():
created_count = 0
failed_count = 0
for idx, (entity_name, entity) in enumerate(entities_data, 1):
try:
response = create_system_dynamic_entity(entity, DIRECTLOGIN_TOKEN)
entity_id = response.get('dynamic_entity_id', 'N/A')
logger.info(f" ✓ [{idx}/{len(entities_data)}] Created entity: {entity_name} (ID: {entity_id})")
created_count += 1
except Exception as e:
logger.error(f" ✗ [{idx}/{len(entities_data)}] Failed to create entity {entity_name}")
logger.error(f" Error details: {e}")
# The detailed request is already logged by create_system_dynamic_entity()
failed_count += 1
logger.info("")
logger.info(f"Entity Creation Summary: {created_count} created, {failed_count} failed")
def add_entitlement_to_user(token, user_id, role_name, bank_id=""):
"""
Add an entitlement (role) to a specific user
Args:
token: DirectLogin authentication token
user_id: The ID of the user to grant the role to
role_name: The name of the role to grant (e.g., "CanGetAnyUser")
bank_id: Bank ID for bank-level roles, empty string "" for system-level roles
Returns:
Response JSON from the API
"""
url = f"{BASE_URL}/obp/v6.0.0/users/{user_id}/entitlements"
headers = {
"Authorization": f"DirectLogin token={token}",
"Content-Type": "application/json"
}
data = {
"bank_id": bank_id,
"role_name": role_name
}
try:
response = requests.post(url, headers=headers, json=data)
except requests.exceptions.RequestException as e:
logger.error(f"Error adding entitlement to user: {e}")
print(response)
return response.json()