Source code for aries_cloudagent.ledger.indy

"""Indy ledger implementation."""

import asyncio
import json
import logging
import tempfile
from datetime import date, datetime
from io import StringIO
from os import path
from time import time
from typing import TYPE_CHECKING, List, Optional, Tuple

import indy.ledger
import indy.pool
from indy.error import ErrorCode, IndyError

from ..cache.base import BaseCache
from ..config.base import BaseInjector, BaseProvider, BaseSettings
from ..indy.sdk.error import IndyErrorHandler
from ..storage.base import StorageRecord
from ..storage.indy import IndySdkStorage
from ..utils import sentinel
from ..wallet.base import BaseWallet
from ..wallet.did_info import DIDInfo
from ..wallet.did_posture import DIDPosture
from ..wallet.error import WalletNotFoundError
from ..wallet.util import full_verkey
from .base import BaseLedger, Role
from .endpoint_type import EndpointType
from .error import (
    BadLedgerRequestError,
    ClosedPoolError,
    LedgerConfigError,
    LedgerError,
    LedgerTransactionError,
)
from .util import TAA_ACCEPTED_RECORD_TYPE

if TYPE_CHECKING:
    from ..indy.sdk.profile import IndySdkProfile

LOGGER = logging.getLogger(__name__)

GENESIS_TRANSACTION_FILE = "indy_genesis_transactions.txt"


def _normalize_txns(txns: str) -> str:
    """Normalize a set of genesis transactions."""
    lines = StringIO()
    for line in txns.splitlines():
        line = line.strip()
        if line:
            lines.write(line)
            lines.write("\n")
    return lines.getvalue()


[docs]class IndySdkLedgerPoolProvider(BaseProvider): """Indy ledger pool provider which keys off the selected pool name."""
[docs] def provide(self, settings: BaseSettings, injector: BaseInjector): """Create and open the pool instance.""" pool_name = settings.get("ledger.pool_name", "default") keepalive = int(settings.get("ledger.keepalive", 5)) read_only = bool(settings.get("ledger.read_only", False)) socks_proxy = settings.get("ledger.socks_proxy") if read_only: LOGGER.warning("Note: setting ledger to read-only mode") genesis_transactions = settings.get("ledger.genesis_transactions") cache = injector.inject_or(BaseCache) ledger_pool = IndySdkLedgerPool( pool_name, keepalive=keepalive, cache=cache, genesis_transactions=genesis_transactions, read_only=read_only, socks_proxy=socks_proxy, ) return ledger_pool
[docs]class IndySdkLedgerPool: """Indy ledger manager class.""" def __init__( self, name: str, *, checked: bool = False, keepalive: int = 0, cache: BaseCache = None, cache_duration: int = 600, genesis_transactions: str = None, read_only: bool = False, socks_proxy: str = None, ): """Initialize an IndySdkLedgerPool instance. Args: name: The Indy pool ledger configuration name keepalive: How many seconds to keep the ledger open cache: The cache instance to use cache_duration: The TTL for ledger cache entries genesis_transactions: The ledger genesis transaction as a string read_only: Prevent any ledger write operations socks_proxy: Specifies socks proxy for ZMQ to connect to ledger pool """ self.checked = checked self.opened = False self.ref_count = 0 self.ref_lock = asyncio.Lock() self.keepalive = keepalive self.close_task: asyncio.Future = None self.cache = cache self.cache_duration = cache_duration self.genesis_transactions = genesis_transactions self.genesis_txns_cache = genesis_transactions self.handle = None self.name = name self.taa_cache = None self.read_only = read_only self.socks_proxy = socks_proxy @property def genesis_txns(self) -> str: """Get the configured genesis transactions.""" if not self.genesis_txns_cache: try: txn_path = path.join( tempfile.gettempdir(), f"{self.name}_{GENESIS_TRANSACTION_FILE}" ) self.genesis_txns_cache = _normalize_txns(open(txn_path).read()) except FileNotFoundError: raise LedgerConfigError( "Pool config '%s' not found", self.name ) from None return self.genesis_txns_cache
[docs] async def create_pool_config( self, genesis_transactions: str, recreate: bool = False ): """Create the pool ledger configuration.""" # indy-sdk requires a file to pass the pool configuration # the file path includes the pool name to avoid conflicts txn_path = path.join( tempfile.gettempdir(), f"{self.name}_{GENESIS_TRANSACTION_FILE}" ) with open(txn_path, "w") as genesis_file: genesis_file.write(genesis_transactions) pool_config = json.dumps({"genesis_txn": txn_path}) if await self.check_pool_config(): if recreate: LOGGER.debug("Removing existing ledger config") await indy.pool.delete_pool_ledger_config(self.name) else: raise LedgerConfigError( "Ledger pool configuration already exists: %s", self.name ) LOGGER.debug("Creating pool ledger config") with IndyErrorHandler( "Exception creating pool ledger config", LedgerConfigError ): await indy.pool.create_pool_ledger_config(self.name, pool_config)
[docs] async def check_pool_config(self) -> bool: """Check if a pool config has been created.""" pool_names = {cfg["pool"] for cfg in await indy.pool.list_pools()} return self.name in pool_names
[docs] async def open(self): """Open the pool ledger, creating it if necessary.""" if self.genesis_transactions: await self.create_pool_config(self.genesis_transactions, True) self.genesis_transactions = None self.checked = True elif not self.checked: if not await self.check_pool_config(): raise LedgerError("Ledger pool configuration has not been created") self.checked = True # We only support proto ver 2 with IndyErrorHandler( "Exception setting ledger protocol version", LedgerConfigError ): await indy.pool.set_protocol_version(2) with IndyErrorHandler( f"Exception opening pool ledger {self.name}", LedgerConfigError ): pool_config = json.dumps({}) if self.socks_proxy is not None: pool_config = json.dumps({"socks_proxy": self.socks_proxy}) LOGGER.debug("Open pool with config: %s", pool_config) self.handle = await indy.pool.open_pool_ledger(self.name, pool_config) self.opened = True
[docs] async def close(self): """Close the pool ledger.""" if self.opened: exc = None for _attempt in range(3): try: await indy.pool.close_pool_ledger(self.handle) except IndyError as err: await asyncio.sleep(0.01) exc = err continue self.handle = None self.opened = False exc = None break if exc: LOGGER.error("Exception closing pool ledger") self.ref_count += 1 # if we are here, we should have self.ref_lock self.close_task = None raise IndyErrorHandler.wrap_error( exc, "Exception closing pool ledger", LedgerError )
[docs] async def context_open(self): """Open the ledger if necessary and increase the number of active references.""" async with self.ref_lock: if self.close_task: self.close_task.cancel() if not self.opened: LOGGER.debug("Opening the pool ledger") await self.open() self.ref_count += 1
[docs] async def context_close(self): """Release the reference and schedule closing of the pool ledger.""" async def closer(timeout: int): """Close the pool ledger after a timeout.""" await asyncio.sleep(timeout) async with self.ref_lock: if not self.ref_count: LOGGER.debug("Closing pool ledger after timeout") await self.close() async with self.ref_lock: self.ref_count -= 1 if not self.ref_count: if self.keepalive: self.close_task = asyncio.ensure_future(closer(self.keepalive)) else: await self.close()
[docs]class IndySdkLedger(BaseLedger): """Indy ledger class.""" BACKEND_NAME = "indy" def __init__( self, pool: IndySdkLedgerPool, profile: "IndySdkProfile", ): """Initialize an IndySdkLedger instance. Args: pool: The pool instance handling the raw ledger connection profile: The IndySdkProfile instance """ self.pool = pool self.profile = profile @property def pool_handle(self): """Accessor for the ledger pool handle.""" return self.pool.handle @property def pool_name(self) -> str: """Accessor for the ledger pool name.""" return self.pool.name @property def read_only(self) -> bool: """Accessor for the ledger read-only flag.""" return self.pool.read_only
[docs] async def is_ledger_read_only(self) -> bool: """Check if ledger is read-only including TAA.""" if self.read_only: return self.read_only # if TAA is required and not accepted we should be in read-only mode taa = await self.get_txn_author_agreement() if taa["taa_required"]: taa_acceptance = await self.get_latest_txn_author_acceptance() if "mechanism" not in taa_acceptance: return True return self.read_only
async def __aenter__(self) -> "IndySdkLedger": """Context manager entry. Returns: The current instance """ await super().__aenter__() await self.pool.context_open() return self async def __aexit__(self, exc_type, exc, tb): """Context manager exit.""" await self.pool.context_close() await super().__aexit__(exc_type, exc, tb)
[docs] async def get_wallet_public_did(self) -> DIDInfo: """Fetch the public DID from the wallet.""" async with self.profile.session() as session: wallet = session.inject(BaseWallet) return await wallet.get_public_did()
async def _endorse( self, request_json: str, endorse_did: DIDInfo = None, ) -> str: if not self.pool.handle: raise ClosedPoolError( f"Cannot endorse request with closed pool '{self.pool.name}'" ) public_info = endorse_did if endorse_did else await self.get_wallet_public_did() if not public_info: raise BadLedgerRequestError( "Cannot endorse transaction without a public DID" ) endorsed_request_json = await indy.ledger.multi_sign_request( self.profile.wallet.handle, public_info.did, request_json ) return endorsed_request_json async def _submit( self, request_json: str, sign: bool = None, taa_accept: bool = None, sign_did: DIDInfo = sentinel, write_ledger: bool = True, ) -> str: """Sign and submit request to ledger. Args: request_json: The json string to submit sign: whether or not to sign the request taa_accept: whether to apply TAA acceptance to the (signed, write) request sign_did: override the signing DID write_ledger: skip the request submission """ if not self.pool.handle: raise ClosedPoolError( f"Cannot sign and submit request to closed pool '{self.pool.name}'" ) if sign is None or sign: if sign_did is sentinel: sign_did = await self.get_wallet_public_did() if sign is None: sign = bool(sign_did) if taa_accept is None and sign: taa_accept = True if sign: if not sign_did: raise BadLedgerRequestError("Cannot sign request without a public DID") if taa_accept: acceptance = await self.get_latest_txn_author_acceptance() if acceptance: # flake8 and black 23.1.0 check collision fix # fmt: off request_json = await ( indy.ledger.append_txn_author_agreement_acceptance_to_request( request_json, acceptance["text"], acceptance["version"], acceptance["digest"], acceptance["mechanism"], acceptance["time"], ) ) # fmt: on if write_ledger: submit_op = indy.ledger.sign_and_submit_request( self.pool.handle, self.profile.wallet.handle, sign_did.did, request_json, ) else: # multi-sign, since we expect this to get endorsed later submit_op = indy.ledger.multi_sign_request( self.profile.wallet.handle, sign_did.did, request_json ) else: submit_op = indy.ledger.submit_request(self.pool.handle, request_json) with IndyErrorHandler( "Exception raised by ledger transaction", LedgerTransactionError ): request_result_json = await submit_op if sign and not write_ledger: return request_result_json request_result = json.loads(request_result_json) operation = request_result.get("op", "") if operation in ("REQNACK", "REJECT"): raise LedgerTransactionError( f"Ledger rejected transaction request: {request_result['reason']}" ) elif operation == "REPLY": return request_result_json else: raise LedgerTransactionError( f"Unexpected operation code from ledger: {operation}" )
[docs] async def txn_endorse( self, request_json: str, endorse_did: DIDInfo = None, ) -> str: """Endorse a (signed) ledger transaction.""" return await self._endorse(request_json, endorse_did=endorse_did)
[docs] async def txn_submit( self, request_json: str, sign: bool = None, taa_accept: bool = None, sign_did: DIDInfo = sentinel, write_ledger: bool = True, ) -> str: """Submit a signed (and endorsed) transaction to the ledger.""" return await self._submit( request_json, sign=sign, taa_accept=taa_accept, sign_did=sign_did, write_ledger=write_ledger, )
async def _create_schema_request( self, public_info: DIDInfo, schema_json: str, write_ledger: bool = True, endorser_did: str = None, ): """Create the ledger request for publishing a schema.""" with IndyErrorHandler("Exception building schema request", LedgerError): request_json = await indy.ledger.build_schema_request( public_info.did, schema_json ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) return request_json async def _create_revoc_reg_def_request( self, public_info: DIDInfo, revoc_reg_def_json: str, write_ledger: bool = True, endorser_did: str = None, ): """Create the ledger request for publishing a revocation registry definition.""" with IndyErrorHandler("Exception building revoc reg def request", LedgerError): request_json = await indy.ledger.build_revoc_reg_def_request( public_info.did, revoc_reg_def_json ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) return request_json
[docs] async def get_schema(self, schema_id: str) -> dict: """Get a schema from the cache if available, otherwise fetch from the ledger. Args: schema_id: The schema id (or stringified sequence number) to retrieve """ if self.pool.cache: result = await self.pool.cache.get(f"schema::{schema_id}") if result: return result if schema_id.isdigit(): return await self.fetch_schema_by_seq_no(int(schema_id)) else: return await self.fetch_schema_by_id(schema_id)
[docs] async def fetch_schema_by_id(self, schema_id: str) -> dict: """Get schema from ledger. Args: schema_id: The schema id (or stringified sequence number) to retrieve Returns: Indy schema dict """ public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None with IndyErrorHandler("Exception building schema request", LedgerError): request_json = await indy.ledger.build_get_schema_request( public_did, schema_id ) response_json = await self._submit(request_json, sign_did=public_info) response = json.loads(response_json) if not response["result"]["seqNo"]: # schema not found return None with IndyErrorHandler("Exception parsing schema response", LedgerError): _, parsed_schema_json = await indy.ledger.parse_get_schema_response( response_json ) parsed_response = json.loads(parsed_schema_json) if parsed_response and self.pool.cache: await self.pool.cache.set( [f"schema::{schema_id}", f"schema::{response['result']['seqNo']}"], parsed_response, self.pool.cache_duration, ) return parsed_response
[docs] async def fetch_schema_by_seq_no(self, seq_no: int) -> dict: """Fetch a schema by its sequence number. Args: seq_no: schema ledger sequence number Returns: Indy schema dict """ # get txn by sequence number, retrieve schema identifier components request_json = await indy.ledger.build_get_txn_request( None, None, seq_no=seq_no ) response = json.loads(await self._submit(request_json)) # transaction data format assumes node protocol >= 1.4 (circa 2018-07) data_txn = (response["result"].get("data", {}) or {}).get("txn", {}) if data_txn.get("type", None) == "101": # marks indy-sdk schema txn type (origin_did, name, version) = ( data_txn["metadata"]["from"], data_txn["data"]["data"]["name"], data_txn["data"]["data"]["version"], ) schema_id = f"{origin_did}:2:{name}:{version}" return await self.get_schema(schema_id) raise LedgerTransactionError( f"Could not get schema from ledger for seq no {seq_no}" )
async def _create_credential_definition_request( self, public_info: DIDInfo, credential_definition_json: str, write_ledger: bool = True, endorser_did: str = None, ): """Create the ledger request for publishing a credential definition.""" with IndyErrorHandler("Exception building cred def request", LedgerError): request_json = await indy.ledger.build_cred_def_request( public_info.did, credential_definition_json ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) return request_json
[docs] async def get_credential_definition(self, credential_definition_id: str) -> dict: """Get a credential definition from the cache if available, otherwise the ledger. Args: credential_definition_id: The schema id of the schema to fetch cred def for """ if self.pool.cache: result = await self.pool.cache.get( f"credential_definition::{credential_definition_id}" ) if result: return result return await self.fetch_credential_definition(credential_definition_id)
[docs] async def fetch_credential_definition(self, credential_definition_id: str) -> dict: """Get a credential definition from the ledger by id. Args: credential_definition_id: The cred def id of the cred def to fetch """ public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None with IndyErrorHandler("Exception building cred def request", LedgerError): request_json = await indy.ledger.build_get_cred_def_request( public_did, credential_definition_id ) response_json = await self._submit(request_json, sign_did=public_info) with IndyErrorHandler("Exception parsing cred def response", LedgerError): try: ( _, parsed_credential_definition_json, ) = await indy.ledger.parse_get_cred_def_response(response_json) parsed_response = json.loads(parsed_credential_definition_json) except IndyError as error: if error.error_code == ErrorCode.LedgerNotFound: parsed_response = None else: raise if parsed_response and self.pool.cache: await self.pool.cache.set( f"credential_definition::{credential_definition_id}", parsed_response, self.pool.cache_duration, ) return parsed_response
[docs] async def credential_definition_id2schema_id(self, credential_definition_id): """From a credential definition, get the identifier for its schema. Args: credential_definition_id: The identifier of the credential definition from which to identify a schema """ # scrape schema id or sequence number from cred def id tokens = credential_definition_id.split(":") if len(tokens) == 8: # node protocol >= 1.4: cred def id has 5 or 8 tokens return ":".join(tokens[3:7]) # schema id spans 0-based positions 3-6 # get txn by sequence number, retrieve schema identifier components seq_no = tokens[3] return (await self.get_schema(seq_no))["id"]
[docs] async def get_key_for_did(self, did: str) -> str: """Fetch the verkey for a ledger DID. Args: did: The DID to look up on the ledger or in the cache """ nym = self.did_to_nym(did) public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None with IndyErrorHandler("Exception building nym request", LedgerError): request_json = await indy.ledger.build_get_nym_request(public_did, nym) response_json = await self._submit(request_json, sign_did=public_info) data_json = (json.loads(response_json))["result"]["data"] return full_verkey(did, json.loads(data_json)["verkey"]) if data_json else None
[docs] async def get_all_endpoints_for_did(self, did: str) -> dict: """Fetch all endpoints for a ledger DID. Args: did: The DID to look up on the ledger or in the cache """ nym = self.did_to_nym(did) public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None with IndyErrorHandler("Exception building attribute request", LedgerError): request_json = await indy.ledger.build_get_attrib_request( public_did, nym, "endpoint", None, None ) response_json = await self._submit(request_json, sign_did=public_info) data_json = json.loads(response_json)["result"]["data"] if data_json: endpoints = json.loads(data_json).get("endpoint", None) else: endpoints = None return endpoints
[docs] async def get_endpoint_for_did( self, did: str, endpoint_type: EndpointType = None ) -> str: """Fetch the endpoint for a ledger DID. Args: did: The DID to look up on the ledger or in the cache endpoint_type: The type of the endpoint. If none given, returns all """ if not endpoint_type: endpoint_type = EndpointType.ENDPOINT nym = self.did_to_nym(did) public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None with IndyErrorHandler("Exception building attribute request", LedgerError): request_json = await indy.ledger.build_get_attrib_request( public_did, nym, "endpoint", None, None ) response_json = await self._submit(request_json, sign_did=public_info) data_json = json.loads(response_json)["result"]["data"] if data_json: endpoint = json.loads(data_json).get("endpoint", None) address = endpoint.get(endpoint_type.indy, None) if endpoint else None else: address = None return address
[docs] async def update_endpoint_for_did( self, did: str, endpoint: str, endpoint_type: EndpointType = None, write_ledger: bool = True, endorser_did: str = None, routing_keys: List[str] = None, ) -> bool: """Check and update the endpoint on the ledger. Args: did: The ledger DID endpoint: The endpoint address endpoint_type: The type of the endpoint """ public_info = await self.get_wallet_public_did() if not public_info: raise BadLedgerRequestError( "Cannot update endpoint at ledger without a public DID" ) if not endpoint_type: endpoint_type = EndpointType.ENDPOINT all_exist_endpoints = await self.get_all_endpoints_for_did(did) exist_endpoint_of_type = ( all_exist_endpoints.get(endpoint_type.indy, None) if all_exist_endpoints else None ) if exist_endpoint_of_type != endpoint: if await self.is_ledger_read_only(): raise LedgerError( "Error cannot update endpoint when ledger is in read only mode, " "or TAA is required and not accepted" ) nym = self.did_to_nym(did) attr_json = await self._construct_attr_json( endpoint, endpoint_type, all_exist_endpoints, routing_keys ) with IndyErrorHandler("Exception building attribute request", LedgerError): request_json = await indy.ledger.build_attrib_request( nym, nym, None, attr_json, None ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) resp = await self._submit( request_json, sign=True, sign_did=public_info, write_ledger=write_ledger, ) if not write_ledger: return {"signed_txn": resp} await self._submit(request_json, True, True) return True return False
[docs] async def register_nym( self, did: str, verkey: str, alias: str = None, role: str = None, write_ledger: bool = True, endorser_did: str = None, ) -> Tuple[bool, dict]: """Register a nym on the ledger. Args: did: DID to register on the ledger. verkey: The verification key of the keypair. alias: Human-friendly alias to assign to the DID. role: For permissioned ledgers, what role should the new DID have. """ if await self.is_ledger_read_only(): raise LedgerError( "Error cannot register nym when ledger is in read only mode, " "or TAA is required and not accepted" ) public_info = await self.get_wallet_public_did() if not public_info: raise WalletNotFoundError( f"Cannot register NYM to ledger: wallet {self.profile.name} " "has no public DID" ) with IndyErrorHandler("Exception building nym request", LedgerError): request_json = await indy.ledger.build_nym_request( public_info.did, did, verkey, alias, role ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) resp = await self._submit( request_json, sign=True, sign_did=public_info, write_ledger=write_ledger ) # let ledger raise on insufficient privilege if not write_ledger: return True, {"signed_txn": resp} async with self.profile.session() as session: wallet = session.inject(BaseWallet) try: did_info = await wallet.get_local_did(did) except WalletNotFoundError: pass # registering another user's NYM else: metadata = {**did_info.metadata, **DIDPosture.POSTED.metadata} await wallet.replace_local_did_metadata(did, metadata) return True, None
[docs] async def get_nym_role(self, did: str) -> Role: """Return the role of the input public DID's NYM on the ledger. Args: did: DID to query for role on the ledger. """ public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None with IndyErrorHandler("Exception building get-nym request", LedgerError): request_json = await indy.ledger.build_get_nym_request(public_did, did) response_json = await self._submit(request_json) response = json.loads(response_json) nym_data = json.loads(response["result"]["data"]) if not nym_data: raise BadLedgerRequestError(f"DID {did} is not public") return Role.get(nym_data["role"])
[docs] def nym_to_did(self, nym: str) -> str: """Format a nym with the ledger's DID prefix.""" if nym: # remove any existing prefix nym = self.did_to_nym(nym) return f"did:sov:{nym}"
[docs] async def build_and_return_get_nym_request( self, submitter_did: Optional[str], target_did: str ) -> str: """Build GET_NYM request and return request_json.""" with IndyErrorHandler("Exception building nym request", LedgerError): request_json = await indy.ledger.build_get_nym_request( submitter_did, target_did ) return request_json
[docs] async def submit_get_nym_request(self, request_json: str) -> str: """Submit GET_NYM request to ledger and return response_json.""" response_json = await self._submit(request_json) return response_json
[docs] async def rotate_public_did_keypair(self, next_seed: str = None) -> None: """Rotate keypair for public DID: create new key, submit to ledger, update wallet. Args: next_seed: seed for incoming ed25519 keypair (default random) """ # generate new key public_info = await self.get_wallet_public_did() public_did = public_info.did async with self.profile.session() as session: wallet = session.inject(BaseWallet) verkey = await wallet.rotate_did_keypair_start(public_did, next_seed) # submit to ledger (retain role and alias) nym = self.did_to_nym(public_did) with IndyErrorHandler("Exception building nym request", LedgerError): request_json = await indy.ledger.build_get_nym_request(public_did, nym) response_json = await self._submit(request_json) data = json.loads((json.loads(response_json))["result"]["data"]) if not data: raise BadLedgerRequestError( f"Ledger has no public DID for wallet {self.profile.name}" ) seq_no = data["seqNo"] with IndyErrorHandler("Exception building get-txn request", LedgerError): txn_req_json = await indy.ledger.build_get_txn_request(None, None, seq_no) txn_resp_json = await self._submit(txn_req_json) txn_resp = json.loads(txn_resp_json) txn_resp_data = txn_resp["result"]["data"] if not txn_resp_data: raise BadLedgerRequestError( f"Bad or missing ledger NYM transaction for DID {public_did}" ) txn_data_data = txn_resp_data["txn"]["data"] role_token = Role.get(txn_data_data.get("role")).token() alias = txn_data_data.get("alias") await self.register_nym(public_did, verkey, role_token, alias) # update wallet async with self.profile.session() as session: wallet = session.inject(BaseWallet) await wallet.rotate_did_keypair_apply(public_did)
[docs] async def get_txn_author_agreement(self, reload: bool = False) -> dict: """Get the current transaction author agreement, fetching it if necessary.""" if not self.pool.taa_cache or reload: self.pool.taa_cache = await self.fetch_txn_author_agreement() return self.pool.taa_cache
[docs] async def fetch_txn_author_agreement(self) -> dict: """Fetch the current AML and TAA from the ledger.""" public_info = await self.get_wallet_public_did() public_did = public_info.did if public_info else None get_aml_req = await indy.ledger.build_get_acceptance_mechanisms_request( public_did, None, None ) response_json = await self._submit(get_aml_req, sign_did=public_info) aml_found = (json.loads(response_json))["result"]["data"] get_taa_req = await indy.ledger.build_get_txn_author_agreement_request( public_did, None ) response_json = await self._submit(get_taa_req, sign_did=public_info) taa_found = (json.loads(response_json))["result"]["data"] taa_required = bool(taa_found and taa_found["text"]) if taa_found: taa_found["digest"] = self.taa_digest( taa_found["version"], taa_found["text"] ) return { "aml_record": aml_found, "taa_record": taa_found, "taa_required": taa_required, }
[docs] async def get_indy_storage(self) -> IndySdkStorage: """Get an IndySdkStorage instance for the current wallet.""" return IndySdkStorage(self.profile.wallet)
[docs] def taa_rough_timestamp(self) -> int: """Get a timestamp accurate to the day. Anything more accurate is a privacy concern. """ return int( datetime.combine( date.today(), datetime.min.time(), datetime.timezone.utc ).timestamp() )
[docs] async def accept_txn_author_agreement( self, taa_record: dict, mechanism: str, accept_time: int = None ): """Save a new record recording the acceptance of the TAA.""" if not accept_time: accept_time = self.taa_rough_timestamp() acceptance = { "text": taa_record["text"], "version": taa_record["version"], "digest": taa_record["digest"], "mechanism": mechanism, "time": accept_time, } record = StorageRecord( TAA_ACCEPTED_RECORD_TYPE, json.dumps(acceptance), {"pool_name": self.pool.name}, ) storage = await self.get_indy_storage() await storage.add_record(record) if self.pool.cache: cache_key = ( TAA_ACCEPTED_RECORD_TYPE + "::" + self.profile.name + "::" + self.pool.name + "::" ) await self.pool.cache.set(cache_key, acceptance, self.pool.cache_duration)
[docs] async def get_latest_txn_author_acceptance(self) -> dict: """Look up the latest TAA acceptance.""" cache_key = ( TAA_ACCEPTED_RECORD_TYPE + "::" + self.profile.name + "::" + self.pool.name + "::" ) acceptance = self.pool.cache and await self.pool.cache.get(cache_key) if not acceptance: storage = await self.get_indy_storage() tag_filter = {"pool_name": self.pool.name} found = await storage.find_all_records(TAA_ACCEPTED_RECORD_TYPE, tag_filter) if found: records = [json.loads(record.value) for record in found] records.sort(key=lambda v: v["time"], reverse=True) acceptance = records[0] else: acceptance = {} if self.pool.cache: await self.pool.cache.set( cache_key, acceptance, self.pool.cache_duration ) return acceptance
[docs] async def get_revoc_reg_def(self, revoc_reg_id: str) -> dict: """Get revocation registry definition by ID; augment with ledger timestamp.""" public_info = await self.get_wallet_public_did() try: fetch_req = await indy.ledger.build_get_revoc_reg_def_request( public_info and public_info.did, revoc_reg_id ) response_json = await self._submit(fetch_req, sign_did=public_info) ( found_id, found_def_json, ) = await indy.ledger.parse_get_revoc_reg_def_response(response_json) found_def = json.loads(found_def_json) found_def["txnTime"] = json.loads(response_json)["result"]["txnTime"] except IndyError as e: LOGGER.error( f"get_revoc_reg_def failed with revoc_reg_id={revoc_reg_id} - " f"{e.error_code}: {getattr(e, 'message', '[no message]')}" ) raise e assert found_id == revoc_reg_id return found_def
[docs] async def get_revoc_reg_entry(self, revoc_reg_id: str, timestamp: int): """Get revocation registry entry by revocation registry ID and timestamp.""" public_info = await self.get_wallet_public_did() with IndyErrorHandler("Exception fetching rev reg entry", LedgerError): try: fetch_req = await indy.ledger.build_get_revoc_reg_request( public_info and public_info.did, revoc_reg_id, timestamp ) response_json = await self._submit(fetch_req, sign_did=public_info) ( found_id, found_reg_json, ledger_timestamp, ) = await indy.ledger.parse_get_revoc_reg_response(response_json) except IndyError as e: LOGGER.error( f"get_revoc_reg_entry failed with revoc_reg_id={revoc_reg_id} - " f"{e.error_code}: {getattr(e, 'message', '[no message]')}" ) raise e assert found_id == revoc_reg_id return json.loads(found_reg_json), ledger_timestamp
[docs] async def get_revoc_reg_delta( self, revoc_reg_id: str, fro=0, to=None ) -> Tuple[dict, int]: """Look up a revocation registry delta by ID. :param revoc_reg_id revocation registry id :param fro earliest EPOCH time of interest :param to latest EPOCH time of interest :returns delta response, delta timestamp """ if to is None: to = int(time()) public_info = await self.get_wallet_public_did() with IndyErrorHandler("Exception building rev reg delta request", LedgerError): fetch_req = await indy.ledger.build_get_revoc_reg_delta_request( public_info and public_info.did, revoc_reg_id, 0 if fro == to else fro, to, ) response_json = await self._submit(fetch_req, sign_did=public_info) with IndyErrorHandler( ( "Exception parsing rev reg delta response " "(interval ends before rev reg creation?)" ), LedgerError, ): ( found_id, found_delta_json, delta_timestamp, ) = await indy.ledger.parse_get_revoc_reg_delta_response(response_json) assert found_id == revoc_reg_id return json.loads(found_delta_json), delta_timestamp
[docs] async def send_revoc_reg_def( self, revoc_reg_def: dict, issuer_did: str = None, write_ledger: bool = True, endorser_did: str = None, ) -> dict: """Publish a revocation registry definition to the ledger.""" # NOTE - issuer DID could be extracted from the revoc_reg_def ID if issuer_did: async with self.profile.session() as session: wallet = session.inject(BaseWallet) did_info = await wallet.get_local_did(issuer_did) else: did_info = await self.get_wallet_public_did() if not did_info: raise LedgerTransactionError( "No issuer DID found for revocation registry definition" ) if self.profile.context.settings.get("wallet.type") == "askar-anoncreds": from aries_cloudagent.anoncreds.default.legacy_indy.registry import ( LegacyIndyRegistry, ) rev_reg_def_req = await self._create_revoc_reg_def_request( did_info, json.dumps(revoc_reg_def), write_ledger=write_ledger, endorser_did=endorser_did, ) legacy_indy_registry = LegacyIndyRegistry() resp = await legacy_indy_registry.txn_submit( self.profile, rev_reg_def_req, sign=True, sign_did=did_info, write_ledger=write_ledger, ) if not write_ledger: return revoc_reg_def["id"], {"signed_txn": resp} try: # parse sequence number out of response seq_no = json.loads(resp)["result"]["txnMetadata"]["seqNo"] return seq_no except KeyError as err: raise LedgerError( "Failed to parse sequence number from ledger response" ) from err else: with IndyErrorHandler("Exception building rev reg def", LedgerError): request_json = await indy.ledger.build_revoc_reg_def_request( did_info.did, json.dumps(revoc_reg_def) ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) resp = await self._submit( request_json, True, sign_did=did_info, write_ledger=write_ledger ) return {"result": resp}
[docs] async def send_revoc_reg_entry( self, revoc_reg_id: str, revoc_def_type: str, revoc_reg_entry: dict, issuer_did: str = None, write_ledger: bool = True, endorser_did: str = None, ) -> dict: """Publish a revocation registry entry to the ledger.""" if issuer_did: async with self.profile.session() as session: wallet = session.inject(BaseWallet) did_info = await wallet.get_local_did(issuer_did) else: did_info = await self.get_wallet_public_did() if not did_info: raise LedgerTransactionError( "No issuer DID found for revocation registry entry" ) if self.profile.context.settings.get("wallet.type") == "askar-anoncreds": from aries_cloudagent.anoncreds.default.legacy_indy.registry import ( LegacyIndyRegistry, ) rev_reg_def_entry_req = await self._create_revoc_reg_def_request( did_info, json.dumps(revoc_reg_entry), write_ledger=write_ledger, endorser_did=endorser_did, ) legacy_indy_registry = LegacyIndyRegistry() resp = await legacy_indy_registry.txn_submit( self.profile, rev_reg_def_entry_req, sign=True, sign_did=did_info, write_ledger=write_ledger, ) if not write_ledger: return rev_reg_def_entry_req["id"], {"signed_txn": resp} try: # parse sequence number out of response seq_no = json.loads(resp)["result"]["txnMetadata"]["seqNo"] return seq_no except KeyError as err: raise LedgerError( "Failed to parse sequence number from ledger response" ) from err else: with IndyErrorHandler("Exception building rev reg entry", LedgerError): request_json = await indy.ledger.build_revoc_reg_entry_request( did_info.did, revoc_reg_id, revoc_def_type, json.dumps(revoc_reg_entry), ) if endorser_did and not write_ledger: request_json = await indy.ledger.append_request_endorser( request_json, endorser_did ) resp = await self._submit( request_json, True, sign_did=did_info, write_ledger=write_ledger ) return {"result": resp}