getstack 0.3.0__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {getstack-0.3.0 → getstack-0.4.0}/PKG-INFO +1 -1
- {getstack-0.3.0 → getstack-0.4.0}/pyproject.toml +1 -1
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/__init__.py +25 -18
- getstack-0.4.0/src/getstack/agent_auth.py +331 -0
- getstack-0.4.0/src/getstack/browser_bootstrap.py +212 -0
- getstack-0.3.0/src/getstack/agent_auth.py +0 -189
- {getstack-0.3.0 → getstack-0.4.0}/.gitignore +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/CLAUDE.md +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/LICENSE +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/README.md +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/agents.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/audit.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/auth.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/client.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/credentials.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/dropoffs.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/errors.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/identity.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/notifications.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/passports.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/proxy.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/py.typed +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/reviews.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/scan.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/security_events.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/services.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/skills.py +0 -0
- {getstack-0.3.0 → getstack-0.4.0}/src/getstack/types.py +0 -0
|
@@ -98,13 +98,32 @@ def _build_static_auth(
|
|
|
98
98
|
env_key = os.environ.get("STACK_API_KEY")
|
|
99
99
|
if env_key:
|
|
100
100
|
return ApiKeyAuth(env_key)
|
|
101
|
+
return _resolve_creds_or_bootstrap(base_url)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
def _resolve_creds_or_bootstrap(base_url: str) -> CredentialsFileAuth:
|
|
105
|
+
"""Read ~/.stack/credentials.json — and if it's missing AND the
|
|
106
|
+
process looks interactive (TTY + not CI), spawn the browser-spawn
|
|
107
|
+
OAuth bootstrap to create it. Raises ValueError when neither path
|
|
108
|
+
resolves.
|
|
109
|
+
"""
|
|
101
110
|
try:
|
|
102
111
|
return CredentialsFileAuth(api_base_url=base_url)
|
|
103
|
-
except RuntimeError
|
|
112
|
+
except RuntimeError:
|
|
113
|
+
from .browser_bootstrap import browser_bootstrap, should_run_browser_bootstrap
|
|
114
|
+
if should_run_browser_bootstrap():
|
|
115
|
+
browser_bootstrap(base_url)
|
|
116
|
+
try:
|
|
117
|
+
return CredentialsFileAuth(api_base_url=base_url)
|
|
118
|
+
except RuntimeError as e:
|
|
119
|
+
raise ValueError(
|
|
120
|
+
"STACK SDK: browser bootstrap reported success but "
|
|
121
|
+
"credentials file still missing."
|
|
122
|
+
) from e
|
|
104
123
|
raise ValueError(
|
|
105
|
-
"
|
|
106
|
-
"STACK_API_KEY, or `stack-cli auth login
|
|
107
|
-
)
|
|
124
|
+
"No STACK credentials found. Pass api_key=, set "
|
|
125
|
+
"STACK_API_KEY, or run `stack-cli auth login`."
|
|
126
|
+
)
|
|
108
127
|
|
|
109
128
|
__all__ = [
|
|
110
129
|
"Stack",
|
|
@@ -179,13 +198,7 @@ class Stack:
|
|
|
179
198
|
elif api_key or os.environ.get("STACK_API_KEY"):
|
|
180
199
|
auth = ApiKeyAuth(api_key or os.environ["STACK_API_KEY"])
|
|
181
200
|
else:
|
|
182
|
-
|
|
183
|
-
auth = CredentialsFileAuth(api_base_url=base_url)
|
|
184
|
-
except RuntimeError as e:
|
|
185
|
-
raise ValueError(
|
|
186
|
-
"No STACK credentials found. Pass api_key=, set "
|
|
187
|
-
"STACK_API_KEY, or run `stack-cli auth login`."
|
|
188
|
-
) from e
|
|
201
|
+
auth = _resolve_creds_or_bootstrap(base_url)
|
|
189
202
|
|
|
190
203
|
self._client = HttpClient(auth, base_url=base_url, timeout=timeout)
|
|
191
204
|
self.agents = AgentService(self._client)
|
|
@@ -274,13 +287,7 @@ class AsyncStack:
|
|
|
274
287
|
elif api_key or os.environ.get("STACK_API_KEY"):
|
|
275
288
|
auth = ApiKeyAuth(api_key or os.environ["STACK_API_KEY"])
|
|
276
289
|
else:
|
|
277
|
-
|
|
278
|
-
auth = CredentialsFileAuth(api_base_url=base_url)
|
|
279
|
-
except RuntimeError as e:
|
|
280
|
-
raise ValueError(
|
|
281
|
-
"No STACK credentials found. Pass api_key=, set "
|
|
282
|
-
"STACK_API_KEY, or run `stack-cli auth login`."
|
|
283
|
-
) from e
|
|
290
|
+
auth = _resolve_creds_or_bootstrap(base_url)
|
|
284
291
|
|
|
285
292
|
self._client = AsyncHttpClient(auth, base_url=base_url, timeout=timeout)
|
|
286
293
|
|
|
@@ -0,0 +1,331 @@
|
|
|
1
|
+
"""Phase 2 — agent-keypair runtime auth (Python).
|
|
2
|
+
|
|
3
|
+
Mirror of packages/sdk/src/agent-auth.ts. When ``Stack(agent_id=...)`` is
|
|
4
|
+
constructed, the SDK enters agent-runtime mode: every request is signed
|
|
5
|
+
with a fresh 60-second EdDSA JWT minted from the agent's local privkey
|
|
6
|
+
at ~/.stack/agents/<agent_id>.json.
|
|
7
|
+
|
|
8
|
+
First run: open the dashboard /sdk-bootstrap page in the user's browser
|
|
9
|
+
for explicit approval (interactive only — TTY + not CI), generate the
|
|
10
|
+
Ed25519 keypair locally, sign the API's challenge, POST /enroll with
|
|
11
|
+
the operator-approved enrollment ticket as Bearer. Persist privkey
|
|
12
|
+
locally (mode 0600). Subsequent runs read from disk.
|
|
13
|
+
|
|
14
|
+
Headless / CI runs (no TTY, or STACK_AUTH_INTERACTIVE=false) skip the
|
|
15
|
+
browser step and fall through to the developer's OAuth bearer (or
|
|
16
|
+
sk_live_* via STACK_API_KEY) for silent enrollment — same endpoints,
|
|
17
|
+
same proof-of-possession, no human in the loop.
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
from __future__ import annotations
|
|
21
|
+
|
|
22
|
+
import base64
|
|
23
|
+
import http.server
|
|
24
|
+
import json
|
|
25
|
+
import os
|
|
26
|
+
import secrets
|
|
27
|
+
import socket
|
|
28
|
+
import socketserver
|
|
29
|
+
import sys
|
|
30
|
+
import threading
|
|
31
|
+
import time
|
|
32
|
+
import urllib.parse
|
|
33
|
+
import webbrowser
|
|
34
|
+
from pathlib import Path
|
|
35
|
+
from typing import Callable
|
|
36
|
+
|
|
37
|
+
import httpx
|
|
38
|
+
import jwt
|
|
39
|
+
from cryptography.hazmat.primitives.asymmetric.ed25519 import (
|
|
40
|
+
Ed25519PrivateKey,
|
|
41
|
+
Ed25519PublicKey,
|
|
42
|
+
)
|
|
43
|
+
from cryptography.hazmat.primitives.serialization import (
|
|
44
|
+
Encoding,
|
|
45
|
+
NoEncryption,
|
|
46
|
+
PrivateFormat,
|
|
47
|
+
PublicFormat,
|
|
48
|
+
)
|
|
49
|
+
|
|
50
|
+
from .auth import AuthStrategy
|
|
51
|
+
from .browser_bootstrap import should_run_browser_bootstrap
|
|
52
|
+
|
|
53
|
+
AGENT_JWT_TTL = 60
|
|
54
|
+
AGENT_JWT_ISSUER = "stack-sdk"
|
|
55
|
+
AGENT_JWT_AUDIENCE = "stack:agent"
|
|
56
|
+
|
|
57
|
+
ENROLLMENT_AUTH_TIMEOUT_S = 5 * 60 # matches enrollment-ticket TTL
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
def _dashboard_url(api_base_url: str) -> str:
|
|
61
|
+
"""Origin to which the SDK opens the browser for the approval screen.
|
|
62
|
+
|
|
63
|
+
Override via STACK_DASHBOARD_URL for self-hosted/test environments.
|
|
64
|
+
Dev shortcut: api on localhost ⇒ dashboard on :3100.
|
|
65
|
+
"""
|
|
66
|
+
override = os.environ.get("STACK_DASHBOARD_URL")
|
|
67
|
+
if override:
|
|
68
|
+
return override
|
|
69
|
+
if api_base_url.startswith(("http://127.0.0.1", "http://localhost")):
|
|
70
|
+
return "http://localhost:3100"
|
|
71
|
+
return "https://getstack.run"
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
def _ticket_via_browser_approval(agent_id: str, api_base_url: str) -> str:
|
|
75
|
+
"""Spawn a one-shot loopback HTTP listener, open the dashboard
|
|
76
|
+
/sdk-bootstrap page in the user's browser, and return the ticket
|
|
77
|
+
once the user approves. Raises RuntimeError on deny / timeout / any
|
|
78
|
+
failure — caller decides whether to surface or fall back.
|
|
79
|
+
"""
|
|
80
|
+
state = base64.urlsafe_b64encode(secrets.token_bytes(16)).rstrip(b"=").decode("ascii")
|
|
81
|
+
machine = socket.gethostname()[:80]
|
|
82
|
+
proc_label = f"python {Path(sys.argv[0]).name}"[:80] if sys.argv else "python"
|
|
83
|
+
|
|
84
|
+
holder: dict[str, object | None] = {"ticket": None, "error": None}
|
|
85
|
+
handler_event = threading.Event()
|
|
86
|
+
|
|
87
|
+
class Handler(http.server.BaseHTTPRequestHandler):
|
|
88
|
+
def do_GET(self): # noqa: N802
|
|
89
|
+
parsed = urllib.parse.urlparse(self.path)
|
|
90
|
+
if parsed.path != "/cb":
|
|
91
|
+
self.send_response(404)
|
|
92
|
+
self.end_headers()
|
|
93
|
+
return
|
|
94
|
+
params = urllib.parse.parse_qs(parsed.query)
|
|
95
|
+
cb_state = params.get("state", [None])[0]
|
|
96
|
+
err = params.get("error", [None])[0]
|
|
97
|
+
ticket = params.get("ticket", [None])[0]
|
|
98
|
+
if cb_state != state:
|
|
99
|
+
holder["error"] = "state mismatch"
|
|
100
|
+
self.send_response(400)
|
|
101
|
+
self.send_header("Content-Type", "text/html")
|
|
102
|
+
self.end_headers()
|
|
103
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px'><h1>State mismatch</h1></body></html>")
|
|
104
|
+
elif err:
|
|
105
|
+
holder["error"] = err
|
|
106
|
+
self.send_response(403)
|
|
107
|
+
self.send_header("Content-Type", "text/html")
|
|
108
|
+
self.end_headers()
|
|
109
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px'><h1>Enrollment denied</h1><p>You can close this tab.</p></body></html>")
|
|
110
|
+
elif not ticket:
|
|
111
|
+
holder["error"] = "missing ticket"
|
|
112
|
+
self.send_response(400)
|
|
113
|
+
self.send_header("Content-Type", "text/html")
|
|
114
|
+
self.end_headers()
|
|
115
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px'><h1>Missing ticket</h1></body></html>")
|
|
116
|
+
else:
|
|
117
|
+
holder["ticket"] = ticket
|
|
118
|
+
self.send_response(200)
|
|
119
|
+
self.send_header("Content-Type", "text/html")
|
|
120
|
+
self.end_headers()
|
|
121
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px;text-align:center'><h1>Approved</h1><p>You can close this tab and return to your terminal.</p></body></html>")
|
|
122
|
+
handler_event.set()
|
|
123
|
+
|
|
124
|
+
def log_message(self, *_a, **_kw):
|
|
125
|
+
return
|
|
126
|
+
|
|
127
|
+
server = socketserver.TCPServer(("127.0.0.1", 0), Handler)
|
|
128
|
+
port = server.server_address[1]
|
|
129
|
+
thread = threading.Thread(target=server.serve_forever, daemon=True)
|
|
130
|
+
thread.start()
|
|
131
|
+
|
|
132
|
+
try:
|
|
133
|
+
callback = f"http://127.0.0.1:{port}/cb"
|
|
134
|
+
dash = _dashboard_url(api_base_url)
|
|
135
|
+
url = f"{dash}/sdk-bootstrap?" + urllib.parse.urlencode({
|
|
136
|
+
"agent_id": agent_id,
|
|
137
|
+
"callback": callback,
|
|
138
|
+
"state": state,
|
|
139
|
+
"machine": machine,
|
|
140
|
+
"process": proc_label,
|
|
141
|
+
})
|
|
142
|
+
|
|
143
|
+
sys.stderr.write("\n STACK SDK agent enrollment\n")
|
|
144
|
+
sys.stderr.write(" ──────────────────────────\n\n")
|
|
145
|
+
sys.stderr.write(f" Approve in your browser: {url}\n\n")
|
|
146
|
+
|
|
147
|
+
try:
|
|
148
|
+
webbrowser.open(url)
|
|
149
|
+
except Exception:
|
|
150
|
+
pass
|
|
151
|
+
|
|
152
|
+
if not handler_event.wait(timeout=ENROLLMENT_AUTH_TIMEOUT_S):
|
|
153
|
+
raise RuntimeError("enrollment approval timed out (5 min). Re-run to try again.")
|
|
154
|
+
if holder["error"]:
|
|
155
|
+
raise RuntimeError(f"enrollment {holder['error']}")
|
|
156
|
+
ticket = holder["ticket"]
|
|
157
|
+
if not isinstance(ticket, str):
|
|
158
|
+
raise RuntimeError("enrollment callback produced no ticket")
|
|
159
|
+
return ticket
|
|
160
|
+
finally:
|
|
161
|
+
server.shutdown()
|
|
162
|
+
server.server_close()
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
def _b64url_no_pad(data: bytes) -> str:
|
|
166
|
+
return base64.urlsafe_b64encode(data).rstrip(b"=").decode("ascii")
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
def _key_path(agent_id: str) -> Path:
|
|
170
|
+
return Path(os.path.expanduser("~")) / ".stack" / "agents" / f"{agent_id}.json"
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
def _load_stored(agent_id: str) -> dict | None:
|
|
174
|
+
path = _key_path(agent_id)
|
|
175
|
+
if not path.exists():
|
|
176
|
+
return None
|
|
177
|
+
try:
|
|
178
|
+
return json.loads(path.read_text(encoding="utf8"))
|
|
179
|
+
except (OSError, json.JSONDecodeError):
|
|
180
|
+
return None
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
def _persist_stored(agent_id: str, payload: dict) -> None:
|
|
184
|
+
path = _key_path(agent_id)
|
|
185
|
+
path.parent.mkdir(parents=True, exist_ok=True)
|
|
186
|
+
path.write_text(json.dumps(payload, indent=2), encoding="utf8")
|
|
187
|
+
try:
|
|
188
|
+
os.chmod(path, 0o600)
|
|
189
|
+
except OSError:
|
|
190
|
+
# Windows / unsupported FS — ignore.
|
|
191
|
+
pass
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
def _generate_keypair() -> tuple[Ed25519PrivateKey, dict, dict]:
|
|
195
|
+
"""Generate an Ed25519 keypair and return (privkey_obj, public_jwk,
|
|
196
|
+
private_jwk_with_d)."""
|
|
197
|
+
priv = Ed25519PrivateKey.generate()
|
|
198
|
+
pub = priv.public_key()
|
|
199
|
+
pub_raw = pub.public_bytes(Encoding.Raw, PublicFormat.Raw)
|
|
200
|
+
priv_raw = priv.private_bytes(Encoding.Raw, PrivateFormat.Raw, NoEncryption())
|
|
201
|
+
public_jwk = {"kty": "OKP", "crv": "Ed25519", "x": _b64url_no_pad(pub_raw)}
|
|
202
|
+
private_jwk = {**public_jwk, "d": _b64url_no_pad(priv_raw)}
|
|
203
|
+
return priv, public_jwk, private_jwk
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
def _privkey_from_jwk(jwk: dict) -> Ed25519PrivateKey:
|
|
207
|
+
pad = "=" * (-len(jwk["d"]) % 4)
|
|
208
|
+
raw = base64.urlsafe_b64decode(jwk["d"] + pad)
|
|
209
|
+
return Ed25519PrivateKey.from_private_bytes(raw)
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
def _enroll(
|
|
213
|
+
agent_id: str,
|
|
214
|
+
base_url: str,
|
|
215
|
+
bearer_provider: Callable[[], str],
|
|
216
|
+
) -> dict:
|
|
217
|
+
"""Run the proof-of-possession enrollment dance. Returns the stored
|
|
218
|
+
payload (with private JWK) ready to persist.
|
|
219
|
+
|
|
220
|
+
Two paths converge on the same /enrollment-challenge + /enroll calls:
|
|
221
|
+
|
|
222
|
+
- Interactive: open the dashboard /sdk-bootstrap page in the user's
|
|
223
|
+
browser, get a single-use enrollment ticket, use it as the bearer.
|
|
224
|
+
- Headless: call ``bearer_provider`` (developer's OAuth or
|
|
225
|
+
STACK_API_KEY) directly. No browser, no human in the loop.
|
|
226
|
+
"""
|
|
227
|
+
if should_run_browser_bootstrap():
|
|
228
|
+
try:
|
|
229
|
+
bearer = _ticket_via_browser_approval(agent_id, base_url)
|
|
230
|
+
except RuntimeError as e:
|
|
231
|
+
raise RuntimeError(
|
|
232
|
+
f"Browser approval for SDK agent enrollment failed ({e}). "
|
|
233
|
+
f"Either fix the issue and re-run, or set STACK_API_KEY "
|
|
234
|
+
f"(or STACK_AUTH_INTERACTIVE=false) to use the silent "
|
|
235
|
+
f"enrollment path."
|
|
236
|
+
) from e
|
|
237
|
+
else:
|
|
238
|
+
bearer = bearer_provider()
|
|
239
|
+
base = base_url.rstrip("/")
|
|
240
|
+
|
|
241
|
+
# Step 1 — request challenge.
|
|
242
|
+
r = httpx.post(
|
|
243
|
+
f"{base}/v1/agents/{agent_id}/enrollment-challenge",
|
|
244
|
+
headers={"Authorization": f"Bearer {bearer}", "Content-Type": "application/json"},
|
|
245
|
+
timeout=15.0,
|
|
246
|
+
)
|
|
247
|
+
r.raise_for_status()
|
|
248
|
+
challenge_body = r.json()
|
|
249
|
+
challenge: str = challenge_body["challenge"]
|
|
250
|
+
challenge_id: str = challenge_body["challenge_id"]
|
|
251
|
+
|
|
252
|
+
# Step 2 — generate keypair locally.
|
|
253
|
+
priv_obj, public_jwk, private_jwk = _generate_keypair()
|
|
254
|
+
|
|
255
|
+
# Step 3 — sign the challenge bytes.
|
|
256
|
+
sig = priv_obj.sign(challenge.encode("utf8"))
|
|
257
|
+
signed_challenge = _b64url_no_pad(sig)
|
|
258
|
+
|
|
259
|
+
# Step 4 — POST /enroll.
|
|
260
|
+
r2 = httpx.post(
|
|
261
|
+
f"{base}/v1/agents/{agent_id}/enroll",
|
|
262
|
+
headers={"Authorization": f"Bearer {bearer}", "Content-Type": "application/json"},
|
|
263
|
+
json={
|
|
264
|
+
"public_key": public_jwk,
|
|
265
|
+
"challenge_id": challenge_id,
|
|
266
|
+
"signed_challenge": signed_challenge,
|
|
267
|
+
},
|
|
268
|
+
timeout=15.0,
|
|
269
|
+
)
|
|
270
|
+
r2.raise_for_status()
|
|
271
|
+
enrolled = r2.json()
|
|
272
|
+
|
|
273
|
+
return {
|
|
274
|
+
"agent_id": agent_id,
|
|
275
|
+
"publicKey": public_jwk,
|
|
276
|
+
"privateKey": private_jwk,
|
|
277
|
+
"enrolled_at": enrolled.get("enrolled_at"),
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
def _sign_agent_jwt(stored: dict, agent_id: str) -> str:
|
|
282
|
+
"""Mint a fresh 60-second EdDSA JWT signed with the agent privkey."""
|
|
283
|
+
priv_obj = _privkey_from_jwk(stored["privateKey"])
|
|
284
|
+
now = int(time.time())
|
|
285
|
+
payload = {
|
|
286
|
+
"iss": AGENT_JWT_ISSUER,
|
|
287
|
+
"sub": agent_id,
|
|
288
|
+
"aud": AGENT_JWT_AUDIENCE,
|
|
289
|
+
"iat": now,
|
|
290
|
+
"nbf": now,
|
|
291
|
+
"exp": now + AGENT_JWT_TTL,
|
|
292
|
+
"jti": f"aj_{now}_{os.urandom(6).hex()}",
|
|
293
|
+
}
|
|
294
|
+
# PyJWT accepts a raw cryptography Ed25519 key when algorithm='EdDSA'.
|
|
295
|
+
return jwt.encode(payload, priv_obj, algorithm="EdDSA")
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
class AgentKeypairAuth(AuthStrategy):
|
|
299
|
+
"""Phase 2 agent-runtime auth strategy.
|
|
300
|
+
|
|
301
|
+
Constructed with an agent_id and a fallback bearer provider (used
|
|
302
|
+
only for the one-time enrollment dance). Once enrolled, every
|
|
303
|
+
request mints a fresh 60-second JWT signed by the locally-stored
|
|
304
|
+
privkey — the bearer provider is no longer consulted.
|
|
305
|
+
"""
|
|
306
|
+
|
|
307
|
+
def __init__(
|
|
308
|
+
self,
|
|
309
|
+
agent_id: str,
|
|
310
|
+
api_base_url: str,
|
|
311
|
+
bearer_provider: Callable[[], str],
|
|
312
|
+
):
|
|
313
|
+
self.agent_id = agent_id
|
|
314
|
+
self.api_base_url = api_base_url
|
|
315
|
+
self.bearer_provider = bearer_provider
|
|
316
|
+
self._stored: dict | None = None
|
|
317
|
+
|
|
318
|
+
def _ensure_stored(self) -> dict:
|
|
319
|
+
if self._stored is not None:
|
|
320
|
+
return self._stored
|
|
321
|
+
stored = _load_stored(self.agent_id)
|
|
322
|
+
if stored is None:
|
|
323
|
+
stored = _enroll(self.agent_id, self.api_base_url, self.bearer_provider)
|
|
324
|
+
_persist_stored(self.agent_id, stored)
|
|
325
|
+
self._stored = stored
|
|
326
|
+
return stored
|
|
327
|
+
|
|
328
|
+
def get_headers(self) -> dict[str, str]:
|
|
329
|
+
stored = self._ensure_stored()
|
|
330
|
+
token = _sign_agent_jwt(stored, self.agent_id)
|
|
331
|
+
return {"Authorization": f"Bearer {token}"}
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
"""Phase 1 SDK first-run browser-spawn bootstrap (Python).
|
|
2
|
+
|
|
3
|
+
Mirror of packages/sdk/src/browser-bootstrap.ts. When ``Stack()`` is
|
|
4
|
+
constructed with no api_key, no STACK_API_KEY env, and no
|
|
5
|
+
~/.stack/credentials.json — instead of raising, the SDK can spawn the
|
|
6
|
+
user's browser and run the OAuth Authorization Code + PKCE dance
|
|
7
|
+
itself.
|
|
8
|
+
|
|
9
|
+
Triggered ONLY when the process is interactive (TTY + not CI). In
|
|
10
|
+
production agent runtimes (Lambda, Vercel, K8s) the SDK falls through
|
|
11
|
+
to the standard "no credentials" error and the operator must set
|
|
12
|
+
STACK_API_KEY (or use agent_id mode).
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import base64
|
|
18
|
+
import hashlib
|
|
19
|
+
import http.server
|
|
20
|
+
import json
|
|
21
|
+
import os
|
|
22
|
+
import secrets
|
|
23
|
+
import socket
|
|
24
|
+
import socketserver
|
|
25
|
+
import sys
|
|
26
|
+
import threading
|
|
27
|
+
import time
|
|
28
|
+
import urllib.parse
|
|
29
|
+
import webbrowser
|
|
30
|
+
from pathlib import Path
|
|
31
|
+
|
|
32
|
+
import httpx
|
|
33
|
+
|
|
34
|
+
DEFAULT_AUTH_TIMEOUT_S = 5 * 60 # matches the auth-code TTL
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
def _credentials_path() -> Path:
|
|
38
|
+
return Path(os.path.expanduser("~")) / ".stack" / "credentials.json"
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def _b64url_no_pad(data: bytes) -> str:
|
|
42
|
+
return base64.urlsafe_b64encode(data).rstrip(b"=").decode("ascii")
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
def should_run_browser_bootstrap() -> bool:
|
|
46
|
+
"""Conservative gate: only spawn if we're at an interactive terminal."""
|
|
47
|
+
if not sys.stdout.isatty():
|
|
48
|
+
return False
|
|
49
|
+
if os.environ.get("STACK_AUTH_INTERACTIVE", "").lower() == "false":
|
|
50
|
+
return False
|
|
51
|
+
if os.environ.get("CI"):
|
|
52
|
+
return False
|
|
53
|
+
return True
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
def browser_bootstrap(base_url: str) -> dict:
|
|
57
|
+
"""Run the full OAuth Authorization-Code + PKCE flow.
|
|
58
|
+
|
|
59
|
+
Returns ``{"access_token", "refresh_token", "expires_in", "client_id"}``.
|
|
60
|
+
Raises RuntimeError on any step failure.
|
|
61
|
+
"""
|
|
62
|
+
base = base_url.rstrip("/")
|
|
63
|
+
|
|
64
|
+
# 1. DCR a public PKCE client. We re-register with the loopback URI
|
|
65
|
+
# once we know the bound port (DCR is open; the second register
|
|
66
|
+
# supersedes for redirect_uri matching).
|
|
67
|
+
name = f"STACK Python SDK on {socket.gethostname()[:40]}"
|
|
68
|
+
|
|
69
|
+
# 2. Pick a free port + spin up the callback server first, so we can
|
|
70
|
+
# register the client with the actual loopback URI.
|
|
71
|
+
code_holder: dict = {"code": None, "error": None, "expected_state": None}
|
|
72
|
+
handler_event = threading.Event()
|
|
73
|
+
|
|
74
|
+
class Handler(http.server.BaseHTTPRequestHandler):
|
|
75
|
+
def do_GET(self): # noqa: N802
|
|
76
|
+
parsed = urllib.parse.urlparse(self.path)
|
|
77
|
+
if parsed.path != "/callback":
|
|
78
|
+
self.send_response(404)
|
|
79
|
+
self.end_headers()
|
|
80
|
+
return
|
|
81
|
+
params = urllib.parse.parse_qs(parsed.query)
|
|
82
|
+
err = params.get("error", [None])[0]
|
|
83
|
+
code = params.get("code", [None])[0]
|
|
84
|
+
state = params.get("state", [None])[0]
|
|
85
|
+
if err:
|
|
86
|
+
code_holder["error"] = err
|
|
87
|
+
self.send_response(400)
|
|
88
|
+
self.send_header("Content-Type", "text/html")
|
|
89
|
+
self.end_headers()
|
|
90
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px'><h1>Sign-in failed</h1><p>You can close this tab.</p></body></html>")
|
|
91
|
+
elif not code or state != code_holder["expected_state"]:
|
|
92
|
+
code_holder["error"] = "invalid callback (state mismatch or missing code)"
|
|
93
|
+
self.send_response(400)
|
|
94
|
+
self.send_header("Content-Type", "text/html")
|
|
95
|
+
self.end_headers()
|
|
96
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px'><h1>Invalid callback</h1></body></html>")
|
|
97
|
+
else:
|
|
98
|
+
code_holder["code"] = code
|
|
99
|
+
self.send_response(200)
|
|
100
|
+
self.send_header("Content-Type", "text/html")
|
|
101
|
+
self.end_headers()
|
|
102
|
+
self.wfile.write(b"<html><body style='font-family:system-ui;padding:40px;text-align:center'><h1>Signed in</h1><p>You can close this tab and return to your terminal.</p></body></html>")
|
|
103
|
+
handler_event.set()
|
|
104
|
+
|
|
105
|
+
def log_message(self, *_args, **_kwargs):
|
|
106
|
+
return # silence access logs
|
|
107
|
+
|
|
108
|
+
# Bind to port 0 to get a free port.
|
|
109
|
+
server = socketserver.TCPServer(("127.0.0.1", 0), Handler)
|
|
110
|
+
port = server.server_address[1]
|
|
111
|
+
server_thread = threading.Thread(target=server.serve_forever, daemon=True)
|
|
112
|
+
server_thread.start()
|
|
113
|
+
|
|
114
|
+
try:
|
|
115
|
+
redirect_uri = f"http://127.0.0.1:{port}/callback"
|
|
116
|
+
|
|
117
|
+
# DCR with the actual loopback URI.
|
|
118
|
+
r = httpx.post(
|
|
119
|
+
f"{base}/oauth/register",
|
|
120
|
+
json={
|
|
121
|
+
"client_name": name,
|
|
122
|
+
"redirect_uris": [redirect_uri],
|
|
123
|
+
"grant_types": ["authorization_code", "refresh_token"],
|
|
124
|
+
"software_id": "getstackrun.sdk-python.bootstrap",
|
|
125
|
+
},
|
|
126
|
+
timeout=15.0,
|
|
127
|
+
)
|
|
128
|
+
if r.status_code != 201:
|
|
129
|
+
raise RuntimeError(
|
|
130
|
+
f"STACK SDK: client registration failed ({r.status_code}). "
|
|
131
|
+
f"Try setting STACK_API_KEY or running `stack-cli auth login`."
|
|
132
|
+
)
|
|
133
|
+
client_id = r.json()["client_id"]
|
|
134
|
+
|
|
135
|
+
# 3. PKCE pair + state.
|
|
136
|
+
verifier = _b64url_no_pad(secrets.token_bytes(32))
|
|
137
|
+
challenge = _b64url_no_pad(hashlib.sha256(verifier.encode()).digest())
|
|
138
|
+
state = _b64url_no_pad(secrets.token_bytes(16))
|
|
139
|
+
code_holder["expected_state"] = state
|
|
140
|
+
|
|
141
|
+
scope = "passports:read passports:write agents:read agents:write services:read services:connect credentials:read proxy:read proxy:write audit:read"
|
|
142
|
+
authorize_url = f"{base}/oauth/authorize?" + urllib.parse.urlencode({
|
|
143
|
+
"response_type": "code",
|
|
144
|
+
"client_id": client_id,
|
|
145
|
+
"redirect_uri": redirect_uri,
|
|
146
|
+
"scope": scope,
|
|
147
|
+
"resource": "https://api.getstack.run",
|
|
148
|
+
"code_challenge": challenge,
|
|
149
|
+
"code_challenge_method": "S256",
|
|
150
|
+
"state": state,
|
|
151
|
+
})
|
|
152
|
+
|
|
153
|
+
sys.stderr.write("\n STACK SDK first-run sign-in\n")
|
|
154
|
+
sys.stderr.write(" ──────────────────────────\n\n")
|
|
155
|
+
sys.stderr.write(" Opening your browser to approve.\n")
|
|
156
|
+
sys.stderr.write(f" If it doesn't open, paste this URL:\n\n {authorize_url}\n\n")
|
|
157
|
+
|
|
158
|
+
try:
|
|
159
|
+
webbrowser.open(authorize_url)
|
|
160
|
+
except Exception:
|
|
161
|
+
pass # best-effort
|
|
162
|
+
|
|
163
|
+
# 4. Wait for the callback.
|
|
164
|
+
if not handler_event.wait(timeout=DEFAULT_AUTH_TIMEOUT_S):
|
|
165
|
+
raise RuntimeError("Sign-in timed out (5 min). Re-run to try again.")
|
|
166
|
+
if code_holder["error"]:
|
|
167
|
+
raise RuntimeError(f"OAuth error: {code_holder['error']}")
|
|
168
|
+
code = code_holder["code"]
|
|
169
|
+
|
|
170
|
+
# 5. Exchange code for tokens.
|
|
171
|
+
r2 = httpx.post(
|
|
172
|
+
f"{base}/oauth/token",
|
|
173
|
+
data={
|
|
174
|
+
"grant_type": "authorization_code",
|
|
175
|
+
"code": code,
|
|
176
|
+
"redirect_uri": redirect_uri,
|
|
177
|
+
"client_id": client_id,
|
|
178
|
+
"code_verifier": verifier,
|
|
179
|
+
},
|
|
180
|
+
timeout=15.0,
|
|
181
|
+
)
|
|
182
|
+
if r2.status_code != 200:
|
|
183
|
+
raise RuntimeError(f"STACK SDK: token exchange failed ({r2.status_code}) {r2.text}")
|
|
184
|
+
tokens = r2.json()
|
|
185
|
+
|
|
186
|
+
# 6. Persist for subsequent runs. Same file the CLI + the TS SDK write.
|
|
187
|
+
path = _credentials_path()
|
|
188
|
+
path.parent.mkdir(parents=True, exist_ok=True)
|
|
189
|
+
stored = {
|
|
190
|
+
"client_id": client_id,
|
|
191
|
+
"refresh_token": tokens["refresh_token"],
|
|
192
|
+
"issued_at": int(time.time()),
|
|
193
|
+
"refresh_expires_at": int(time.time()) + 30 * 24 * 60 * 60,
|
|
194
|
+
"scope": scope,
|
|
195
|
+
}
|
|
196
|
+
path.write_text(json.dumps(stored, indent=2), encoding="utf8")
|
|
197
|
+
try:
|
|
198
|
+
os.chmod(path, 0o600)
|
|
199
|
+
except OSError:
|
|
200
|
+
pass
|
|
201
|
+
|
|
202
|
+
sys.stderr.write(f" Signed in. Credentials saved to {path}\n\n")
|
|
203
|
+
|
|
204
|
+
return {
|
|
205
|
+
"access_token": tokens["access_token"],
|
|
206
|
+
"refresh_token": tokens["refresh_token"],
|
|
207
|
+
"expires_in": tokens.get("expires_in", 300),
|
|
208
|
+
"client_id": client_id,
|
|
209
|
+
}
|
|
210
|
+
finally:
|
|
211
|
+
server.shutdown()
|
|
212
|
+
server.server_close()
|
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
"""Phase 2 — agent-keypair runtime auth (Python).
|
|
2
|
-
|
|
3
|
-
Mirror of packages/sdk/src/agent-auth.ts. When ``Stack(agent_id=...)`` is
|
|
4
|
-
constructed, the SDK enters agent-runtime mode: every request is signed
|
|
5
|
-
with a fresh 60-second EdDSA JWT minted from the agent's local privkey
|
|
6
|
-
at ~/.stack/agents/<agent_id>.json.
|
|
7
|
-
|
|
8
|
-
First run: generate Ed25519 keypair, request enrollment challenge from
|
|
9
|
-
the API, sign challenge with privkey, POST /enroll. Persist privkey
|
|
10
|
-
locally (mode 0600). Subsequent runs read from disk.
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
from __future__ import annotations
|
|
14
|
-
|
|
15
|
-
import base64
|
|
16
|
-
import json
|
|
17
|
-
import os
|
|
18
|
-
import time
|
|
19
|
-
from pathlib import Path
|
|
20
|
-
from typing import Callable
|
|
21
|
-
|
|
22
|
-
import httpx
|
|
23
|
-
import jwt
|
|
24
|
-
from cryptography.hazmat.primitives.asymmetric.ed25519 import (
|
|
25
|
-
Ed25519PrivateKey,
|
|
26
|
-
Ed25519PublicKey,
|
|
27
|
-
)
|
|
28
|
-
from cryptography.hazmat.primitives.serialization import (
|
|
29
|
-
Encoding,
|
|
30
|
-
NoEncryption,
|
|
31
|
-
PrivateFormat,
|
|
32
|
-
PublicFormat,
|
|
33
|
-
)
|
|
34
|
-
|
|
35
|
-
from .auth import AuthStrategy
|
|
36
|
-
|
|
37
|
-
AGENT_JWT_TTL = 60
|
|
38
|
-
AGENT_JWT_ISSUER = "stack-sdk"
|
|
39
|
-
AGENT_JWT_AUDIENCE = "stack:agent"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
def _b64url_no_pad(data: bytes) -> str:
|
|
43
|
-
return base64.urlsafe_b64encode(data).rstrip(b"=").decode("ascii")
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
def _key_path(agent_id: str) -> Path:
|
|
47
|
-
return Path(os.path.expanduser("~")) / ".stack" / "agents" / f"{agent_id}.json"
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
def _load_stored(agent_id: str) -> dict | None:
|
|
51
|
-
path = _key_path(agent_id)
|
|
52
|
-
if not path.exists():
|
|
53
|
-
return None
|
|
54
|
-
try:
|
|
55
|
-
return json.loads(path.read_text(encoding="utf8"))
|
|
56
|
-
except (OSError, json.JSONDecodeError):
|
|
57
|
-
return None
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
def _persist_stored(agent_id: str, payload: dict) -> None:
|
|
61
|
-
path = _key_path(agent_id)
|
|
62
|
-
path.parent.mkdir(parents=True, exist_ok=True)
|
|
63
|
-
path.write_text(json.dumps(payload, indent=2), encoding="utf8")
|
|
64
|
-
try:
|
|
65
|
-
os.chmod(path, 0o600)
|
|
66
|
-
except OSError:
|
|
67
|
-
# Windows / unsupported FS — ignore.
|
|
68
|
-
pass
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
def _generate_keypair() -> tuple[Ed25519PrivateKey, dict, dict]:
|
|
72
|
-
"""Generate an Ed25519 keypair and return (privkey_obj, public_jwk,
|
|
73
|
-
private_jwk_with_d)."""
|
|
74
|
-
priv = Ed25519PrivateKey.generate()
|
|
75
|
-
pub = priv.public_key()
|
|
76
|
-
pub_raw = pub.public_bytes(Encoding.Raw, PublicFormat.Raw)
|
|
77
|
-
priv_raw = priv.private_bytes(Encoding.Raw, PrivateFormat.Raw, NoEncryption())
|
|
78
|
-
public_jwk = {"kty": "OKP", "crv": "Ed25519", "x": _b64url_no_pad(pub_raw)}
|
|
79
|
-
private_jwk = {**public_jwk, "d": _b64url_no_pad(priv_raw)}
|
|
80
|
-
return priv, public_jwk, private_jwk
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
def _privkey_from_jwk(jwk: dict) -> Ed25519PrivateKey:
|
|
84
|
-
pad = "=" * (-len(jwk["d"]) % 4)
|
|
85
|
-
raw = base64.urlsafe_b64decode(jwk["d"] + pad)
|
|
86
|
-
return Ed25519PrivateKey.from_private_bytes(raw)
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
def _enroll(
|
|
90
|
-
agent_id: str,
|
|
91
|
-
base_url: str,
|
|
92
|
-
bearer_provider: Callable[[], str],
|
|
93
|
-
) -> dict:
|
|
94
|
-
"""Run the proof-of-possession enrollment dance. Returns the stored
|
|
95
|
-
payload (with private JWK) ready to persist."""
|
|
96
|
-
bearer = bearer_provider()
|
|
97
|
-
base = base_url.rstrip("/")
|
|
98
|
-
|
|
99
|
-
# Step 1 — request challenge.
|
|
100
|
-
r = httpx.post(
|
|
101
|
-
f"{base}/v1/agents/{agent_id}/enrollment-challenge",
|
|
102
|
-
headers={"Authorization": f"Bearer {bearer}", "Content-Type": "application/json"},
|
|
103
|
-
timeout=15.0,
|
|
104
|
-
)
|
|
105
|
-
r.raise_for_status()
|
|
106
|
-
challenge_body = r.json()
|
|
107
|
-
challenge: str = challenge_body["challenge"]
|
|
108
|
-
challenge_id: str = challenge_body["challenge_id"]
|
|
109
|
-
|
|
110
|
-
# Step 2 — generate keypair locally.
|
|
111
|
-
priv_obj, public_jwk, private_jwk = _generate_keypair()
|
|
112
|
-
|
|
113
|
-
# Step 3 — sign the challenge bytes.
|
|
114
|
-
sig = priv_obj.sign(challenge.encode("utf8"))
|
|
115
|
-
signed_challenge = _b64url_no_pad(sig)
|
|
116
|
-
|
|
117
|
-
# Step 4 — POST /enroll.
|
|
118
|
-
r2 = httpx.post(
|
|
119
|
-
f"{base}/v1/agents/{agent_id}/enroll",
|
|
120
|
-
headers={"Authorization": f"Bearer {bearer}", "Content-Type": "application/json"},
|
|
121
|
-
json={
|
|
122
|
-
"public_key": public_jwk,
|
|
123
|
-
"challenge_id": challenge_id,
|
|
124
|
-
"signed_challenge": signed_challenge,
|
|
125
|
-
},
|
|
126
|
-
timeout=15.0,
|
|
127
|
-
)
|
|
128
|
-
r2.raise_for_status()
|
|
129
|
-
enrolled = r2.json()
|
|
130
|
-
|
|
131
|
-
return {
|
|
132
|
-
"agent_id": agent_id,
|
|
133
|
-
"publicKey": public_jwk,
|
|
134
|
-
"privateKey": private_jwk,
|
|
135
|
-
"enrolled_at": enrolled.get("enrolled_at"),
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
def _sign_agent_jwt(stored: dict, agent_id: str) -> str:
|
|
140
|
-
"""Mint a fresh 60-second EdDSA JWT signed with the agent privkey."""
|
|
141
|
-
priv_obj = _privkey_from_jwk(stored["privateKey"])
|
|
142
|
-
now = int(time.time())
|
|
143
|
-
payload = {
|
|
144
|
-
"iss": AGENT_JWT_ISSUER,
|
|
145
|
-
"sub": agent_id,
|
|
146
|
-
"aud": AGENT_JWT_AUDIENCE,
|
|
147
|
-
"iat": now,
|
|
148
|
-
"nbf": now,
|
|
149
|
-
"exp": now + AGENT_JWT_TTL,
|
|
150
|
-
"jti": f"aj_{now}_{os.urandom(6).hex()}",
|
|
151
|
-
}
|
|
152
|
-
# PyJWT accepts a raw cryptography Ed25519 key when algorithm='EdDSA'.
|
|
153
|
-
return jwt.encode(payload, priv_obj, algorithm="EdDSA")
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
class AgentKeypairAuth(AuthStrategy):
|
|
157
|
-
"""Phase 2 agent-runtime auth strategy.
|
|
158
|
-
|
|
159
|
-
Constructed with an agent_id and a fallback bearer provider (used
|
|
160
|
-
only for the one-time enrollment dance). Once enrolled, every
|
|
161
|
-
request mints a fresh 60-second JWT signed by the locally-stored
|
|
162
|
-
privkey — the bearer provider is no longer consulted.
|
|
163
|
-
"""
|
|
164
|
-
|
|
165
|
-
def __init__(
|
|
166
|
-
self,
|
|
167
|
-
agent_id: str,
|
|
168
|
-
api_base_url: str,
|
|
169
|
-
bearer_provider: Callable[[], str],
|
|
170
|
-
):
|
|
171
|
-
self.agent_id = agent_id
|
|
172
|
-
self.api_base_url = api_base_url
|
|
173
|
-
self.bearer_provider = bearer_provider
|
|
174
|
-
self._stored: dict | None = None
|
|
175
|
-
|
|
176
|
-
def _ensure_stored(self) -> dict:
|
|
177
|
-
if self._stored is not None:
|
|
178
|
-
return self._stored
|
|
179
|
-
stored = _load_stored(self.agent_id)
|
|
180
|
-
if stored is None:
|
|
181
|
-
stored = _enroll(self.agent_id, self.api_base_url, self.bearer_provider)
|
|
182
|
-
_persist_stored(self.agent_id, stored)
|
|
183
|
-
self._stored = stored
|
|
184
|
-
return stored
|
|
185
|
-
|
|
186
|
-
def get_headers(self) -> dict[str, str]:
|
|
187
|
-
stored = self._ensure_stored()
|
|
188
|
-
token = _sign_agent_jwt(stored, self.agent_id)
|
|
189
|
-
return {"Authorization": f"Bearer {token}"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|