Skip to content

Commit ef5a0ca

Browse files
committed
fix: request won't have rotate
Signed-off-by: Daniel Bluhm <[email protected]>
1 parent b19da54 commit ef5a0ca

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

docker/setup/main.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from functools import partial, wraps
1515
import json
1616
from os import getenv
17-
from typing import Any, Awaitable, Callable, Optional, TypeVar, cast
17+
from typing import Any, Awaitable, Callable, Mapping, Optional, TypeVar, cast
1818

1919
from httpx import AsyncClient
2020

@@ -157,7 +157,7 @@ async def get_invite(self) -> str:
157157
)
158158
return invitation.invitation_url
159159

160-
async def receive_invitation(self, invite: dict) -> ConnRecord:
160+
async def receive_invitation(self, invite: dict) -> Mapping[str, Any]:
161161
oob_record = await self.controller.post(
162162
"/out-of-band/receive-invitation",
163163
json=invite,
@@ -166,7 +166,6 @@ async def receive_invitation(self, invite: dict) -> ConnRecord:
166166

167167
conn_record = await self.controller.record_with_values(
168168
"connections",
169-
record_type=ConnRecord,
170169
invitation_msg_id=oob_record["invi_msg_id"],
171170
rfc23_state="completed",
172171
)
@@ -220,10 +219,10 @@ async def main():
220219
conn_record = await agent.receive_invitation(invite)
221220

222221
print("Proxy and agent are now connected.")
223-
print(f"Proxy connection id: {conn_record.connection_id}")
222+
print(f"Proxy connection id: {conn_record['connection_id']}")
224223

225-
assert isinstance(conn_record.connection_id, str)
226-
mediation_id = await agent.request_mediation(conn_record.connection_id)
224+
assert isinstance(conn_record["connection_id"], str)
225+
mediation_id = await agent.request_mediation(conn_record["connection_id"])
227226
print("Proxy has granted mediation to agent.")
228227
print(f"Proxy mediation id: {mediation_id}")
229228

proxy_mediator/protocols/oob_didexchange.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def _filter(service: Service) -> bool:
250250

251251
async def doc_from_request_or_response(
252252
self, message: Message
253-
) -> Tuple[DIDDocument, bytes]:
253+
) -> Tuple[DIDDocument, Optional[bytes]]:
254254
"""Extract DID Document from a DID Exchange Request or Response."""
255255
if "did_doc~attach" in message:
256256
verified, signer = self.verify_signed_attachment(message["did_doc~attach"])
@@ -261,17 +261,15 @@ async def doc_from_request_or_response(
261261
normalized = LegacyDocCorrections.apply(doc)
262262
return deserialize_document(normalized), signer
263263

264-
elif "did_rotate~attach" in message:
264+
elif "response" in message.type and "did_rotate~attach" in message:
265265
verified, signer = self.verify_signed_attachment(
266266
message["did_rotate~attach"]
267267
)
268268
if not verified:
269269
raise ProtocolError("Invalid signature on DID Rotattion")
270270

271-
resolver = DIDResolver()
272-
return await resolver.resolve_and_parse(message["did"]), signer
273-
274-
raise ProtocolError("No DID Doc or DID Rotation attachment")
271+
resolver = DIDResolver()
272+
return await resolver.resolve_and_parse(message["did"]), None
275273

276274
@route
277275
@route(doc_uri=DIDCOMM_OLD)

0 commit comments

Comments
 (0)