blob: 4e6111776db8a038b33a868ef321fc1da4038e49 (
plain) (
tree)
|
|
import uuid
from flask import render_template, redirect
class Website:
def __init__(self, app) -> None:
self.app = app
self.routes = {
'/': {
'function': lambda: redirect('/chat'),
'methods': ['GET', 'POST']
},
'/chat/': {
'function': self._index,
'methods': ['GET', 'POST']
},
'/chat/<conversation_id>': {
'function': self._chat,
'methods': ['GET', 'POST']
},
}
def _chat(self, conversation_id):
if '-' not in conversation_id:
return redirect('/chat')
return render_template('index.html', chat_id=conversation_id)
def _index(self):
return render_template('index.html', chat_id=str(uuid.uuid4()))
|