aboutsummaryrefslogtreecommitdiffstats
path: root/server.py
blob: 14c4182d895b005eca9cb50b94eb3dbc4ca42d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
"""
server.py - sets up and runs the flask server
"""
import os
from flask import Flask
from siteconfig import siteconfig
from flask_compress import Compress
from flask_caching import Cache
from rss_generator import RSS_Item, get_rss_channel

app = Flask(__name__)
compress = Compress()
cache = Cache(config=siteconfig.cache_config)

from views import *


def setup():
    """
    setup - sets up the app according to the settings specified (or not
    specified) in `siteconfig`
    """
    if siteconfig.SECRET_KEY:
        app.config['SECRET_KEY'] = siteconfig.SECRET_KEY
    else:
        SECRET_KEY = os.urandom(32)
        app.config['SECRET_KEY'] = SECRET_KEY

    if siteconfig.MAIN_SITE_DIRS:
        app.config.update({'MAIN_SITE_DIRS': siteconfig.MAIN_SITE_DIRS})
    else:
        s = "./templates/site/"
        top_dirs = [
            x
            for x in os.listdir(s)
            if os.path.isdir(s + x) and not x.startswith(".")
        ]
        app.config.update({'MAIN_SITE_DIRS': sorted(top_dirs)})

    app.config.update({'DOMAIN': siteconfig.DOMAIN})
    app.config.update({'HOME_TITLE': siteconfig.HOME_TITLE})
    app.config.update(
        {'COMPRESS_MIMETYPES': siteconfig.COMPRESS_MIMETYPES}
    )
    app.config.update({'RSS_CHANNEL': get_rss_channel()})
    app.config.update({'TEMPLATES_AUTO_RELOAD': True})

# Setup needs to come first to be compatible with wsgi
setup()
compress.init_app(app)
cache.init_app(app)
if __name__ == "__main__":
    app.run()