2023-12-30 10:27:42 +00:00
|
|
|
from os.path import join
|
2024-01-08 21:02:27 +00:00
|
|
|
from sanic import exceptions
|
2023-12-30 10:27:42 +00:00
|
|
|
from config import *
|
|
|
|
import httpx
|
|
|
|
|
2024-01-08 21:02:27 +00:00
|
|
|
METADATA_TAG = "meta_data"
|
|
|
|
VARIATIONS_TAG = "variations"
|
|
|
|
|
2023-12-30 10:27:42 +00:00
|
|
|
QUESTION_TYPES = { #https://docs.pretix.eu/en/latest/api/resources/questions.html
|
|
|
|
"number": "N",
|
|
|
|
"one_line_string": "S",
|
|
|
|
"multi_line_string": "T",
|
|
|
|
"boolean": "B",
|
|
|
|
"choice_from_list": "C",
|
|
|
|
"multiple_choice_from_list": "M",
|
|
|
|
"file_upload": "F",
|
|
|
|
"date": "D",
|
|
|
|
"time": "H",
|
|
|
|
"date_time": "W",
|
|
|
|
"country_code": "CC",
|
|
|
|
"telephone_number": "TEL"
|
|
|
|
}
|
|
|
|
TYPE_OF_QUESTIONS = {} # maps questionId -> type
|
|
|
|
|
|
|
|
|
|
|
|
async def loadQuestions():
|
|
|
|
global TYPE_OF_QUESTIONS
|
|
|
|
TYPE_OF_QUESTIONS.clear()
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
p = 0
|
|
|
|
while 1:
|
|
|
|
p += 1
|
|
|
|
res = await client.get(join(base_url_event, f"questions/?page={p}"), headers=headers)
|
|
|
|
|
|
|
|
if res.status_code == 404: break
|
|
|
|
|
|
|
|
data = res.json()
|
|
|
|
for q in data['results']:
|
2024-01-08 21:02:27 +00:00
|
|
|
TYPE_OF_QUESTIONS[q['id']] = q['type']
|
|
|
|
|
|
|
|
async def loadItems():
|
|
|
|
global ITEMS_ID_MAP
|
|
|
|
global ITEM_VARIATIONS_MAP
|
|
|
|
global CATEGORIES_LIST_MAP
|
|
|
|
global ROOM_TYPE_NAMES
|
|
|
|
async with httpx.AsyncClient() as client:
|
|
|
|
p = 0
|
|
|
|
while 1:
|
|
|
|
p += 1
|
|
|
|
res = await client.get(join(base_url_event, f"items/?page={p}"), headers=headers)
|
|
|
|
|
|
|
|
if res.status_code == 404: break
|
|
|
|
|
|
|
|
data = res.json()
|
|
|
|
for q in data['results']:
|
|
|
|
# Map item id
|
|
|
|
itemName = checkAndGetName ('item', q)
|
|
|
|
if itemName and itemName in ITEMS_ID_MAP:
|
|
|
|
ITEMS_ID_MAP[itemName] = q['id']
|
|
|
|
# If item has variations, map them, too
|
|
|
|
if itemName in ITEM_VARIATIONS_MAP and VARIATIONS_TAG in q:
|
|
|
|
isBedInRoom = itemName == 'bed_in_room'
|
|
|
|
for v in q[VARIATIONS_TAG]:
|
|
|
|
variationName = checkAndGetName('variation', v)
|
|
|
|
if variationName and variationName in ITEM_VARIATIONS_MAP[itemName]:
|
|
|
|
ITEM_VARIATIONS_MAP[itemName][variationName] = v['id']
|
|
|
|
if isBedInRoom and variationName in ITEM_VARIATIONS_MAP['bed_in_room']:
|
|
|
|
roomName = v['name'] if 'name' in v and isinstance(v['name'], str) else None
|
|
|
|
if not roomName and 'value' in v:
|
|
|
|
roomName = v['value'][list(v['value'].keys())[0]]
|
|
|
|
ROOM_TYPE_NAMES[v['id']] = roomName
|
|
|
|
# Adds itself to the category list
|
|
|
|
categoryName = checkAndGetCategory ('item', q)
|
|
|
|
if not categoryName: continue
|
|
|
|
CATEGORIES_LIST_MAP[categoryName].append(q['id'])
|
|
|
|
if (DEV_MODE):
|
|
|
|
print (f'Mapped Items:')
|
|
|
|
print (ITEMS_ID_MAP)
|
|
|
|
print (f'Mapped Variations:')
|
|
|
|
print (ITEM_VARIATIONS_MAP)
|
|
|
|
print (f'Mapped categories:')
|
|
|
|
print (CATEGORIES_LIST_MAP)
|
|
|
|
print (f'Mapped Rooms:')
|
|
|
|
print (ROOM_TYPE_NAMES)
|
|
|
|
|
|
|
|
# Tries to get an item name from metadata. Prints a warning if an item has no metadata
|
|
|
|
def checkAndGetName(type, q):
|
|
|
|
itemName = extractMetadataName(q)
|
|
|
|
if not itemName and DEV_MODE:
|
|
|
|
print (type + ' ' + q['id'] + ' has not been mapped.')
|
|
|
|
return itemName
|
|
|
|
|
|
|
|
def checkAndGetCategory (type, q):
|
|
|
|
categoryName = extractCategory (q)
|
|
|
|
if not categoryName and DEV_MODE:
|
|
|
|
print (type + ' ' + q['id'] + ' has no category set.')
|
|
|
|
return categoryName
|
|
|
|
|
|
|
|
# Checks if the item has specified metadata name
|
|
|
|
def internalNameCheck (toExtract, name):
|
|
|
|
return toExtract and name and METADATA_TAG in toExtract and toExtract[METADATA_TAG][METADATA_NAME] == str(name)
|
|
|
|
|
|
|
|
# Returns the item_name metadata from the item or None if not defined
|
|
|
|
def extractMetadataName (toExtract):
|
|
|
|
return extractData(toExtract, [METADATA_TAG, METADATA_NAME])
|
|
|
|
|
|
|
|
# Returns the category_name metadata from the item or None if not defined
|
|
|
|
def extractCategory (toExtract):
|
|
|
|
return extractData(toExtract, [METADATA_TAG, METADATA_CATEGORY])
|
|
|
|
|
|
|
|
def extractData (dataFrom, tags):
|
|
|
|
data = dataFrom
|
|
|
|
for t in tags:
|
|
|
|
if t not in data: return None
|
|
|
|
data = data[t]
|
|
|
|
return data
|
|
|
|
|
|
|
|
def keyFromValue(dict, value):
|
|
|
|
return [k for k,v in dict.items() if v == value]
|
|
|
|
|
|
|
|
def sizeof_fmt(num, suffix="B"):
|
|
|
|
for unit in ("", "K", "M", "G", "T", "P", "E", "Z"):
|
|
|
|
if abs(num) < 1000.0:
|
|
|
|
return f"{num:3.1f}{unit}{suffix}"
|
|
|
|
num /= 1000.0
|
|
|
|
return f"{num:.1f}Yi{suffix}"
|
|
|
|
|
2024-01-08 22:16:26 +00:00
|
|
|
async def getOrderByCode(request, code, throwException=False):
|
2024-01-08 21:02:27 +00:00
|
|
|
res = await request.app.ctx.om.get_order(code=code)
|
2024-01-08 22:16:26 +00:00
|
|
|
if not throwException:
|
|
|
|
return res
|
2024-01-08 21:02:27 +00:00
|
|
|
if res is None:
|
2024-01-08 22:16:26 +00:00
|
|
|
raise exceptions.BadRequest(f"[getOrderByCode] Code {code} not found!")
|
2024-01-08 21:02:27 +00:00
|
|
|
return res
|
|
|
|
|
|
|
|
def getPeopleInRoomByRoomId(request, roomId):
|
|
|
|
c = request.app.ctx.om.cache
|
|
|
|
ret = []
|
|
|
|
for person in c.values():
|
|
|
|
if person.room_id == roomId:
|
|
|
|
ret.append(person)
|
|
|
|
return ret
|