forked from openwallet-foundation/acapy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
alice.py
244 lines (210 loc) · 7.73 KB
/
alice.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
import asyncio
import base64
import binascii
import json
import logging
import os
import sys
from urllib.parse import urlparse
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
from runners.agent_container import ( # noqa:E402
arg_parser,
create_agent_with_args,
AriesAgent,
)
from runners.support.utils import ( # noqa:E402
check_requires,
log_msg,
log_status,
log_timer,
prompt,
prompt_loop,
)
logging.basicConfig(level=logging.WARNING)
LOGGER = logging.getLogger(__name__)
class AliceAgent(AriesAgent):
def __init__(
self,
ident: str,
http_port: int,
admin_port: int,
no_auto: bool = False,
aip: int = 20,
endorser_role: str = None,
**kwargs,
):
super().__init__(
ident,
http_port,
admin_port,
prefix="Alice",
no_auto=no_auto,
seed=None,
aip=aip,
endorser_role=endorser_role,
**kwargs,
)
self.connection_id = None
self._connection_ready = None
self.cred_state = {}
async def detect_connection(self):
await self._connection_ready
self._connection_ready = None
@property
def connection_ready(self):
return self._connection_ready.done() and self._connection_ready.result()
async def input_invitation(agent_container):
agent_container.agent._connection_ready = asyncio.Future()
async for details in prompt_loop("Invite details: "):
b64_invite = None
try:
url = urlparse(details)
query = url.query
if query and "c_i=" in query:
pos = query.index("c_i=") + 4
b64_invite = query[pos:]
elif query and "oob=" in query:
pos = query.index("oob=") + 4
b64_invite = query[pos:]
else:
b64_invite = details
except ValueError:
b64_invite = details
if b64_invite:
try:
padlen = 4 - len(b64_invite) % 4
if padlen <= 2:
b64_invite += "=" * padlen
invite_json = base64.urlsafe_b64decode(b64_invite)
details = invite_json.decode("utf-8")
except binascii.Error:
pass
except UnicodeDecodeError:
pass
if details:
try:
details = json.loads(details)
break
except json.JSONDecodeError as e:
log_msg("Invalid invitation:", str(e))
with log_timer("Connect duration:"):
connection = await agent_container.input_invitation(details, wait=True)
async def main(args):
alice_agent = await create_agent_with_args(args, ident="alice")
try:
log_status(
"#7 Provision an agent and wallet, get back configuration details"
+ (
f" (Wallet type: {alice_agent.wallet_type})"
if alice_agent.wallet_type
else ""
)
)
agent = AliceAgent(
"alice.agent",
alice_agent.start_port,
alice_agent.start_port + 1,
genesis_data=alice_agent.genesis_txns,
genesis_txn_list=alice_agent.genesis_txn_list,
no_auto=alice_agent.no_auto,
tails_server_base_url=alice_agent.tails_server_base_url,
revocation=alice_agent.revocation,
timing=alice_agent.show_timing,
multitenant=alice_agent.multitenant,
mediation=alice_agent.mediation,
wallet_type=alice_agent.wallet_type,
aip=alice_agent.aip,
endorser_role=alice_agent.endorser_role,
)
await alice_agent.initialize(the_agent=agent)
log_status("#9 Input faber.py invitation details")
await input_invitation(alice_agent)
options = " (3) Send Message\n" " (4) Input New Invitation\n"
if alice_agent.endorser_role and alice_agent.endorser_role == "author":
options += " (D) Set Endorser's DID\n"
if alice_agent.multitenant:
options += " (W) Create and/or Enable Wallet\n"
options += " (X) Exit?\n[3/4/{}X] ".format(
"W/" if alice_agent.multitenant else "",
)
async for option in prompt_loop(options):
if option is not None:
option = option.strip()
if option is None or option in "xX":
break
elif option in "dD" and alice_agent.endorser_role:
endorser_did = await prompt("Enter Endorser's DID: ")
await alice_agent.agent.admin_POST(
f"/transactions/{alice_agent.agent.connection_id}/set-endorser-info",
params={"endorser_did": endorser_did, "endorser_name": "endorser"},
)
elif option in "wW" and alice_agent.multitenant:
target_wallet_name = await prompt("Enter wallet name: ")
include_subwallet_webhook = await prompt(
"(Y/N) Create sub-wallet webhook target: "
)
if include_subwallet_webhook.lower() == "y":
await alice_agent.agent.register_or_switch_wallet(
target_wallet_name,
webhook_port=alice_agent.agent.get_new_webhook_port(),
mediator_agent=alice_agent.mediator_agent,
)
else:
await alice_agent.agent.register_or_switch_wallet(
target_wallet_name,
mediator_agent=alice_agent.mediator_agent,
)
elif option == "3":
msg = await prompt("Enter message: ")
if msg:
await alice_agent.agent.admin_POST(
f"/connections/{alice_agent.agent.connection_id}/send-message",
{"content": msg},
)
elif option == "4":
# handle new invitation
log_status("Input new invitation details")
await input_invitation(alice_agent)
if alice_agent.show_timing:
timing = await alice_agent.agent.fetch_timing()
if timing:
for line in alice_agent.agent.format_timing(timing):
log_msg(line)
finally:
terminated = await alice_agent.terminate()
await asyncio.sleep(0.1)
if not terminated:
os._exit(1)
if __name__ == "__main__":
parser = arg_parser(ident="alice", port=8030)
args = parser.parse_args()
ENABLE_PYDEVD_PYCHARM = os.getenv("ENABLE_PYDEVD_PYCHARM", "").lower()
ENABLE_PYDEVD_PYCHARM = ENABLE_PYDEVD_PYCHARM and ENABLE_PYDEVD_PYCHARM not in (
"false",
"0",
)
PYDEVD_PYCHARM_HOST = os.getenv("PYDEVD_PYCHARM_HOST", "localhost")
PYDEVD_PYCHARM_CONTROLLER_PORT = int(
os.getenv("PYDEVD_PYCHARM_CONTROLLER_PORT", 5001)
)
if ENABLE_PYDEVD_PYCHARM:
try:
import pydevd_pycharm
print(
"Alice remote debugging to "
f"{PYDEVD_PYCHARM_HOST}:{PYDEVD_PYCHARM_CONTROLLER_PORT}"
)
pydevd_pycharm.settrace(
host=PYDEVD_PYCHARM_HOST,
port=PYDEVD_PYCHARM_CONTROLLER_PORT,
stdoutToServer=True,
stderrToServer=True,
suspend=False,
)
except ImportError:
print("pydevd_pycharm library was not found")
check_requires(args)
try:
asyncio.get_event_loop().run_until_complete(main(args))
except KeyboardInterrupt:
os._exit(1)