-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·136 lines (103 loc) · 3.1 KB
/
main.py
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
import yaml
import bcrypt
import json
import requests
import os
import sys
from waitress import serve
from flask import Flask, render_template, request, Response
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) # MUST COME BEFORE RELATIVE IMPORTS
from odds import OddsAPI
from emailer import Emailer
from data import MatchData
app = Flask(__name__)
app.config['FLASK_APP'] = "main.py"
md = MatchData()
em = Emailer()
oa = OddsAPI()
with open("config.yml", "r") as ymlfile:
cfg = yaml.safe_load(ymlfile)
recaptcha_secret = cfg['recaptcha']['secret']
@app.route('/')
def root():
return render_template('index.html')
@app.route('/refreshdata', methods=['POST'])
def refresh_data():
# Validate password
if bcrypt.checkpw(request.form['input'].encode('utf-8'), '$2y$12$vrSkWR3b6jFHeQJP1bjQPeMrqE4MquwSk84DQSJzY9JQXXmOYtEgy'.encode('utf-8')): # givemethedata
try:
md.fetch_data()
except Exception as e:
print(e)
resp = Response()
resp.status_code = 500
return resp
resp = Response()
resp.status_code = 200
return resp
else:
resp = Response()
resp.status_code = 401
return resp
@app.route('/rounds/year/<year>')
def get_rounds(year):
dump = md.get_rounds(year)
resp = Response(dump)
resp.content_type = "application/json"
resp.status_code = 200
return resp
@app.route('/matches/year/<year>/round/<round>')
def get_matches(year, round):
dump = md.get_matches(year, round)
resp = Response(dump)
resp.content_type = "application/json"
resp.status_code = 200
return resp
@app.route('/sendemail', methods=['POST'])
def send_email():
if verify_reCAPTCHA(request.form['g-recaptcha-response']):
try:
em.send_email(request.form["toEmail"], request.form["ccEmail"], request.form["text"],
request.form["html"], request.form["name"], request.form["round"])
except Exception as e:
print(e)
resp = Response()
resp.status_code = 500
return resp
resp = Response()
resp.status_code = 200
return resp
else:
resp = Response()
resp.status_code = 401
return resp
@app.route('/odds/type/<type>')
def get_odds(type):
try:
dump = oa.get_odds(type)
except Exception as e:
print(e)
resp = Response()
resp.status_code = 500
return resp
resp = Response(dump)
resp.content_type = "application/json"
resp.status_code = 200
return resp
def verify_reCAPTCHA(response):
url = 'https://www.google.com/recaptcha/api/siteverify'
data = {
'secret': recaptcha_secret,
'response': response
}
r = requests.post(url, data=data)
data = json.loads(r.text)
return data['success']
if __name__ == '__main__':
if len(sys.argv) > 1:
if sys.argv[1] == "live":
serve(app)
else:
app.run(host='127.0.0.1', port=8080, debug=True)
else:
app.run(host='127.0.0.1', port=8080, debug=True)