-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.py
More file actions
166 lines (123 loc) · 4.64 KB
/
server.py
File metadata and controls
166 lines (123 loc) · 4.64 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
"""
Simple Flask server that provides paths to the various RSS feeds.
"""
import os
from os import path
from dotenv import load_dotenv
# Load .env from the same directory as this file.
load_dotenv(path.join(path.dirname(__file__), ".env"))
import sentry_sdk # noqa: E402
from flask import Flask, Response, abort # noqa: E402
from flask_caching import Cache # noqa: E402
from jinja2 import Environment, FileSystemLoader # noqa: E402
from requests_cache.backends.sqlite import get_cache_path # noqa: E402
from sentry_sdk.integrations.flask import FlaskIntegration # noqa: E402
from to_rss import USE_CACHE_DIR # noqa: E402
from to_rss.nhl import VALID_TEAMS, nhl_news, team_news # noqa: E402
from to_rss.players_tribune import VALID_SPORTS, sports_news # noqa: E402
from to_rss.pottermore import ( # noqa: E402
pottermore_features,
pottermore_news,
)
from to_rss.wikipedia import get_articles # noqa: E402
# Configure a file system cache to store responses for 5 minutes. With the
# requests cache we might return data that's ~20 minutes old.
#
# Only enable this if specified in the configuration (i.e. don't enable in dev).
CACHE_RESULTS = os.getenv("CACHE_RESULTS", "").lower() == "true"
config = {
"CACHE_TYPE": "FileSystemCache" if CACHE_RESULTS else "NullCache",
"CACHE_DIR": get_cache_path("to_rss_responses", use_cache_dir=USE_CACHE_DIR),
"CACHE_DEFAULT_TIMEOUT": 300,
}
app = Flask(__name__)
app.config.from_mapping(config)
cache = Cache(app)
# Jinja2 environment.
root = path.dirname(path.abspath(__file__))
env = Environment(loader=FileSystemLoader(path.join(root, "to_rss", "templates")))
# Configure Sentry (if credentials are available).
sentry_dsn = os.getenv("SENTRY_DSN")
if sentry_dsn:
sentry_sdk.init(
dsn=sentry_dsn, integrations=[FlaskIntegration()], traces_sample_rate=0.1
)
# Use a custom response class to set security headers.
class ToRssResponse(Response):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# See https://flask.palletsprojects.com/en/1.1.x/security/#security-headers
allowed_sources = [
"'self'",
"'unsafe-inline'",
"https://stackpath.bootstrapcdn.com",
"https://plausible.io",
]
self.headers["Content-Security-Policy"] = "default-src " + " ".join(
allowed_sources
)
self.headers["X-Content-Type-Options"] = "nosniff"
self.headers["X-Frame-Options"] = "SAMEORIGIN"
self.headers["X-XSS-Protection"] = "1; mode=block"
app.response_class = ToRssResponse
@app.route("/")
def serve_about():
"""A link to each endpoint that's supported."""
template = env.get_template("index.html")
return template.render()
# Wikipedia end points.
@app.route("/wikipedia/")
def serve_wikipedia():
template = env.get_template("wikipedia.html")
return template.render()
@app.route("/wikipedia/current_events/")
@cache.cached()
def serve_wikipedia_current_events():
return Response(get_articles(), mimetype="application/rss+xml")
# NHL end points.
@app.route("/nhl/")
def serve_nhl():
template = env.get_template("nhl.html")
return template.render(teams=VALID_TEAMS)
@app.route("/nhl/news/")
@cache.cached()
def serve_nhl_news():
return Response(nhl_news(), mimetype="application/rss+xml")
@app.route("/nhl/<team>/")
@cache.cached()
def serve_nhl_team_news(team):
if team not in VALID_TEAMS:
abort(404)
return Response(team_news(team), mimetype="application/rss+xml")
# Pottermore endpoints.
@app.route("/pottermore/")
def serve_pottermore():
template = env.get_template("pottermore.html")
return template.render()
@app.route("/pottermore/news/")
@cache.cached()
def serve_pottermore_news():
return Response(pottermore_news(), mimetype="application/rss+xml")
@app.route("/pottermore/features/")
@cache.cached()
def serve_pottermore_features():
return Response(pottermore_features(), mimetype="application/rss+xml")
# Thunderbird endpoints.
@app.route("/thunderbird/")
def serve_thunderbird():
template = env.get_template("thunderbird.html")
return template.render()
# The Players Tribune endpoints.
@app.route("/players_tribune/")
def serve_players_tribune():
template = env.get_template("players_tribune.html")
return template.render(sports=VALID_SPORTS)
@app.route("/players_tribune/<sport>/")
@cache.cached()
def serve_players_tribune_sport(sport):
if sport not in VALID_SPORTS:
abort(404)
return Response(sports_news(sport), mimetype="application/rss+xml")
if __name__ == "__main__":
# This is only used for development purposes, run `python server.py`.
app.run(debug=True)