48 lines
1.1 KiB
Python
48 lines
1.1 KiB
Python
from flask import Flask, make_response, redirect, request, jsonify, render_template, send_from_directory
|
|
import os
|
|
import dotenv
|
|
import requests
|
|
import json
|
|
import schedule
|
|
import time
|
|
from email_validator import validate_email, EmailNotValidError
|
|
import accounts
|
|
|
|
app = Flask(__name__)
|
|
dotenv.load_dotenv()
|
|
|
|
|
|
#Assets routes
|
|
@app.route('/assets/<path:path>')
|
|
def assets(path):
|
|
return send_from_directory('templates/assets', path)
|
|
|
|
#! TODO make prettier
|
|
def error(message):
|
|
return jsonify({'success': False, 'message': message}), 400
|
|
|
|
@app.route('/')
|
|
def index():
|
|
host = request.host
|
|
return jsonify({'success': True, 'message': host})
|
|
|
|
|
|
@app.route('/<path:path>')
|
|
def catch_all(path):
|
|
# If file exists, load it
|
|
if os.path.isfile('templates/' + path):
|
|
return render_template(path)
|
|
|
|
# Try with .html
|
|
if os.path.isfile('templates/' + path + '.html'):
|
|
return render_template(path + '.html')
|
|
return redirect('/') # 404 catch all
|
|
|
|
# 404 catch all
|
|
@app.errorhandler(404)
|
|
def not_found(e):
|
|
return redirect('/')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=False, port=5000, host='0.0.0.0') |