Source code for aries_cloudagent.protocols.coordinate_mediation.v1_0.handlers.keylist_query_handler

"""Handler for keylist-query message."""

from .....messaging.base_handler import (
    BaseHandler,
    BaseResponder,
    HandlerException,
    RequestContext,
)
from .....storage.error import StorageNotFoundError
from ....problem_report.v1_0.message import ProblemReport
from ..manager import MediationManager, MediationNotGrantedError
from ..messages.keylist_query import KeylistQuery
from ..models.mediation_record import MediationRecord


[docs]class KeylistQueryHandler(BaseHandler): """Handler for keylist-query message."""
[docs] async def handle(self, context: RequestContext, responder: BaseResponder): """Handle keylist-query message.""" self._logger.debug( "%s called with context %s", self.__class__.__name__, context ) assert isinstance(context.message, KeylistQuery) if not context.connection_ready: raise HandlerException("Invalid keylist query: no active connection") mgr = MediationManager(context.profile) try: async with context.session() as session: record = await MediationRecord.retrieve_by_connection_id( session, context.connection_record.connection_id ) keylist = await mgr.get_keylist(record) keylist_response = await mgr.create_keylist_query_response(keylist) await responder.send_reply(keylist_response) except (StorageNotFoundError, MediationNotGrantedError): await responder.send_reply( ProblemReport( explain_ltxt="Mediation has not been granted for this connection." ) )