-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
181 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
import datetime | ||
import json | ||
import logging | ||
from typing import Any, Dict, Tuple | ||
|
||
import aiohttp | ||
from eth_account.messages import encode_defunct | ||
from jwcrypto import jwk | ||
from jwcrypto.jwa import JWA | ||
|
||
from aleph.sdk.types import Account | ||
from aleph.sdk.utils import to_0x_hex | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class VmClient: | ||
def __init__(self, account: Account, domain: str = ""): | ||
self.account: Account = account | ||
self.ephemeral_key: jwk.JWK = jwk.JWK.generate(kty="EC", crv="P-256") | ||
self.domain: str = domain | ||
self.pubkey_payload = self._generate_pubkey_payload() | ||
self.pubkey_signature_header: str = "" | ||
self.session = aiohttp.ClientSession() | ||
|
||
def _generate_pubkey_payload(self) -> Dict[str, Any]: | ||
return { | ||
"pubkey": json.loads(self.ephemeral_key.export_public()), | ||
"alg": "ECDSA", | ||
"domain": self.domain, | ||
"address": self.account.get_address(), | ||
"expires": ( | ||
datetime.datetime.utcnow() + datetime.timedelta(days=1) | ||
).isoformat() | ||
+ "Z", | ||
} | ||
|
||
async def _generate_pubkey_signature_header(self) -> str: | ||
pubkey_payload = json.dumps(self.pubkey_payload).encode("utf-8").hex() | ||
signable_message = encode_defunct(hexstr=pubkey_payload) | ||
buffer_to_sign = signable_message.body | ||
|
||
signed_message = await self.account.sign_raw(buffer_to_sign) | ||
pubkey_signature = to_0x_hex(signed_message) | ||
|
||
return json.dumps( | ||
{ | ||
"sender": self.account.get_address(), | ||
"payload": pubkey_payload, | ||
"signature": pubkey_signature, | ||
"content": {"domain": self.domain}, | ||
} | ||
) | ||
|
||
async def _generate_header( | ||
self, vm_id: str, operation: str | ||
) -> Tuple[str, Dict[str, str]]: | ||
base_url = f"http://{self.domain}" | ||
path = ( | ||
f"/logs/{vm_id}" | ||
if operation == "logs" | ||
else f"/control/machine/{vm_id}/{operation}" | ||
) | ||
|
||
payload = { | ||
"time": datetime.datetime.utcnow().isoformat() + "Z", | ||
"method": "POST", | ||
"path": path, | ||
} | ||
payload_as_bytes = json.dumps(payload).encode("utf-8") | ||
headers = {"X-SignedPubKey": self.pubkey_signature_header} | ||
payload_signature = JWA.signing_alg("ES256").sign( | ||
self.ephemeral_key, payload_as_bytes | ||
) | ||
headers["X-SignedOperation"] = json.dumps( | ||
{ | ||
"payload": payload_as_bytes.hex(), | ||
"signature": payload_signature.hex(), | ||
} | ||
) | ||
|
||
return f"{base_url}{path}", headers | ||
|
||
async def perform_operation(self, vm_id, operation): | ||
if not self.pubkey_signature_header: | ||
self.pubkey_signature_header = ( | ||
await self._generate_pubkey_signature_header() | ||
) | ||
|
||
url, header = await self._generate_header(vm_id=vm_id, operation=operation) | ||
|
||
try: | ||
async with self.session.post(url, headers=header) as response: | ||
response_text = await response.text() | ||
return response.status, response_text | ||
except aiohttp.ClientError as e: | ||
logger.error(f"HTTP error during operation {operation}: {str(e)}") | ||
return None, str(e) | ||
|
||
async def get_logs(self, vm_id): | ||
if not self.pubkey_signature_header: | ||
self.pubkey_signature_header = ( | ||
await self._generate_pubkey_signature_header() | ||
) | ||
|
||
ws_url, header = await self._generate_header(vm_id=vm_id, operation="logs") | ||
|
||
async with aiohttp.ClientSession() as session: | ||
async with session.ws_connect(ws_url) as ws: | ||
auth_message = { | ||
"auth": { | ||
"X-SignedPubKey": header["X-SignedPubKey"], | ||
"X-SignedOperation": header["X-SignedOperation"], | ||
} | ||
} | ||
await ws.send_json(auth_message) | ||
async for msg in ws: # msg is of type aiohttp.WSMessage | ||
if msg.type == aiohttp.WSMsgType.TEXT: | ||
yield msg.data | ||
elif msg.type == aiohttp.WSMsgType.ERROR: | ||
break | ||
|
||
async def start_instance(self, vm_id): | ||
return await self.notify_allocation(vm_id) | ||
|
||
async def stop_instance(self, vm_id): | ||
return await self.perform_operation(vm_id, "stop") | ||
|
||
async def reboot_instance(self, vm_id): | ||
|
||
return await self.perform_operation(vm_id, "reboot") | ||
|
||
async def erase_instance(self, vm_id): | ||
return await self.perform_operation(vm_id, "erase") | ||
|
||
async def expire_instance(self, vm_id): | ||
return await self.perform_operation(vm_id, "expire") | ||
|
||
async def notify_allocation(self, vm_id) -> Tuple[Any, str]: | ||
json_data = {"instance": vm_id} | ||
async with self.session.post( | ||
f"https://{self.domain}/control/allocation/notify", json=json_data | ||
) as s: | ||
form_response_text = await s.text() | ||
return s.status, form_response_text | ||
|
||
async def manage_instance(self, vm_id, operations): | ||
for operation in operations: | ||
status, response = await self.perform_operation(vm_id, operation) | ||
if status != 200: | ||
return status, response | ||
return | ||
|
||
async def close(self): | ||
await self.session.close() | ||
|
||
async def __aenter__(self): | ||
return self | ||
|
||
async def __aexit__(self, exc_type, exc_value, traceback): | ||
await self.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters