93 lines
3.3 KiB
Python
93 lines
3.3 KiB
Python
import json
|
|
from pathlib import Path
|
|
from typing import Dict, Tuple, Union # I have just python3.8 here :(
|
|
|
|
|
|
# ids of the questions which represent a size of a merch product
|
|
SIZE_IDS = (312, 313, 314, 316, 319, 320, 321, 322, 323)
|
|
# ID of wishlist for ewiges Frühstück
|
|
BREAKFASTWISHES_ID = 309
|
|
# Wie heißt die Athenanas?
|
|
ATHENE_ID = 305 # ID of the question of how the logo image is to be named
|
|
HUMAN_ID = 147 # ticket for a human
|
|
MASCOT_ID = 148 # ticket for a mascot
|
|
|
|
|
|
def parse(filename: Union[str, Path]) -> Tuple[
|
|
Dict[int, str],
|
|
Dict[int, int],
|
|
Dict[int, str],
|
|
Dict[int, Dict[Tuple[int, str], int]]
|
|
]:
|
|
"""Parse a JSON export from pretix.
|
|
|
|
:param filename: filename of the JSON export to parse.
|
|
:returns: Four mappings:
|
|
* item_id to item name
|
|
* item_id to order count of this item
|
|
* question_id to question identifier
|
|
* question_id to stats for this question, which identifies an answer by its item_id and actual answer.
|
|
The stats map this identifier to number of occurrences
|
|
"""
|
|
with open(filename, 'r', encoding='utf8') as f:
|
|
data = json.load(f)['event']
|
|
|
|
items = {i['id']: i['name'] for i in data['items']}
|
|
count_items = {id_: 0 for id_ in items}
|
|
questions = {q['id']: q['identifier'] for q in data['questions']}
|
|
quest_answers = {id_: {} for id_ in questions}
|
|
|
|
for order in data['orders']:
|
|
for position in order['positions']:
|
|
item_id = position['item']
|
|
count_items[item_id] += 1
|
|
for answer in position['answers']:
|
|
quest_id = answer['question']
|
|
answer_key = (item_id, answer['answer'])
|
|
quest_answers[quest_id][answer_key] = (
|
|
quest_answers[quest_id].get(answer_key, 0) + 1
|
|
)
|
|
|
|
return items, count_items, questions, quest_answers
|
|
|
|
|
|
def wiki_stats(items: Dict[int, str], count_items: Dict[int, int], questions: Dict[int, str],
|
|
quest_answers: Dict[int, Dict[Tuple[int, str], int]]) -> str:
|
|
"""Generate stats for the Wiki page.
|
|
|
|
Input parameters are output of the parse() function.
|
|
"""
|
|
ret = ""
|
|
ret += ('== Anmeldezahlen ==\n'
|
|
'{|class="wikitable sortable"\n'
|
|
'! Posten !! Anzahl\n'
|
|
'|-\n')
|
|
for item_id, item_name in items.items():
|
|
ret += f"|| {item_name} || {count_items.get(item_id)}\n|-\n"
|
|
ret += "|}\n\n"
|
|
|
|
ret += ('== Merch-Größenverteilung ==\n'
|
|
'{|class="wikitable sortable"\n'
|
|
'! Größe/Eigenschaft !! Wert !! Anzahl\n'
|
|
'|-\n')
|
|
for size_id in SIZE_IDS:
|
|
for size, count in quest_answers[size_id].items():
|
|
ret += f"|| {questions[size_id]}: || {size[1]} || {count}\n|-\n"
|
|
ret += "|}\n\n"
|
|
|
|
ret += '== Wünsche an das ewige Frühstück ==\n'
|
|
for wish in quest_answers[BREAKFASTWISHES_ID]:
|
|
ret += f"* <pre>{wish[1]}</pre>\n"
|
|
ret += "\n"
|
|
|
|
def prefix(id_):
|
|
return "Mensch sagt:" if id_ == HUMAN_ID else "Maskottchen sagt:" if id_ == MASCOT_ID else ""
|
|
ret += ('== Wie heißt das Ding? ==\n'
|
|
'{|class="wikitable sortable"\n'
|
|
'! Variante !! Stimmen\n'
|
|
'|-\n')
|
|
for variant, count in quest_answers[ATHENE_ID].items():
|
|
ret += f"|| {prefix(variant[0])} {variant[1]} || {count}\n|-\n"
|
|
ret += "|}\n"
|
|
|
|
return ret
|