Source code for aries_cloudagent.messaging.connections.handlers.connection_invitation_handler

"""Connect invitation handler."""

from ...base_handler import BaseHandler, BaseResponder, RequestContext
from ..messages.connection_invitation import ConnectionInvitation
from ..messages.problem_report import ProblemReport, ProblemReportReason


[docs]class ConnectionInvitationHandler(BaseHandler): """Handler class for connection invitations."""
[docs] async def handle(self, context: RequestContext, responder: BaseResponder): """ Handle connection invitation. Args: context: Request context responder: Responder callback """ self._logger.debug(f"ConnectionInvitationHandler called with context {context}") assert isinstance(context.message, ConnectionInvitation) report = ProblemReport( problem_code=ProblemReportReason.INVITATION_NOT_ACCEPTED, explain="Connection invitations cannot be submitted via agent messaging", ) # client likely needs to be using direct responses to receive the problem report await responder.send_reply(report)