TeamspeakStats/tsstats/__main__.py

106 lines
3.0 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
import argparse
import json
import logging
from os.path import abspath, exists
from tsstats import config
from tsstats.exceptions import InvalidConfiguration
from tsstats.log import parse_logs
from tsstats.template import render_template
logger = logging.getLogger('tsstats')
2016-05-11 14:21:09 -04:00
def cli():
parser = argparse.ArgumentParser(
description='A simple Teamspeak stats-generator, based on server-logs',
argument_default=argparse.SUPPRESS
2016-05-11 14:21:09 -04:00
)
parser.add_argument(
2016-05-21 16:02:27 -04:00
'-c', '--config',
type=str, help='path to config'
2016-05-11 14:21:09 -04:00
)
parser.add_argument(
'--idmap', type=str, help='path to id_map'
2016-05-11 14:21:09 -04:00
)
2016-05-21 15:35:42 -04:00
parser.add_argument(
2016-05-21 16:02:27 -04:00
'-l', '--log',
type=str, help='path to your logfile(s)'
2016-05-21 15:35:42 -04:00
)
parser.add_argument(
2016-05-21 16:02:27 -04:00
'-o', '--output',
type=str, help='path to the output-file'
2016-05-21 15:35:42 -04:00
)
2016-05-11 14:21:09 -04:00
parser.add_argument(
2016-05-21 16:02:27 -04:00
'-d', '--debug',
help='debug mode', action='store_true'
2016-05-11 14:21:09 -04:00
)
2016-06-23 15:42:03 -04:00
parser.add_argument(
'-nod', '--noonlinedc',
help='don\'t add connect until now to onlinetime',
action='store_false', dest='onlinedc'
2016-06-23 15:42:03 -04:00
)
2016-08-10 16:44:48 -04:00
parser.add_argument(
'-t', '--template',
type=str, help='path to custom template'
)
parser.add_argument(
'-dtf', '--datetimeformat',
type=str, help='format of date/time-values (datetime.strftime)'
)
parser.add_argument(
'-otth', '--onlinetimethreshold',
type=int, help='threshold for displaying onlinetime (in seconds)'
)
options = parser.parse_args()
if 'config' in options:
configuration = config.load(options.config)
else:
configuration = config.load()
for option, value in vars(options).items():
configuration.set('General', option, str(value))
main(configuration)
2016-05-11 14:21:09 -04:00
def main(configuration):
if configuration.getboolean('General', 'debug'):
logger.setLevel(logging.DEBUG)
idmap = configuration.get('General', 'idmap')
if idmap:
idmap = abspath(idmap)
if not exists(idmap):
logger.fatal('identmap not found (%s)', idmap)
# read id_map
identmap = json.load(open(idmap))
else:
identmap = None
log = configuration.get('General', 'log')
if not log:
raise InvalidConfiguration('log or output missing')
sid_clients = parse_logs(
log, ident_map=identmap,
online_dc=configuration.getboolean('General', 'onlinedc')
)
for sid, clients in sid_clients:
if sid and len(sid_clients) > 1:
ext = '.{}'.format(sid)
else:
ext = ''
render_template(
clients,
output=abspath(configuration.get('General', 'output') + ext),
2016-11-18 15:46:38 -05:00
template=configuration.get('General', 'template'),
datetime_fmt=configuration.get('General', 'datetimeformat'),
onlinetime_threshold=int(configuration.get(
'General', 'onlinetimethreshold'))
)
if __name__ == '__main__':
2016-05-11 14:21:09 -04:00
cli()