-
Notifications
You must be signed in to change notification settings - Fork 8
/
definitions.py
628 lines (557 loc) · 24.1 KB
/
definitions.py
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
import asyncio
from typing import List, Optional
from aries_cloudcontroller import (
CredentialDefinitionSendRequest,
SchemaGetResult,
SchemaSendRequest,
)
from fastapi import APIRouter, Depends, HTTPException
from app.dependencies.acapy_clients import client_from_auth, get_governance_controller
from app.dependencies.auth import (
AcaPyAuth,
AcaPyAuthVerified,
acapy_auth,
acapy_auth_governance,
acapy_auth_verified,
)
from app.exceptions import (
CloudApiException,
TrustRegistryException,
handle_acapy_call,
handle_model_with_validation,
)
from app.models.definitions import (
CreateCredentialDefinition,
CreateSchema,
CredentialDefinition,
CredentialSchema,
)
from app.services import acapy_wallet
from app.services.revocation_registry import wait_for_active_registry
from app.services.trust_registry.schemas import register_schema
from app.services.trust_registry.util.issuer import assert_valid_issuer
from app.util.definitions import (
credential_definition_from_acapy,
credential_schema_from_acapy,
)
from app.util.retry_method import coroutine_with_retry, coroutine_with_retry_until_value
from shared import ACAPY_ENDORSER_ALIAS, REGISTRY_CREATION_TIMEOUT
from shared.log_config import get_logger
logger = get_logger(__name__)
router = APIRouter(
prefix="/v1/definitions",
tags=["definitions"],
)
@router.get("/credentials", response_model=List[CredentialDefinition])
async def get_credential_definitions(
issuer_did: Optional[str] = None,
credential_definition_id: Optional[str] = None,
schema_id: Optional[str] = None,
schema_issuer_did: Optional[str] = None,
schema_name: Optional[str] = None,
schema_version: Optional[str] = None,
auth: AcaPyAuth = Depends(acapy_auth),
) -> List[CredentialDefinition]:
"""
Get agent-created credential definitions
Parameters:
---
issuer_did: Optional[str]
credential_definition_id: Optional[str]
schema_id: Optional[str]
schema_issuer_id: Optional[str]
schema_version: Optional[str]
Returns:
---
Created credential definitions
"""
bound_logger = logger.bind(
body={
"issuer_did": issuer_did,
"credential_definition_id": credential_definition_id,
"schema_id": schema_id,
"schema_issuer_did": schema_issuer_did,
"schema_name": schema_name,
"schema_version": schema_version,
}
)
bound_logger.info(
"GET request received: Get credential definitions created by agent"
)
# Get all created credential definition ids that match the filter
async with client_from_auth(auth) as aries_controller:
bound_logger.debug("Getting created credential definitions")
response = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.credential_definition.get_created_cred_defs,
issuer_did=issuer_did,
cred_def_id=credential_definition_id,
schema_id=schema_id,
schema_issuer_did=schema_issuer_did,
schema_name=schema_name,
schema_version=schema_version,
)
# Initiate retrieving all credential definitions
credential_definition_ids = response.credential_definition_ids or []
get_credential_definition_futures = [
handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.credential_definition.get_cred_def,
cred_def_id=credential_definition_id,
)
for credential_definition_id in credential_definition_ids
]
# Wait for completion of retrieval and transform all credential definitions
# into response model (if a credential definition was returned)
if get_credential_definition_futures:
bound_logger.debug("Getting definitions from fetched credential ids")
credential_definition_results = await asyncio.gather(
*get_credential_definition_futures
)
else:
bound_logger.debug("No definition ids returned")
credential_definition_results = []
credential_definitions = [
credential_definition_from_acapy(credential_definition.credential_definition)
for credential_definition in credential_definition_results
if credential_definition.credential_definition
]
if credential_definitions:
bound_logger.info("Successfully fetched credential definitions.")
else:
bound_logger.info("No credential definitions matching request.")
return credential_definitions
@router.get(
"/credentials/{credential_definition_id}", response_model=CredentialDefinition
)
async def get_credential_definition_by_id(
credential_definition_id: str,
auth: AcaPyAuth = Depends(acapy_auth),
) -> CredentialDefinition:
"""
Get credential definition by id.
Parameters:
-----------
credential_definition_id: str
credential definition id
"""
bound_logger = logger.bind(
body={"credential_definition_id": credential_definition_id}
)
bound_logger.info("GET request received: Get credential definition by id")
async with client_from_auth(auth) as aries_controller:
bound_logger.debug("Getting credential definition")
credential_definition = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.credential_definition.get_cred_def,
cred_def_id=credential_definition_id,
)
if not credential_definition.credential_definition:
bound_logger.info("Bad request: credential definition id not found.")
raise HTTPException(
404,
f"Credential Definition with id {credential_definition_id} not found.",
)
bound_logger.debug("Cast credential definition response to model")
cloudapi_credential_definition = credential_definition_from_acapy(
credential_definition.credential_definition
)
# We need to update the schema_id on the returned credential definition as
# ACA-Py returns the schema_id as the seq_no
bound_logger.debug("Fetching schema associated with definition's schema id")
schema = await get_schema(
schema_id=cloudapi_credential_definition.schema_id,
auth=auth,
)
cloudapi_credential_definition.schema_id = schema.id
bound_logger.info("Successfully fetched credential definition.")
return cloudapi_credential_definition
@router.post("/credentials", response_model=CredentialDefinition)
async def create_credential_definition(
credential_definition: CreateCredentialDefinition,
auth: AcaPyAuthVerified = Depends(acapy_auth_verified),
) -> CredentialDefinition:
"""
Create a credential definition.
If revocation is supported ("support_revocation": true), revocation registries will be created.
**NB**: The creation of these revocation registries can take up to one minute.
It is recommended to use the max (default) revocation registry size of 32767,
as this will allow for minimal ledger writes (lower cost).
Parameters:
-----------
credential_definition: CreateCredentialDefinition
Payload for creating a credential definition.
Returns:
--------
Credential Definition
"""
bound_logger = logger.bind(
body={
"tag": credential_definition.tag,
"schema_id": credential_definition.schema_id,
"support_revocation": credential_definition.support_revocation,
"revocation_registry_size": credential_definition.revocation_registry_size,
}
)
bound_logger.info("POST request received: Create credential definition")
support_revocation = credential_definition.support_revocation
rev_reg_size = (
credential_definition.revocation_registry_size if support_revocation else None
)
async with client_from_auth(auth) as aries_controller:
# Assert the agent has a public did
bound_logger.debug("Asserting client has public DID")
try:
public_did = await acapy_wallet.assert_public_did(aries_controller)
except CloudApiException as e:
log_message = f"Asserting public DID failed: {e}"
if e.status_code == 403:
bound_logger.info(log_message)
client_error_message = (
"Wallet making this request has no public DID. "
"Only issuers with a public DID can make this request."
)
else:
bound_logger.error(log_message)
client_error_message = (
"Something went wrong while asserting if request is from a valid issuer. "
"Please try again."
)
raise CloudApiException(client_error_message, e.status_code) from e
# Make sure we are allowed to issue this schema according to trust registry rules
bound_logger.debug("Asserting client is a valid issuer")
await assert_valid_issuer(public_did, credential_definition.schema_id)
if support_revocation:
endorser_connection = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.connection.get_connections,
alias=ACAPY_ENDORSER_ALIAS,
)
has_connections = len(endorser_connection.results) > 0
if not has_connections:
bound_logger.error(
"Failed to create credential definition supporting revocation: no endorser connection found. "
"Issuer attempted to create a credential definition with support for revocation but does not "
"have an active connection with an endorser, which is required for this operation."
)
raise CloudApiException(
"Credential definition creation failed: An active endorser connection is required "
"to support revocation. Please establish a connection with an endorser and try again."
)
bound_logger.debug("Publishing credential definition")
request_body = handle_model_with_validation(
logger=bound_logger,
model_class=CredentialDefinitionSendRequest,
schema_id=credential_definition.schema_id,
support_revocation=support_revocation,
tag=credential_definition.tag,
revocation_registry_size=rev_reg_size,
)
try:
result = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.credential_definition.publish_cred_def,
body=request_body,
)
credential_definition_id = result.sent.credential_definition_id
except CloudApiException as e:
bound_logger.warning(
"An Exception was caught while publishing credential definition: `{}` `{}`",
e.detail,
e.status_code,
)
if "already exists" in e.detail:
raise CloudApiException(status_code=409, detail=e.detail) from e
else:
raise CloudApiException(
detail=f"Error while creating credential definition: {e.detail}",
status_code=e.status_code,
) from e
# Wait for cred_def transaction to be acknowledged
if result.txn and result.txn.transaction_id:
bound_logger.debug(
"The publish credential definition response provides a transaction id. "
"Waiting for transaction to be in state `transaction_acked`"
)
try:
# Wait for transaction to be acknowledged and written to the ledger
await coroutine_with_retry_until_value(
coroutine_func=aries_controller.endorse_transaction.get_transaction,
args=(result.txn.transaction_id,),
field_name="state",
expected_value="transaction_acked",
logger=bound_logger,
max_attempts=10,
retry_delay=2,
)
except asyncio.TimeoutError as e:
raise CloudApiException(
"Timeout waiting for endorser to accept the endorsement request.",
504,
) from e
bound_logger.debug("Transaction has been acknowledged by the endorser")
# Wait for revocation registry creation
if support_revocation:
try:
bound_logger.debug("Waiting for revocation registry creation")
await asyncio.wait_for(
wait_for_active_registry(
aries_controller, credential_definition_id
),
timeout=REGISTRY_CREATION_TIMEOUT,
)
except asyncio.TimeoutError as e:
bound_logger.error("Timeout waiting for revocation registry creation.")
raise CloudApiException(
"Timeout waiting for revocation registry creation.",
504,
) from e
# ACA-Py only returns the id after creating a credential definition
# We want consistent return types across all endpoints, so retrieving the credential
# definition here.
# Retry logic to avoid race condition, as it can return 404
result = await coroutine_with_retry(
coroutine_func=get_credential_definition_by_id,
args=(credential_definition_id, auth),
logger=bound_logger,
max_attempts=3,
retry_delay=0.5,
)
bound_logger.info("Successfully created credential definition.")
return result
@router.get("/schemas", response_model=List[CredentialSchema])
async def get_schemas(
schema_id: Optional[str] = None,
schema_issuer_did: Optional[str] = None,
schema_name: Optional[str] = None,
schema_version: Optional[str] = None,
auth: AcaPyAuth = Depends(acapy_auth),
) -> List[CredentialSchema]:
"""
Retrieve schemas that the current agent created.
Parameters:
-----------
schema_id: str (Optional)
schema_issuer_did: str (Optional)
schema_name: str (Optional)
schema_version: str (Optional)
Returns:
--------
son response with created schemas from ledger.
"""
bound_logger = logger.bind(
body={
"schema_id": schema_id,
"schema_issuer_did": schema_issuer_did,
"schema_name": schema_name,
"schema_version": schema_version,
}
)
bound_logger.info("GET request received: Get schemas created by client")
# Get all created schema ids that match the filter
async with client_from_auth(auth) as aries_controller:
bound_logger.debug("Fetching created schemas")
response = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.get_created_schemas,
schema_id=schema_id,
schema_issuer_did=schema_issuer_did,
schema_name=schema_name,
schema_version=schema_version,
)
# Initiate retrieving all schemas
schema_ids = response.schema_ids or []
get_schema_futures = [
handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.get_schema,
schema_id=schema_id,
)
for schema_id in schema_ids
]
# Wait for completion of retrieval and transform all schemas into response model (if a schema was returned)
if get_schema_futures:
bound_logger.debug("Fetching each of the created schemas")
schema_results: List[SchemaGetResult] = await asyncio.gather(
*get_schema_futures
)
else:
bound_logger.debug("No created schema ids returned")
schema_results = []
schemas = [
credential_schema_from_acapy(schema.var_schema)
for schema in schema_results
if schema.var_schema
]
if schemas:
bound_logger.info("Successfully fetched schemas.")
else:
bound_logger.info("No schemas matching request.")
return schemas
@router.get("/schemas/{schema_id}", response_model=CredentialSchema)
async def get_schema(
schema_id: str,
auth: AcaPyAuth = Depends(acapy_auth),
) -> CredentialSchema:
"""
Retrieve schema by id.
Parameters:
-----------
schema_id: str
schema id
"""
bound_logger = logger.bind(body={"schema_id": schema_id})
bound_logger.info("GET request received: Get schema by id")
async with client_from_auth(auth) as aries_controller:
schema = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.get_schema,
schema_id=schema_id,
)
if not schema.var_schema:
bound_logger.info("Bad request: schema id not found.")
raise HTTPException(404, f"Schema with id {schema_id} not found.")
result = credential_schema_from_acapy(schema.var_schema)
bound_logger.info("Successfully fetched schema by id.")
return result
@router.post("/schemas", response_model=CredentialSchema)
async def create_schema(
schema: CreateSchema,
# Only governance can create schemas
governance_auth: AcaPyAuthVerified = Depends(acapy_auth_governance),
) -> CredentialSchema:
"""
Create a new schema.
Parameters:
------------
schema: CreateSchema
Payload for creating a schema.
Returns:
--------
The response object from creating a schema.
"""
bound_logger = logger.bind(body=schema)
bound_logger.info("POST request received: Create schema (publish and register)")
schema_send_request = handle_model_with_validation(
logger=bound_logger,
model_class=SchemaSendRequest,
attributes=schema.attribute_names,
schema_name=schema.name,
schema_version=schema.version,
)
async with get_governance_controller(governance_auth) as aries_controller:
try:
bound_logger.info("Publishing schema as governance")
result = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.publish_schema,
body=schema_send_request,
create_transaction_for_endorser=False,
)
except CloudApiException as e:
bound_logger.info(
"An Exception was caught while trying to publish schema: `{}`",
e.detail,
)
if e.status_code == 400 and "already exist" in e.detail:
bound_logger.info("Handling case of schema already existing on ledger")
bound_logger.debug("Fetching public DID for governance controller")
pub_did = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.wallet.get_public_did,
)
_schema_id = f"{pub_did.result.did}:2:{schema.name}:{schema.version}"
bound_logger.debug(
"Fetching schema id `{}` which is associated with request",
_schema_id,
)
_schema: SchemaGetResult = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.get_schema,
schema_id=_schema_id,
)
# Edge case where the governance agent has changed its public did
# Then we need to retrieve the schema in a different way as constructing the schema ID the way above
# will not be correct due to different public did.
if _schema.var_schema is None:
bound_logger.debug(
"Schema not found. Governance agent may have changed public DID. "
"Fetching schemas created by governance agent with request name and version"
)
schemas_created_ids = await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.get_created_schemas,
schema_name=schema.name,
schema_version=schema.version,
)
bound_logger.debug("Getting schemas associated with fetched ids")
schemas: List[SchemaGetResult] = [
await handle_acapy_call(
logger=bound_logger,
acapy_call=aries_controller.schema.get_schema,
schema_id=schema_id,
)
for schema_id in schemas_created_ids.schema_ids
if schema_id
]
if schemas:
if len(schemas) > 1:
raise CloudApiException(
f"Multiple schemas with name {schema.name} and version {schema.version} exist."
+ f"These are: `{str(schemas_created_ids.schema_ids)}`.",
409,
)
bound_logger.debug("Using updated schema id with new DID")
_schema: SchemaGetResult = schemas[0]
else:
# if schema already exists, we should at least fetch 1, so this should never happen
raise CloudApiException("Could not publish schema.", 500)
# Schema exists with different attributes
if set(_schema.var_schema.attr_names) != set(schema.attribute_names):
raise CloudApiException(
"Error creating schema: Schema already exists with different attribute names."
+ f"Given: `{str(set(_schema.var_schema.attr_names))}`. "
f"Found: `{str(set(schema.attribute_names))}`.",
409,
)
result = credential_schema_from_acapy(_schema.var_schema)
bound_logger.info(
"Schema already exists on ledger. Returning schema definition: `{}`.",
result,
)
return result
else:
bound_logger.warning(
"An unhandled Exception was caught while publishing schema. The error message is: '{}'.",
e.detail,
)
raise CloudApiException("Error while creating schema.") from e
# Register the schema in the trust registry
try:
if result.sent and result.sent.schema_id:
bound_logger.debug("Registering schema after successful publish to ledger")
await register_schema(schema_id=result.sent.schema_id)
else:
bound_logger.error("No SchemaSendResult in `publish_schema` response.")
raise CloudApiException(
"An unexpected error occurred: could not publish schema."
)
except TrustRegistryException as error:
# If status_code is 405 it means the schema already exists in the trust registry
# That's okay, because we've achieved our intended result:
# make sure the schema is registered in the trust registry
bound_logger.info(
"Caught TrustRegistryException when registering schema. "
"Got status code {} with message `{}`",
error.status_code,
error.detail,
)
if error.status_code == 405:
bound_logger.info(
"Status code 405 indicates schema is already registered, so we can continue"
)
else:
raise error
result = credential_schema_from_acapy(result.sent.var_schema)
bound_logger.info("Successfully published and registered schema.")
return result