2016-05-08 15:32:37 -04:00
|
|
|
import argparse
|
|
|
|
import json
|
2016-05-10 16:50:34 -04:00
|
|
|
import logging
|
2016-05-08 15:32:37 -04:00
|
|
|
from os.path import abspath, exists
|
|
|
|
|
|
|
|
from tsstats.config import parse_config
|
2016-05-21 16:20:15 -04:00
|
|
|
from tsstats.exceptions import InvalidConfig
|
2016-05-08 15:32:37 -04:00
|
|
|
from tsstats.log import parse_logs
|
|
|
|
from tsstats.template import render_template
|
|
|
|
|
2016-05-10 16:50:34 -04:00
|
|
|
logger = logging.getLogger('tsstats')
|
2016-05-08 15:32:37 -04:00
|
|
|
|
2016-05-10 16:50:34 -04:00
|
|
|
|
2016-05-11 14:21:09 -04:00
|
|
|
def cli():
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description='A simple Teamspeak stats-generator - based on server-logs'
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
2016-05-21 16:02:27 -04:00
|
|
|
'-c', '--config',
|
2016-05-21 16:06:32 -04:00
|
|
|
type=str, help='path to config'
|
2016-05-11 14:21:09 -04:00
|
|
|
)
|
|
|
|
parser.add_argument(
|
2016-05-21 16:06:32 -04:00
|
|
|
'--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', default='stats.html'
|
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
|
|
|
)
|
|
|
|
args = parser.parse_args()
|
2016-05-21 16:20:15 -04:00
|
|
|
main(**vars(args))
|
2016-05-11 14:21:09 -04:00
|
|
|
|
|
|
|
|
2016-05-21 16:20:15 -04:00
|
|
|
def main(config=None, idmap=None, log=None, output=None, debug=False):
|
|
|
|
if config:
|
|
|
|
config = abspath(config)
|
|
|
|
if not exists(config):
|
|
|
|
logger.fatal('config not found (%s)', config)
|
|
|
|
idmap, log, output, debug = parse_config(config)
|
2016-05-08 15:32:37 -04:00
|
|
|
|
2016-05-21 16:20:15 -04:00
|
|
|
if debug:
|
|
|
|
logger.setLevel(logging.DEBUG)
|
2016-05-08 15:32:37 -04:00
|
|
|
|
2016-05-21 16:20:15 -04:00
|
|
|
if idmap:
|
|
|
|
idmap = abspath(idmap)
|
|
|
|
if not exists(idmap):
|
|
|
|
logger.fatal('identmap not found (%s)', idmap)
|
2016-05-08 15:32:37 -04:00
|
|
|
# read id_map
|
2016-05-21 16:20:15 -04:00
|
|
|
identmap = json.load(open(idmap))
|
2016-05-08 15:32:37 -04:00
|
|
|
else:
|
2016-05-21 16:20:15 -04:00
|
|
|
identmap = None
|
|
|
|
|
|
|
|
if not log or not output:
|
|
|
|
raise InvalidConfig('log or output missing')
|
2016-05-08 15:32:37 -04:00
|
|
|
|
2016-05-21 16:20:15 -04:00
|
|
|
clients = parse_logs(log, ident_map=identmap)
|
|
|
|
render_template(clients, output=abspath(output))
|
2016-05-08 15:32:37 -04:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2016-05-11 14:21:09 -04:00
|
|
|
cli()
|