fuckyourday/app.py

62 lines
2.4 KiB
Python
Raw Permalink Normal View History

2024-03-24 18:56:52 -05:00
import os
import random
2024-03-29 16:05:24 -05:00
from flask import Flask, send_from_directory, session, render_template
2024-03-24 18:56:52 -05:00
2024-03-30 12:38:32 -05:00
app = Flask(__name__)
app.config['TRAP_HTTP_EXCEPTIONS']=True
app.secret_key = '420-69-LOL' # For using client side session cookies
# Script must run from root dir containing all websites dirs
# OR change the ROOT_DIR path :)
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
2024-03-24 18:56:52 -05:00
# Site choosing logic
def current_website_dir():
2024-03-28 11:48:34 -05:00
WEBSITE_DIRS = [name for name in os.listdir(ROOT_DIR)
if not name.startswith('.')
and os.path.isdir(os.path.join(ROOT_DIR, name))]
2024-03-27 22:39:22 -05:00
match session['requests']: #Match Nth page request
2024-03-27 21:52:53 -05:00
case 5:
session['website_dir'] = 'Marvel'
2024-03-27 21:52:53 -05:00
case 6:
session['website_dir'] = 'Escape'
2024-03-27 22:39:22 -05:00
session.pop('requests', None) # Reset request count
2024-03-27 21:52:53 -05:00
case _:
2024-03-27 22:39:22 -05:00
for dir in WEBSITE_DIRS:
match dir: # Remove request specific pages
2024-03-29 16:05:24 -05:00
case 'Escape' | 'Marvel' | 'templates':
WEBSITE_DIRS.remove(dir)
website_choice = random.choice(WEBSITE_DIRS)
if 'website_dir' in session: # Don't serve templates back to back
while website_choice == session['website_dir']:
website_choice = random.choice(WEBSITE_DIRS)
session['website_dir'] = website_choice
else:
session['website_dir'] = website_choice
2024-03-30 12:38:32 -05:00
@app.route('/<path:filename>', methods=['GET']) # Make static files available
2024-03-24 18:56:52 -05:00
def static_proxy(filename):
return send_from_directory(os.path.join(ROOT_DIR, session['website_dir']), filename)
2024-03-24 18:56:52 -05:00
2024-03-30 12:38:32 -05:00
@app.route('/', methods=['GET']) # Serve site index.html
2024-03-24 18:56:52 -05:00
def index():
2024-03-27 22:39:22 -05:00
if 'requests' in session: # init requests count
session['requests'] += 1
else:
session['requests'] = 1
2024-03-27 22:39:22 -05:00
current_website_dir() # Choose website dir
return send_from_directory(os.path.join(ROOT_DIR, session['website_dir']), 'index.html')
2024-03-30 12:38:32 -05:00
@app.errorhandler(Exception) # Handle uncaught exceptions per code
2024-03-29 16:05:24 -05:00
def handle_error(e):
try:
if e.code < 400:
return Flask.Response.force_type(e, Flask.request.environ)
elif e.code == 404:
return render_template('404.html', error='404'),404
raise e
except:
return render_template('500.html', error='500'),500
2024-03-24 18:56:52 -05:00
if __name__ == "__main__":
2024-03-30 12:38:32 -05:00
app.run()