furizon_webint/app.py

225 lines
8.0 KiB
Python
Raw Normal View History

2022-12-18 16:40:39 +00:00
from sanic import Sanic, response, exceptions
from sanic.response import text, html, redirect, raw
from jinja2 import Environment, FileSystemLoader
2024-02-13 12:29:03 +00:00
from time import time, sleep
2022-12-18 16:40:39 +00:00
import httpx
from os.path import join
2022-12-18 16:40:39 +00:00
from ext import *
from config import *
from aztec_code_generator import AztecCode
2023-12-30 10:27:42 +00:00
from propic import resetDefaultPropic
from io import BytesIO
from asyncio import Queue
from messages import LOCALES
import sqlite3
2024-02-13 12:29:03 +00:00
import requests
import sys
from sanic.log import logger, logging
2022-12-18 16:40:39 +00:00
2024-02-14 15:10:27 +00:00
if METRICS:
from sanic_prometheus import monitor
2022-12-18 16:40:39 +00:00
app = Sanic(__name__)
app.static("/res", "res/")
app.ext.add_dependency(Order, get_order)
app.ext.add_dependency(Quotas, get_quotas)
from room import bp as room_bp
from propic import bp as propic_bp
2023-05-23 19:02:44 +00:00
from karaoke import bp as karaoke_bp
2023-01-17 21:25:35 +00:00
from export import bp as export_bp
2023-01-19 16:02:57 +00:00
from stats import bp as stats_bp
2023-05-08 21:04:15 +00:00
from api import bp as api_bp
from carpooling import bp as carpooling_bp
from checkin import bp as checkin_bp
from admin import bp as admin_bp
2022-12-18 16:40:39 +00:00
app.blueprint([room_bp, karaoke_bp, propic_bp, export_bp, stats_bp, api_bp, carpooling_bp, checkin_bp, admin_bp])
2023-12-30 10:27:42 +00:00
2022-12-18 16:40:39 +00:00
@app.exception(exceptions.SanicException)
async def clear_session(request, exception):
2024-02-14 15:10:27 +00:00
print(exception)
print(request)
2022-12-18 16:40:39 +00:00
tpl = app.ctx.tpl.get_template('error.html')
2023-05-11 22:18:49 +00:00
r = html(tpl.render(exception=exception))
2022-12-18 16:40:39 +00:00
if exception.status_code == 403:
r.delete_cookie("foxo_code")
r.delete_cookie("foxo_secret")
2023-05-11 22:18:49 +00:00
return r
2022-12-18 16:40:39 +00:00
@app.before_server_start
async def main_start(*_):
logger.info(f"[{app.name}] >>>>>> main_start <<<<<<")
logger.setLevel(LOG_LEVEL)
2024-01-13 15:59:13 +00:00
app.config.REQUEST_MAX_SIZE = PROPIC_MAX_FILE_SIZE * 3
2023-01-17 21:25:35 +00:00
app.ctx.om = OrderManager()
if FILL_CACHE:
await app.ctx.om.update_cache()
app.ctx.nfc_counts = sqlite3.connect('data/nfc_counts.db')
2023-05-11 22:18:49 +00:00
app.ctx.login_codes = {}
2022-12-18 16:40:39 +00:00
app.ctx.tpl = Environment(loader=FileSystemLoader("tpl"), autoescape=True)
app.ctx.tpl.globals.update(time=time)
2023-05-08 21:04:15 +00:00
app.ctx.tpl.globals.update(PROPIC_DEADLINE=PROPIC_DEADLINE)
app.ctx.tpl.globals.update(LOCALES=LOCALES)
app.ctx.tpl.globals.update(ITEMS_ID_MAP=ITEMS_ID_MAP)
app.ctx.tpl.globals.update(ITEM_VARIATIONS_MAP=ITEM_VARIATIONS_MAP)
2023-12-30 10:27:42 +00:00
app.ctx.tpl.globals.update(ROOM_TYPE_NAMES=ROOM_TYPE_NAMES)
app.ctx.tpl.globals.update(PROPIC_MIN_SIZE=PROPIC_MIN_SIZE)
app.ctx.tpl.globals.update(PROPIC_MAX_SIZE=PROPIC_MAX_SIZE)
app.ctx.tpl.globals.update(PROPIC_MAX_FILE_SIZE=sizeof_fmt(PROPIC_MAX_FILE_SIZE))
2022-12-18 16:40:39 +00:00
app.ctx.tpl.globals.update(int=int)
app.ctx.tpl.globals.update(len=len)
@app.route("/manage/barcode/<code>")
async def gen_barcode(request, code):
aa = AztecCode(code).image(module_size=8, border=2)
img = BytesIO()
aa.save(img, format='PNG')
return raw(img.getvalue(), content_type="image/png")
2023-01-17 21:25:35 +00:00
2023-07-29 14:05:46 +00:00
@app.route(f"/{ORGANIZER}/{EVENT_NAME}/order/<code>/<secret>/open/<secret2>")
2022-12-18 16:40:39 +00:00
async def redirect_explore(request, code, secret, order: Order, secret2=None):
2023-05-11 22:18:49 +00:00
r = redirect(app.url_for("welcome"))
2022-12-18 16:40:39 +00:00
if order and order.code != code: order = None
if not order:
async with httpx.AsyncClient() as client:
2023-12-30 10:27:42 +00:00
res = await client.get(join(base_url_event, f"orders/{code}/"), headers=headers)
2022-12-18 16:40:39 +00:00
if res.status_code != 200:
raise exceptions.NotFound("This order code does not exist. Check that your order wasn't deleted, or the link is correct.")
res = res.json()
if secret != res['secret']:
raise exceptions.Forbidden("The secret part of the url is not correct. Check your E-Mail for the correct link, or contact support!")
2023-05-11 22:18:49 +00:00
r.cookies['foxo_code'] = code
r.cookies['foxo_secret'] = secret
return r
2022-12-18 16:40:39 +00:00
2023-02-02 21:47:33 +00:00
@app.route("/manage/privacy")
async def privacy(request):
tpl = app.ctx.tpl.get_template('privacy.html')
return html(tpl.render())
2022-12-18 16:40:39 +00:00
@app.route("/manage/welcome")
async def welcome(request, order: Order, quota: Quotas):
if not order:
raise exceptions.Forbidden("You have been logged out. Please access the link in your E-Mail to login again!")
2023-12-30 10:27:42 +00:00
if order.ans("propic_file") is None:
await resetDefaultPropic(request, order, False)
if order.ans("propic_fursuiter_file") is None:
await resetDefaultPropic(request, order, True)
2022-12-18 16:40:39 +00:00
pending_roommates = []
if order.pending_roommates:
for pr in order.pending_roommates:
if not pr: continue
2023-01-17 21:25:35 +00:00
pending_roommates.append(await app.ctx.om.get_order(code=pr, cached=True))
2022-12-18 16:40:39 +00:00
room_members = []
if order.room_id:
if order.room_id != order.code:
2023-01-17 21:25:35 +00:00
room_owner = await app.ctx.om.get_order(code=order.room_id, cached=True)
2022-12-18 16:40:39 +00:00
else:
room_owner = order
room_members.append(room_owner)
for member_id in room_owner.ans('room_members').split(','):
if member_id == room_owner.code: continue
if member_id == order.code:
room_members.append(order)
else:
room_members.append(await app.ctx.om.get_order(code=member_id, cached=True))
2024-01-19 17:03:54 +00:00
2022-12-18 16:40:39 +00:00
tpl = app.ctx.tpl.get_template('welcome.html')
2024-01-19 17:03:54 +00:00
return html(tpl.render(order=order, quota=quota, room_members=room_members, pending_roommates=pending_roommates, ROOM_ERROR_MESSAGES=ROOM_ERROR_TYPES))
2022-12-18 16:40:39 +00:00
@app.route("/manage/download_ticket")
2022-12-19 17:58:16 +00:00
async def download_ticket(request, order: Order):
2022-12-18 16:40:39 +00:00
if not order:
raise exceptions.Forbidden("You have been logged out. Please access the link in your E-Mail to login again!")
if not order.status != 'confirmed':
raise exceptions.Forbidden("You are not allowed to download this ticket.")
async with httpx.AsyncClient() as client:
2023-12-30 10:27:42 +00:00
res = await client.get(join(base_url_event, f"orders/{order.code}/download/pdf/"), headers=headers)
2022-12-19 17:58:16 +00:00
if res.status_code == 409:
2022-12-19 17:58:16 +00:00
raise exceptions.SanicException("Your ticket is still being generated. Please try again later!", status_code=res.status_code)
elif res.status_code == 403:
raise exceptions.SanicException("You can download your ticket only after the order has been confirmed and paid. Try later!", status_code=400)
2022-12-19 17:58:16 +00:00
return raw(res.content, content_type='application/pdf')
@app.route("/manage/admin")
async def admin(request, order: Order):
await request.app.ctx.om.update_cache()
if not order:
raise exceptions.Forbidden("You have been logged out. Please access the link in your E-Mail to login again!")
2024-01-13 15:59:13 +00:00
if EXTRA_PRINTS:
logger.info(f"Checking admin credentials of {order.code} with secret {order.secret}")
if not order.isAdmin(): raise exceptions.Forbidden("Birichino :)")
tpl = app.ctx.tpl.get_template('admin.html')
return html(tpl.render(order=order))
@app.route("/manage/logout")
async def logout(request):
2024-01-13 15:59:13 +00:00
orgCode = request.cookies.get("foxo_code_ORG")
orgSecret = request.cookies.get("foxo_secret_ORG")
if orgCode != None and orgSecret != None:
r = redirect(f'/manage/welcome')
r.cookies['foxo_code'] = orgCode
r.cookies['foxo_secret'] = orgSecret
r.delete_cookie("foxo_code_ORG")
r.delete_cookie("foxo_secret_ORG")
return r
2023-12-30 10:27:42 +00:00
raise exceptions.Forbidden("You have been logged out.")
2022-12-18 16:40:39 +00:00
if __name__ == "__main__":
2024-02-13 12:29:03 +00:00
# Wait for pretix in server reboot
# Using a docker configuration, pretix may be unable to talk with postgres if postgres' service started before it.
# To fix this issue I added a After=pretix.service to the [Unit] section of /lib/systemd/system/postgresql@.service
# to let it start in the correct order. The following piece of code makes sure that pretix is running and can talk to
# postgres before actually starting the reserved area, since this operation requires a cache-fill in startup
print("Waiting for pretix to be up and running", file=sys.stderr)
while True:
print("Trying connecting to pretix...", file=sys.stderr)
try:
res = requests.get(base_url_event, headers=headers)
res = res.json()
if(res['slug'] == EVENT_NAME):
2024-02-13 13:17:21 +00:00
print("Healtchecking...", file=sys.stderr)
res = requests.get(join(domain, "healthcheck"), headers=headers)
if(res.status_code == 200):
break
2024-02-13 12:29:03 +00:00
except:
pass
sleep(5)
print("Connected to pretix!", file=sys.stderr)
2024-02-14 15:10:27 +00:00
if(METRICS):
if(METRICS_USE_ANOTHER_SOCKET):
print(f"Startin metrics server on {METRICS_IP}:{METRICS_PORT} on path '{METRICS_PATH}'")
monitor(app, metrics_path=METRICS_PATH).start_server(addr=METRICS_IP, port=METRICS_PORT)
else:
print(f"Startin metrics server on path '{METRICS_PATH}'")
monitor(app, metrics_path=METRICS_PATH).expose_endpoint()
2024-02-13 12:29:03 +00:00
app.run(host="127.0.0.1", port=8188, dev=DEV_MODE, access_log=ACCESS_LOG)