2022-03-27 16:43:15 +02:00
|
|
|
from dataclasses import asdict
|
|
|
|
|
|
|
|
import requests as requests
|
|
|
|
|
|
|
|
from Code.Communication.Direction import Direction
|
|
|
|
from Code.Communication.Member import Member
|
|
|
|
|
|
|
|
|
|
|
|
class APIRequests:
|
|
|
|
|
|
|
|
def connectToMember(self, own_process: Member, ip, port, direction: Direction) -> Member:
|
|
|
|
body = asdict(own_process)
|
2022-03-27 18:11:51 +02:00
|
|
|
response = requests.post(f"http://{ip}:{port}/connect/{direction.name}", json=body,allow_redirects=True)
|
2022-03-27 16:43:15 +02:00
|
|
|
jsonValue = response.json()
|
|
|
|
return Member(jsonValue["ip"], jsonValue["port"])
|
|
|
|
|
|
|
|
def get_edge(self, target: Member, direction: Direction):
|
|
|
|
response = requests.get(f"http://{target.ip}:{target.port}/border/{direction.name}")
|
|
|
|
return response.json()
|
2022-03-27 18:11:51 +02:00
|
|
|
|
|
|
|
def toggle_pause(self, neighbour: Member, new_state: bool):
|
|
|
|
action = "start" if new_state else "stop"
|
2022-03-28 16:29:53 +02:00
|
|
|
print(f"sending {action} to {neighbour}")
|
2022-03-27 18:11:51 +02:00
|
|
|
response = requests.post(f"http://{neighbour.ip}:{neighbour.port}/pause/{action}")
|