mirror of
https://gitlab.aachen.ccc.de/inventory/in.git
synced 2025-04-05 10:58:49 +02:00
Compare commits
No commits in common. "master" and "v1.1.0" have entirely different histories.
2 changed files with 0 additions and 48 deletions
|
@ -3,4 +3,3 @@
|
||||||
/README.md
|
/README.md
|
||||||
*.pyc
|
*.pyc
|
||||||
Dockerfile
|
Dockerfile
|
||||||
/contrib/
|
|
||||||
|
|
|
@ -1,47 +0,0 @@
|
||||||
#!/usr/bin/env python3
|
|
||||||
|
|
||||||
import sys
|
|
||||||
|
|
||||||
import requests
|
|
||||||
|
|
||||||
BASE = "https://in.ccc.ac"
|
|
||||||
COUNT = 0
|
|
||||||
START_ID = 1
|
|
||||||
|
|
||||||
|
|
||||||
session = requests.Session()
|
|
||||||
# session.auth = (":)", ":)")
|
|
||||||
|
|
||||||
res = session.get(f"{BASE}/api/items")
|
|
||||||
res.raise_for_status()
|
|
||||||
ids = res.json().keys()
|
|
||||||
kiste_ids = {int(i.lstrip("K")) for i in ids if i.startswith("K") and i != "K"}
|
|
||||||
print("existing ids:", repr(kiste_ids), file=sys.stderr)
|
|
||||||
|
|
||||||
current_id = START_ID
|
|
||||||
new_ids = []
|
|
||||||
while len(new_ids) < COUNT:
|
|
||||||
if current_id not in kiste_ids:
|
|
||||||
new_ids.append(current_id)
|
|
||||||
current_id += 1
|
|
||||||
|
|
||||||
print("created:", file=sys.stderr)
|
|
||||||
if len(new_ids) == 0:
|
|
||||||
print("(none)", file=sys.stderr)
|
|
||||||
|
|
||||||
|
|
||||||
for i in new_ids:
|
|
||||||
j = {
|
|
||||||
"id": f"K{i}",
|
|
||||||
"is_in": None,
|
|
||||||
"coords_bl": None,
|
|
||||||
"coords_tr": None,
|
|
||||||
"type": "Kiste",
|
|
||||||
"name": None,
|
|
||||||
"content": None,
|
|
||||||
"note": "Bitte Name, Ort, Inhalt eintragen",
|
|
||||||
"hidden": False,
|
|
||||||
}
|
|
||||||
res = session.put(f"{BASE}/api/items/{j['id']}", json=j)
|
|
||||||
res.raise_for_status()
|
|
||||||
print(f"{j['id']},{BASE}/form.html?id={j['id']}")
|
|
Loading…
Add table
Reference in a new issue