forked from freeciv/freeciv-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pbem.py
281 lines (239 loc) · 9.29 KB
/
pbem.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
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
#!/usr/bin/env python3
'''**********************************************************************
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/>.
***********************************************************************'''
import os, os.path
import sys
import time
import lzma
import datetime
import mysql.connector
from mailsender import MailSender
from mailstatus import *
import shutil
import random
import configparser
import json
import traceback
game_expire_time = 60 * 60 * 24 * 7; # 7 days until games are expired.
game_remind_time = 60 * 60 * 24 * 6; # 6 days until games are sent a reminder.
testmode = False;
settings = configparser.ConfigParser()
settings.read("settings.ini")
mysql_user=settings.get("Config", "mysql_user");
mysql_database=settings.get("Config", "mysql_database");
mysql_password=settings.get("Config", "mysql_password");
savedir = settings.get("Config", "savegame_directory");
rankdir = settings.get("Config", "ranklog_directory");
host = settings.get("Config", "host");
# load game status from file.
loaded_games = {};
try:
if (os.path.isfile('pbem-games.json')):
with open('pbem-games.json') as data_file:
loaded_games = json.load(data_file)
except Exception as e:
print(e);
mail = MailSender();
status = MailStatus()
status.savegames_read = 0;
status.emails_sent = 0;
status.reminders_sent = 0;
status.ranklog_emails_sent = 0;
status.invitation_emails_sent = 0;
status.retired = 0;
status.games = loaded_games;
status.expiry = game_expire_time;
# send reminder where game is about to expire
def remind_old_games():
for key, value in status.games.items():
if (value['reminder_sent'] == False and (value['time_int'] + game_remind_time) < (time.time())):
status.games[key]['reminder_sent'] = True;
status.reminders_sent += 1;
mail.send_game_reminder(status.games[key]['active_player_email'], status.games[key]['url']);
# expire old games
def cleanup_expired_games():
for key, game in status.games.copy().items():
if ((game['time_int'] + game_expire_time) < (time.time())):
looser = game['players'][game['phase']];
winner = game['players'][(game['phase']+1) % len(game['players'])];
print("Expiring game: " + key + " winner:" + winner + ", looser:" + looser);
# at least 3 turns must be completed before it will effect ranking.
if (game['turn'] > 4 and len(game['players']) <= 2): save_game_result(winner, winner, looser);
del status.games[key];
status.retired += 1;
# parse Freeciv savegame and collect information to include in e-mail.
def handle_savegame(root, file):
time.sleep(1);
filename = os.path.join(root,file)
print("Handling savegame: " + filename);
txt = None;
with lzma.open(filename, mode="rt") as f:
txt = f.read().split("\n");
status.savegames_read += 1;
new_filename = "pbem_processed_" + str(random.randint(0,10000000000)) + ".xz";
f.close();
if not testmode: shutil.move(filename, os.path.join(root,new_filename))
print("New filename will be: " + new_filename);
players = list_players(txt);
phase = find_phase(txt);
turn = find_turn(txt);
game_id = find_game_id(txt);
state = find_state(txt);
print("game_id=" + str(game_id));
print("phase=" + str(phase));
print("turn=" + str(turn));
print("state=" + str(state));
print("players=" + str(players));
if (len(players) <= phase):
print("skipping savegame, game is over.");
return;
active_player = players[phase];
print("active_player=" + active_player);
active_email = find_email_address(active_player);
game_url = "https://" + host + "/webclient/?action=pbem&type=pbem&savegame=" + new_filename.replace(".xz", "");
if (active_email != None):
status.games[game_id] = {'turn' : turn, 'phase': phase, 'players' : players, 'time_str' : time.ctime(),
'time_int' : int(time.time()), 'state' : state, 'url' : game_url,
'active_player_email' : active_email, 'reminder_sent' : False};
print("active email=" + active_email);
mail.send_email_next_turn(active_player, players, active_email, game_url, turn);
status.emails_sent += 1;
#store games status in file
with open('pbem-games.json', 'w') as outfile:
json.dump(status.games, outfile);
#Returns the phase (active player number), eg 1
def find_phase(lines):
for l in lines:
if ("phase=" in l): return int(l[6:]);
return None;
#Returns the current turn
def find_turn(lines):
for l in lines:
if ("turn=" == l[0:5]): return int(l[5:]);
return None;
#Returns the current server state
def find_state(lines):
for l in lines:
if ("server_state=" == l[0:13]): return l[18:].replace("\"","");
return None;
#Returns the game id
def find_game_id(lines):
for l in lines:
if ("id=" == l[0:3]): return l[4:];
return None;
# Returns a list of active players
def list_players(lines):
players = [];
for l in lines:
if (l[:4] == "name"): players.append(l[5:].replace("\"", ""));
return players;
# Returns the emailaddress of the given username
def find_email_address(user_to_find):
result = None;
cursor = None;
cnx = None;
try:
cnx = mysql.connector.connect(user=mysql_user, database=mysql_database, password=mysql_password)
cursor = cnx.cursor()
query = ("select email from auth where lower(username)=lower(%(usr)s) and activated='1' limit 1")
cursor.execute(query, {'usr' : user_to_find})
for email in cursor:
result = email[0];
finally:
cursor.close()
cnx.close()
return result;
# store game result in database table 'game_results'
def save_game_result(winner, playerOne, playerTwo):
print("saving game result: " + winner + "," + playerOne + "," + playerTwo);
if (playerOne == playerTwo):
print("Ignoring game result.");
return;
cursor = None;
cnx = None;
try:
cnx = mysql.connector.connect(user=mysql_user, database=mysql_database, password=mysql_password)
cursor = cnx.cursor()
# check if game result has already been stored, for example expiring game when ranklog already read in previously.
query = ("select count(*) as count from game_results where playerOne=%(one)s and playerTwo=%(two)s and endDate>= NOW() - INTERVAL 7 DAY")
cursor.execute(query, {'one' : playerOne, 'two' : playerTwo});
for count in cursor:
if (count[0] != 0):
print("game result already exists.");
return;
# insert new game result
query = ("insert ignore into game_results (playerOne, playerTwo, winner, endDate) values (%(playerOne)s, %(playerTwo)s, %(winner)s, NOW())");
cursor.execute(query, {'playerOne' : playerOne, 'playerTwo' : playerTwo, 'winner' : winner})
cnx.commit()
finally:
cursor.close()
cnx.close()
return;
def process_savegames():
for root, subFolders, files in os.walk(savedir):
for file in files:
if (file.endswith(".xz") and file.startswith("pbem") and not file.startswith("pbem_processed")):
handle_savegame(root, file);
def handle_ranklog(root, file):
filename = os.path.join(root,file)
print("Handling ranklog: " + filename);
openfile = open(filename, 'r')
lines = "";
try:
lines = openfile.readlines()
finally:
openfile.close();
winner = None;
winner_score = None;
winner_email = None;
losers = None;
losers_score = None;
losers_email = None;
turns = None;
for line in lines:
if (len(line) > 9 and line[:7]=='winners' and ',' in line):
winner = line[9:].split(",")[1]; #FIXME: this is not always correct, if there are multiple winners.
winner_score = line[9:].split(",")[3];
winner_email = find_email_address(winner);
if (len(line) > 8 and line[:6]=='losers' and ',' in line):
losers = line[8:].split(",")[1];
losers_score = line[8:].split(",")[3];
losers_email = find_email_address(losers);
if (losers_email != None and winner_email != None):
mail.send_game_result_mail(winner, winner_score, winner_email, losers, losers_score, losers_email);
if (winner != None and len(winner) > 3 and losers != None and len(losers) > 3):
save_game_result(winner, losers, winner);
status.ranklog_emails_sent += 1;
else:
print("error: game with winner without email in " + file);
os.remove(filename);
def process_ranklogs():
for root, subFolders, files in os.walk(rankdir):
for file in files:
if (file.endswith(".log")):
handle_ranklog(root, file);
if __name__ == '__main__':
print("Freeciv-PBEM processing savegames");
status.start();
while (1):
try:
time.sleep(5);
process_savegames();
process_ranklogs();
remind_old_games();
cleanup_expired_games();
time.sleep(60);
except Exception as e:
print(e);
traceback.print_exc();