-
Notifications
You must be signed in to change notification settings - Fork 902
Expand file tree
/
Copy pathconnection_config.py
More file actions
220 lines (171 loc) · 6.74 KB
/
connection_config.py
File metadata and controls
220 lines (171 loc) · 6.74 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
import os
from typing import Optional, Dict, TypedDict
from httpx._types import ProxyTypes
from typing_extensions import Unpack
from e2b.api.metadata import package_version
REQUEST_TIMEOUT: float = 60.0 # 60 seconds
KEEPALIVE_PING_INTERVAL_SEC = 50 # 50 seconds
KEEPALIVE_PING_HEADER = "Keepalive-Ping-Interval"
class ApiParams(TypedDict, total=False):
"""
Parameters for a request.
In the case of a sandbox, it applies to all **requests made to the returned sandbox**.
"""
request_timeout: Optional[float]
"""Timeout for the request in **seconds**, defaults to 60 seconds."""
headers: Optional[Dict[str, str]]
"""Additional headers to send with the request."""
api_key: Optional[str]
"""E2B API Key to use for authentication, defaults to `E2B_API_KEY` environment variable."""
domain: Optional[str]
"""E2B domain to use for authentication, defaults to `E2B_DOMAIN` environment variable."""
api_url: Optional[str]
"""URL to use for the API, defaults to `https://api.<domain>`. For internal use only."""
debug: Optional[bool]
"""Whether to use debug mode, defaults to `E2B_DEBUG` environment variable."""
proxy: Optional[ProxyTypes]
"""Proxy to use for the request. In case of a sandbox it applies to all **requests made to the returned sandbox**."""
sandbox_url: Optional[str]
"""URL to connect to sandbox, defaults to `E2B_SANDBOX_URL` environment variable."""
class ConnectionConfig:
"""
Configuration for the connection to the API.
"""
envd_port = 49983
@staticmethod
def _domain():
return os.getenv("E2B_DOMAIN") or "e2b.app"
@staticmethod
def _debug():
return os.getenv("E2B_DEBUG", "false").lower() == "true"
@staticmethod
def _api_key():
return os.getenv("E2B_API_KEY")
@staticmethod
def _api_url():
return os.getenv("E2B_API_URL")
@staticmethod
def _sandbox_url():
return os.getenv("E2B_SANDBOX_URL")
@staticmethod
def _access_token():
return os.getenv("E2B_ACCESS_TOKEN")
def __init__(
self,
domain: Optional[str] = None,
debug: Optional[bool] = None,
api_key: Optional[str] = None,
api_url: Optional[str] = None,
sandbox_url: Optional[str] = None,
access_token: Optional[str] = None,
request_timeout: Optional[float] = None,
headers: Optional[Dict[str, str]] = None,
extra_sandbox_headers: Optional[Dict[str, str]] = None,
proxy: Optional[ProxyTypes] = None,
):
self.domain = domain or ConnectionConfig._domain()
self.debug = debug or ConnectionConfig._debug()
self.api_key = api_key or ConnectionConfig._api_key()
self.access_token = access_token or ConnectionConfig._access_token()
self.headers = headers or {}
self.headers["User-Agent"] = f"e2b-python-sdk/{package_version}"
self.__extra_sandbox_headers = extra_sandbox_headers or {}
self.proxy = proxy
self.request_timeout = ConnectionConfig._get_request_timeout(
REQUEST_TIMEOUT,
request_timeout,
)
if request_timeout == 0:
self.request_timeout = None
elif request_timeout is not None:
self.request_timeout = request_timeout
else:
self.request_timeout = REQUEST_TIMEOUT
self.api_url = (
api_url
or ConnectionConfig._api_url()
or ("http://localhost:3000" if self.debug else f"https://api.{self.domain}")
)
self._sandbox_url: Optional[str] = (
sandbox_url or ConnectionConfig._sandbox_url()
)
@staticmethod
def _get_request_timeout(
default_timeout: Optional[float],
request_timeout: Optional[float],
):
if request_timeout == 0:
return None
elif request_timeout is not None:
return request_timeout
else:
return default_timeout
def get_request_timeout(self, request_timeout: Optional[float] = None):
return self._get_request_timeout(self.request_timeout, request_timeout)
def get_sandbox_url(self, sandbox_id: str, sandbox_domain: str) -> str:
sandbox_url: Optional[str] = self._sandbox_url # type: ignore[assignment]
if sandbox_url:
return sandbox_url
return f"{'http' if self.debug else 'https'}://{self.get_host(sandbox_id, sandbox_domain, self.envd_port)}"
def get_host(self, sandbox_id: str, sandbox_domain: str, port: int) -> str:
"""
Get the host address to connect to the sandbox.
You can then use this address to connect to the sandbox port from outside the sandbox via HTTP or WebSocket.
:param port: Port to connect to
:param sandbox_domain: Domain to connect to
:param sandbox_id: Sandbox to connect to
:return: Host address to connect to
"""
if self.debug:
return f"localhost:{port}"
return f"{port}-{sandbox_id}.{sandbox_domain}"
def get_api_params(
self,
**opts: Unpack[ApiParams],
) -> dict:
"""
Get the parameters for the API call.
This is used to avoid passing the following attributes to the API call:
- access_token
- api_url
It also returns a copy, so the original object is not modified.
:return: Dictionary of parameters for the API call
"""
headers = opts.get("headers")
request_timeout = opts.get("request_timeout")
api_key = opts.get("api_key")
api_url = opts.get("api_url")
domain = opts.get("domain")
debug = opts.get("debug")
proxy = opts.get("proxy")
req_headers = self.headers.copy()
if headers is not None:
req_headers.update(headers)
return dict(
ApiParams(
api_key=api_key if api_key is not None else self.api_key,
api_url=api_url if api_url is not None else self.api_url,
domain=domain if domain is not None else self.domain,
debug=debug if debug is not None else self.debug,
request_timeout=self.get_request_timeout(request_timeout),
headers=req_headers,
proxy=proxy if proxy is not None else self.proxy,
)
)
@property
def sandbox_headers(self):
"""
We need this separate as we use the same header for E2B access token to API and envd access token to sandbox.
"""
return {
**self.headers,
**self.__extra_sandbox_headers,
}
Username = str
"""
User used for the operation in the sandbox.
"""
default_username: Username = "user"
"""
Default user used for the operation in the sandbox.
"""