mirror of
https://gitlab.aachen.ccc.de/inventory/in.git
synced 2025-04-04 18:38:48 +02:00
Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
703a210f1e | ||
![]() |
ec64e81829 | ||
![]() |
8f5a82fb41 |
2 changed files with 48 additions and 0 deletions
|
@ -3,3 +3,4 @@
|
||||||
/README.md
|
/README.md
|
||||||
*.pyc
|
*.pyc
|
||||||
Dockerfile
|
Dockerfile
|
||||||
|
/contrib/
|
||||||
|
|
47
contrib/bulk_create.py
Executable file
47
contrib/bulk_create.py
Executable file
|
@ -0,0 +1,47 @@
|
||||||
|
#!/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