-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathclient.py
More file actions
50 lines (42 loc) · 1.63 KB
/
client.py
File metadata and controls
50 lines (42 loc) · 1.63 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
from functools import cached_property
from urllib.parse import quote
import requests
class Undersync:
def __init__(
self,
auth_token: str,
api_url="http://undersync-service.undersync.svc.cluster.local:8080",
) -> None:
"""Simple client for Undersync."""
self.token = auth_token
self.api_url = api_url
def sync_devices(self, physical_network: str, force=False, dry_run=False):
if dry_run:
return self.dry_run(physical_network)
elif force:
return self.force(physical_network)
else:
return self.sync(physical_network)
@cached_property
def client(self):
session = requests.Session()
session.headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {self.token}",
}
return session
def sync(self, physical_network: str) -> requests.Response:
physnet = quote(physical_network, safe="")
response = self.client.post(f"{self.api_url}/v1/vlan-group/{physnet}/sync")
response.raise_for_status()
return response
def dry_run(self, physical_network: str) -> requests.Response:
physnet = quote(physical_network, safe="")
response = self.client.post(f"{self.api_url}/v1/vlan-group/{physnet}/dry-run")
response.raise_for_status()
return response
def force(self, physical_network: str) -> requests.Response:
physnet = quote(physical_network, safe="")
response = self.client.post(f"{self.api_url}/v1/vlan-group/{physnet}/force")
response.raise_for_status()
return response