1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-21 04:30:30 -05:00

clean up log reader/make it output more useful message if things go wrong

add unflag as a penalty
show bans/tempbans even after they've expired on penalty list
continue making alias links great again
This commit is contained in:
RaidMax
2019-04-05 13:34:03 -05:00
parent 11dc020d7c
commit e3aa62334a
15 changed files with 226 additions and 152 deletions

View File

@ -6,14 +6,10 @@ class LogResource(Resource):
def get(self, path):
path = urlsafe_b64decode(path).decode('utf-8')
log_info = reader.read_file(path)
if log_info is False:
print('could not read log file ' + path)
empty_read = (log_info == False) or (log_info == True)
print(log_info)
return {
'success' : log_info is not False,
'length': -1 if empty_read else len(log_info),
'length': 0 if log_info is False else len(log_info),
'data': log_info
}