-
Notifications
You must be signed in to change notification settings - Fork 892
Expand file tree
/
Copy pathsandbox_api.py
More file actions
279 lines (246 loc) · 9.38 KB
/
sandbox_api.py
File metadata and controls
279 lines (246 loc) · 9.38 KB
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
import urllib.parse
from httpx import HTTPTransport
from typing import Optional, Dict, List, Tuple
from packaging.version import Version
from e2b.sandbox.sandbox_api import SandboxInfo, SandboxApiBase, SandboxQuery
from e2b.exceptions import TemplateException
from e2b.api import ApiClient, SandboxCreateResponse
from e2b.api.client.models import NewSandbox, PostSandboxesSandboxIDTimeoutBody
from e2b.api.client.api.sandboxes import (
get_sandboxes_sandbox_id,
post_sandboxes_sandbox_id_timeout,
get_sandboxes,
delete_sandboxes_sandbox_id,
post_sandboxes,
)
from e2b.connection_config import ConnectionConfig
from e2b.api import handle_api_exception
class SandboxApi(SandboxApiBase):
@classmethod
def list(
cls,
api_key: Optional[str] = None,
query: Optional[SandboxQuery] = None,
domain: Optional[str] = None,
debug: Optional[bool] = None,
request_timeout: Optional[float] = None,
headers: Optional[Dict[str, str]] = None,
) -> List[SandboxInfo]:
"""
List all running sandboxes.
:param api_key: API key to use for authentication, defaults to `E2B_API_KEY` environment variable
:param query: Filter the list of sandboxes, e.g. by metadata `SandboxQuery(metadata={"key": "value"})`, if there are multiple filters they are combined with AND.
:param domain: Domain to use for the request, only relevant for self-hosted environments
:param debug: Enable debug mode, all requested are then sent to localhost
:param request_timeout: Timeout for the request in **seconds**
:param headers: Additional headers to send with the request
:return: List of running sandboxes
"""
config = ConnectionConfig(
api_key=api_key,
domain=domain,
debug=debug,
request_timeout=request_timeout,
headers=headers,
)
# Convert filters to the format expected by the API
metadata = None
if query:
if query.metadata:
quoted_metadata = {
urllib.parse.quote(k): urllib.parse.quote(v)
for k, v in query.metadata.items()
}
metadata = urllib.parse.urlencode(quoted_metadata)
with ApiClient(
config, transport=HTTPTransport(limits=SandboxApiBase._limits)
) as api_client:
res = get_sandboxes.sync_detailed(client=api_client, metadata=metadata)
if res.status_code >= 300:
raise handle_api_exception(res)
if res.parsed is None:
return []
return [
SandboxInfo(
sandbox_id=SandboxApi._get_sandbox_id(
sandbox.sandbox_id,
sandbox.client_id,
),
template_id=sandbox.template_id,
name=sandbox.alias if isinstance(sandbox.alias, str) else None,
metadata=(
sandbox.metadata if isinstance(sandbox.metadata, dict) else {}
),
started_at=sandbox.started_at,
end_at=sandbox.end_at,
)
for sandbox in res.parsed
]
@classmethod
def get_info(
cls,
sandbox_id: str,
api_key: Optional[str] = None,
domain: Optional[str] = None,
debug: Optional[bool] = None,
request_timeout: Optional[float] = None,
headers: Optional[Dict[str, str]] = None,
) -> SandboxInfo:
"""
Get the sandbox info.
:param sandbox_id: Sandbox ID
:param api_key: API key to use for authentication, defaults to `E2B_API_KEY` environment variable
:param domain: Domain to use for the request, defaults to `E2B_DOMAIN` environment variable
:param debug: Debug mode, defaults to `E2B_DEBUG` environment variable
:param request_timeout: Timeout for the request in **seconds**
:param headers: Additional headers to send with the request
:return: Sandbox info
"""
config = ConnectionConfig(
api_key=api_key,
domain=domain,
debug=debug,
request_timeout=request_timeout,
headers=headers,
)
with ApiClient(
config, transport=HTTPTransport(limits=SandboxApiBase._limits)
) as api_client:
res = get_sandboxes_sandbox_id.sync_detailed(
sandbox_id,
client=api_client,
)
if res.status_code >= 300:
raise handle_api_exception(res)
if res.parsed is None:
raise Exception("Body of the request is None")
return SandboxInfo(
sandbox_id=SandboxApi._get_sandbox_id(
res.parsed.sandbox_id,
res.parsed.client_id,
),
template_id=res.parsed.template_id,
name=res.parsed.alias if isinstance(res.parsed.alias, str) else None,
metadata=(
res.parsed.metadata if isinstance(res.parsed.metadata, dict) else {}
),
started_at=res.parsed.started_at,
end_at=res.parsed.end_at,
)
@classmethod
def _cls_kill(
cls,
sandbox_id: str,
api_key: Optional[str] = None,
domain: Optional[str] = None,
debug: Optional[bool] = None,
request_timeout: Optional[float] = None,
headers: Optional[Dict[str, str]] = None,
) -> bool:
config = ConnectionConfig(
api_key=api_key,
domain=domain,
debug=debug,
request_timeout=request_timeout,
headers=headers,
)
if config.debug:
# Skip killing the sandbox in debug mode
return True
with ApiClient(
config, transport=HTTPTransport(limits=SandboxApiBase._limits)
) as api_client:
res = delete_sandboxes_sandbox_id.sync_detailed(
sandbox_id,
client=api_client,
)
if res.status_code == 404:
return False
if res.status_code >= 300:
raise handle_api_exception(res)
return True
@classmethod
def _cls_set_timeout(
cls,
sandbox_id: str,
timeout: int,
api_key: Optional[str] = None,
domain: Optional[str] = None,
debug: Optional[bool] = None,
request_timeout: Optional[float] = None,
headers: Optional[Dict[str, str]] = None,
) -> None:
config = ConnectionConfig(
api_key=api_key,
domain=domain,
debug=debug,
request_timeout=request_timeout,
headers=headers,
)
if config.debug:
# Skip setting timeout in debug mode
return
with ApiClient(
config, transport=HTTPTransport(limits=SandboxApiBase._limits)
) as api_client:
res = post_sandboxes_sandbox_id_timeout.sync_detailed(
sandbox_id,
client=api_client,
body=PostSandboxesSandboxIDTimeoutBody(timeout=timeout),
)
if res.status_code >= 300:
raise handle_api_exception(res)
@classmethod
def _create_sandbox(
cls,
template: str,
timeout: int,
metadata: Optional[Dict[str, str]] = None,
env_vars: Optional[Dict[str, str]] = None,
api_key: Optional[str] = None,
domain: Optional[str] = None,
debug: Optional[bool] = None,
request_timeout: Optional[float] = None,
headers: Optional[Dict[str, str]] = None,
) -> SandboxCreateResponse:
config = ConnectionConfig(
api_key=api_key,
domain=domain,
debug=debug,
request_timeout=request_timeout,
headers=headers,
)
with ApiClient(
config, transport=HTTPTransport(limits=SandboxApiBase._limits)
) as api_client:
res = post_sandboxes.sync_detailed(
body=NewSandbox(
template_id=template,
metadata=metadata or {},
timeout=timeout,
env_vars=env_vars or {},
),
client=api_client,
)
if res.status_code >= 300:
raise handle_api_exception(res)
if res.parsed is None:
raise Exception("Body of the request is None")
if Version(res.parsed.envd_version) < Version("0.1.0"):
SandboxApi._cls_kill(
SandboxApi._get_sandbox_id(
res.parsed.sandbox_id,
res.parsed.client_id,
)
)
raise TemplateException(
"You need to update the template to use the new SDK. "
"You can do this by running `e2b template build` in the directory with the template."
)
return SandboxCreateResponse(
sandbox_id=SandboxApi._get_sandbox_id(
res.parsed.sandbox_id,
res.parsed.client_id,
),
envd_version=res.parsed.envd_version,
)