-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scheduler optimizations implementation (#1999)
Co-authored-by: ammar92 <[email protected]>
- Loading branch information
1 parent
39a8f96
commit 089f63e
Showing
10 changed files
with
206 additions
and
29 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
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
Empty file.
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,123 @@ | ||
import csv | ||
import uuid | ||
from datetime import datetime, timezone | ||
from pathlib import Path | ||
from typing import Any, Dict, List | ||
|
||
import requests | ||
|
||
OCTOPOES_API = "http://localhost:8001" | ||
KATALOGUS_API = "http://localhost:8003" | ||
SCHEDULER_API = "http://localhost:8004" | ||
|
||
|
||
def run(): | ||
# Create organisations | ||
orgs: List[Dict[str, Any]] = [] | ||
for n in range(1, 10): | ||
org = { | ||
"id": f"org-{n}", | ||
"name": f"Organisation {n}", | ||
} | ||
orgs.append(org) | ||
|
||
resp_katalogus = requests.post( | ||
url=f"{KATALOGUS_API}/v1/organisations/", | ||
json=org, | ||
) | ||
|
||
try: | ||
resp_katalogus.raise_for_status() | ||
except requests.exceptions.HTTPError: | ||
if resp_katalogus.status_code != 404: | ||
print("Error creating organisation ", org) | ||
raise | ||
|
||
if resp_katalogus.status_code == 404: | ||
print("Organisation already exists in katalogus", org) | ||
|
||
try: | ||
requests.post( | ||
url=f"{OCTOPOES_API}/{org.get('id')}/node/", | ||
) | ||
except requests.exceptions.HTTPError: | ||
print("Error creating organisation ", org) | ||
raise | ||
|
||
print("Created organisation ", org) | ||
|
||
# Enable boefjes for organisation | ||
boefjes = ("dns-records", "dns-sec", "dns-zone") | ||
for boefje_id in boefjes: | ||
resp_enable_boefje = requests.patch( | ||
url=f"{KATALOGUS_API}/v1/organisations/{org.get('id')}/repositories/LOCAL/plugins/{boefje_id}", | ||
json={"enabled": True}, | ||
) | ||
|
||
try: | ||
resp_enable_boefje.raise_for_status() | ||
except requests.exceptions.HTTPError: | ||
print("Error enabling boefje ", boefje_id) | ||
raise | ||
|
||
print("Enabled boefje ", boefje_id) | ||
|
||
declarations: List[Dict[str, Any]] = [] | ||
with Path("data.csv").open(newline="") as csv_file: | ||
csv_reader = csv.DictReader(csv_file, delimiter=",", quotechar='"') | ||
for row in csv_reader: | ||
name = row["name"] | ||
declaration = { | ||
"ooi": { | ||
"object_type": "Hostname", | ||
"primary_key": f"Hostname|internet|{name}", | ||
"network": "Network|internet", | ||
"name": f"{name}", | ||
"dns_zone": None, | ||
"scan_profile": { | ||
"scan_profile_type": "declared", | ||
"level": 1, | ||
"reference": f"Hostname|internet|{name}", | ||
}, | ||
}, | ||
"valid_time": datetime.now(timezone.utc).isoformat(), | ||
"method": None, | ||
"task_id": str(uuid.uuid4()), | ||
} | ||
declarations.append(declaration) | ||
|
||
for org in orgs: | ||
for declaration in declarations: | ||
resp_octopoes_decl = requests.post(f"{OCTOPOES_API}/{org.get('id')}/declarations", json=declaration) | ||
|
||
try: | ||
resp_octopoes_decl.raise_for_status() | ||
except requests.exceptions.HTTPError: | ||
print("Error creating declaration ", declaration) | ||
print(resp_octopoes_decl.text) | ||
raise | ||
|
||
print("Org", org.get("id"), "created declaration ", declaration) | ||
|
||
resp_octopoes_scan_profile = requests.put( | ||
url=f"{OCTOPOES_API}/{org.get('id')}/scan_profiles", | ||
params={"valid_time": datetime.now(timezone.utc)}, | ||
json={ | ||
"scan_profile_type": "declared", | ||
"reference": declaration.get("ooi").get("scan_profile").get("reference"), | ||
"level": declaration.get("ooi").get("scan_profile").get("level"), | ||
}, | ||
) | ||
|
||
try: | ||
resp_octopoes_scan_profile.raise_for_status() | ||
except requests.exceptions.HTTPError: | ||
print("Error creating scan profile", declaration.get("ooi").get("scan_profile")) | ||
print(resp_octopoes_scan_profile.text) | ||
raise | ||
|
||
print("Org {org.get('id')} created scan profile", declaration.get("ooi").get("scan_profile")) | ||
|
||
|
||
if __name__ == "__main__": | ||
run() |