fuckyourday/app.py

57 lines
2.1 KiB
Python
Raw Normal View History

2024-03-24 18:56:52 -05:00
import os
import random
from flask import Flask, send_from_directory, session, Blueprint, render_template
2024-03-24 18:56:52 -05:00
app = Flask(__name__)
2024-03-27 22:39:22 -05:00
app.secret_key = '420-69-LOL' # For using client side session cookies
2024-03-24 18:56:52 -05:00
# Site choosing logic
def current_website_dir():
2024-03-27 22:39:22 -05:00
# 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-27 22:39:22 -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))]
session.pop('website_dir', None) # Clear website_dir if exist
match session['requests']: #Match Nth page request
2024-03-27 21:52:53 -05:00
case 5:
session['website_dir'] = (os.path.join(ROOT_DIR, 'Marvel'))
case 6:
session['website_dir'] = (os.path.join(ROOT_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
case 'Escape':
WEBSITE_DIRS.remove(dir)
case 'Marvel':
WEBSITE_DIRS.remove(dir)
case 'Templates':
WEBSITE_DIRS.remove(dir)
2024-03-27 21:52:53 -05:00
session['website_dir'] = random.choice(WEBSITE_DIRS)
2024-03-27 22:39:22 -05:00
@app.route('/<path:filename>', methods=['GET']) # Make static files available
2024-03-24 18:56:52 -05:00
def static_proxy(filename):
try:
return send_from_directory(session['website_dir'], filename)
except KeyError:
return render_template('404.html')
2024-03-24 18:56:52 -05:00
2024-03-27 22:39:22 -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
try:
return send_from_directory(session['website_dir'], 'index.html')
except KeyError:
return render_template('404.html')
@app.errorhandler(404)
def page_not_found(e):
return render_template('404.html')
2024-03-24 18:56:52 -05:00
if __name__ == "__main__":
app.run()