forked from Lexxie9952/fcw.org-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailstatus.py
executable file
·103 lines (83 loc) · 4.22 KB
/
mailstatus.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
'''**********************************************************************
Copyright (C) 2009-2016 The Freeciv-web project
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
***********************************************************************'''
from threading import Thread
from tornado import web, ioloop, httpserver
import json
from mailsender import MailSender
import time
STATUS_PORT = 4003
"""Serves the PBEM status page, on the url: /mailstatus """
class MailStatus(Thread):
def __init__(self):
Thread.__init__(self)
self.last_request = time.time()
self.last_invitation = None
def run(self):
io_loop = ioloop.IOLoop()
io_loop.make_current()
application = web.Application([
(r"/mailstatus", StatusHandler, dict(mailchecker=self)),
(r"/pbemstatus", PbemstatusHandler, dict(mailchecker=self)),
])
http_server = httpserver.HTTPServer(application)
http_server.listen(STATUS_PORT)
io_loop.start()
class StatusHandler(web.RequestHandler):
def initialize(self, mailchecker):
self.mailchecker = mailchecker
def ratelimit(self):
if (time.time() - self.mailchecker.last_request < 1):
self.mailchecker.last_request = time.time()
raise Exception("too frequent requests")
self.mailchecker.last_request = time.time()
def get(self):
games = []
for key, value in self.mailchecker.games.items():
games.append([value['turn'], value['phase'], value['players'], value['time_str'], int((value['time_int'] + self.mailchecker.expiry - time.time()) / (60*60))])
games_sorted = sorted(games, key=lambda tup: tup[4])
self.write(json.dumps(games_sorted))
def post(self):
req_ip = self.request.headers.get("X-Real-IP", "missing")
self.mailchecker.invitation_emails_sent += 1
invite_to = self.get_argument("to", None, True)
action=self.get_argument("action", None, True)
print("request from " + req_ip + " to " + invite_to)
self.ratelimit()
if (self.mailchecker.last_invitation == invite_to):
self.set_status(502)
print("error: invitation to same e-mail twice.")
return;
self.mailchecker.last_invitation = invite_to
if (action == "invite"):
invite_from = self.get_argument("from", None, True)
if (invite_from != None and invite_to != None and "@" in invite_to and len(invite_from) < 50 and len(invite_to) < 50):
m = MailSender()
m.send_invitation(invite_from, invite_to)
self.write("done!")
class PbemstatusHandler(web.RequestHandler):
def initialize(self, mailchecker):
self.mailchecker = mailchecker
def get(self):
self.write("<html><head><title>Mail status for Freeciv-web</title>" +
"<link href='/css/bootstrap.min.css' rel='stylesheet'>" +
"<meta http-equiv=\"refresh\" content=\"20\"><style>td { padding: 2px;}</style></head><body>");
self.write("<div class='container'><h2>Freeciv-web PBEM status</h2>" +
"<table><tr><td>PBEM E-mails sent:</td><td>" + str(self.mailchecker.emails_sent) + "</td></tr>" +
"<tr><td>Savegames read:</td><td>" + str(self.mailchecker.savegames_read) + "</td></tr>" +
"<tr><td>Ranklog emails sent:</td><td>" + str(self.mailchecker.ranklog_emails_sent) + "</td></tr>" +
"<tr><td>Invitation emails sent:</td><td>" + str(self.mailchecker.invitation_emails_sent) + "</td></tr>" +
"<tr><td>Reminder emails sent:</td><td>" + str(self.mailchecker.reminders_sent) + "</td></tr>" +
"<tr><td>Games expired:</td><td>" + str(self.mailchecker.retired) + "</td></tr>" +
"</table>")
self.write("</body></html>");