Compare commits

...

3 commits

Author SHA1 Message Date
Edward Betts 295e833621 Scripts live in their own dir 2023-09-25 18:02:14 +01:00
Edward Betts 253096bf59 Reorganise code 2023-09-25 18:01:12 +01:00
Edward Betts a5f8070179 Improve speaker merging code. 2023-09-25 17:35:21 +01:00
23 changed files with 68 additions and 3 deletions

View file

@ -186,9 +186,20 @@ def merge() -> str | Response:
print(other_ids, "->", merge_to_id)
conference_people = model.ConferencePerson.query.filter(
model.ConferencePerson.person_id.in_(other_ids)
)
with database.session.begin():
merge_to = model.Person.query.get(merge_to_id)
existing_conferences = {conf.id for conf in merge_to.conferences}
to_delete = [
cp for cp in conference_people if cp.conference_id in existing_conferences
]
for cp in to_delete:
database.session.delete(cp)
if merge_to_id != name_from_person_id:
merge_to = model.Person.query.get(merge_to_id)
name_from_person = model.Person.query.get(name_from_person_id)
merge_to.name = name_from_person.name

55
scripts/add_conference_urls.py Executable file
View file

@ -0,0 +1,55 @@
#!/usr/bin/python3
import os
import json
from confarchive import database, model
from confarchive.view import app
app.config.from_object("config.default")
database.init_app(app)
def url_from_giggty_menu() -> None:
for conf in model.Conference.query.order_by(model.Conference.short_name):
if conf.url:
continue
giggity_menu = "giggity/menu/"
menu_filename = os.path.join(giggity_menu, conf.short_name + ".json")
if not os.path.exists(menu_filename):
continue
menu = json.load(open(menu_filename))
links = {link["title"]: link["url"] for link in menu["metadata"]["links"]}
if "Website" not in links:
continue
print(json.dumps(links, indent=2))
url = links["Website"]
print(conf.short_name, menu_filename, url)
conf.url = url
database.session.commit()
def add_more_urls() -> None:
for conf in model.Conference.query.order_by(model.Conference.short_name):
if conf.url:
continue
if conf.short_name.startswith("debconf"):
conf.url = f"https://{conf.short_name}.debconf.org/"
print(conf.short_name, conf.url)
if conf.short_name.startswith("fosdem"):
year = conf.short_name[-4:]
conf.url = f"https://fosdem.org/{year}/"
print(conf.short_name, conf.url)
database.session.commit()
add_more_urls()

View file

@ -1,9 +1,8 @@
#!/usr/bin/python3
from main import app
import sys
from confarchive import database, model, wikidata
from confarchive.view import app
app.config.from_object("config.default")
database.init_app(app)