2011-09-06 00:45:53 +00:00
|
|
|
# Copyright 2010-2011 Florent Le Coz <louiz@louiz.org>
|
2010-01-10 20:14:17 +00:00
|
|
|
#
|
|
|
|
# This file is part of Poezio.
|
|
|
|
#
|
|
|
|
# Poezio is free software: you can redistribute it and/or modify
|
2011-09-11 15:10:05 +00:00
|
|
|
# it under the terms of the zlib license. See the COPYING file.
|
2010-01-10 20:14:17 +00:00
|
|
|
|
2010-03-18 19:43:44 +00:00
|
|
|
from os import environ, makedirs
|
2010-08-22 14:57:47 +00:00
|
|
|
import os
|
2010-01-26 17:10:37 +00:00
|
|
|
from datetime import datetime
|
2010-01-26 19:33:40 +00:00
|
|
|
from config import config
|
2011-05-27 21:36:52 +00:00
|
|
|
from xhtml import clean_text
|
2010-03-18 19:43:44 +00:00
|
|
|
|
2011-01-02 16:58:40 +00:00
|
|
|
import logging
|
|
|
|
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
DATA_HOME = config.get('log_dir', '') or os.path.join(environ.get('XDG_DATA_HOME') or os.path.join(environ.get('HOME'), '.local', 'share'), 'poezio')
|
2011-11-16 08:46:09 +00:00
|
|
|
DATA_HOME = os.path.expanduser(DATA_HOME)
|
2010-03-18 19:43:44 +00:00
|
|
|
|
2010-01-10 20:14:17 +00:00
|
|
|
class Logger(object):
|
|
|
|
"""
|
|
|
|
Appends things to files. Error/information/warning logs
|
|
|
|
and also log the conversations to logfiles
|
|
|
|
"""
|
2011-01-02 16:58:40 +00:00
|
|
|
def __init__(self):
|
2010-01-26 19:33:40 +00:00
|
|
|
self.logfile = config.get('logfile', 'logs')
|
2011-06-18 16:31:57 +00:00
|
|
|
self.roster_logfile = None
|
2011-01-02 16:58:40 +00:00
|
|
|
# a dict of 'groupchatname': file-object (opened)
|
2011-01-12 17:34:04 +00:00
|
|
|
self.fds = dict()
|
2010-01-26 19:33:40 +00:00
|
|
|
|
2011-01-02 16:58:40 +00:00
|
|
|
def __del__(self):
|
2011-01-12 17:34:04 +00:00
|
|
|
for opened_file in self.fds.values():
|
2012-04-02 16:30:06 +00:00
|
|
|
if opened_file:
|
2013-04-05 21:57:53 +00:00
|
|
|
try:
|
|
|
|
opened_file.close()
|
|
|
|
except: # Can't close? too bad
|
|
|
|
pass
|
2012-04-02 16:30:06 +00:00
|
|
|
|
|
|
|
def reload_all(self):
|
|
|
|
"""Close and reload all the file handles (on SIGHUP)"""
|
|
|
|
for opened_file in self.fds.values():
|
|
|
|
if opened_file:
|
|
|
|
opened_file.close()
|
|
|
|
log.debug('All log file handles closed')
|
|
|
|
for room in self.fds:
|
|
|
|
self.fds[room] = self.check_and_create_log_dir(room)
|
|
|
|
log.debug('Log handle for %s re-created', room)
|
2011-01-02 16:58:40 +00:00
|
|
|
|
|
|
|
def check_and_create_log_dir(self, room):
|
2010-03-18 19:43:44 +00:00
|
|
|
"""
|
2011-01-02 16:58:40 +00:00
|
|
|
Check that the directory where we want to log the messages
|
|
|
|
exists. if not, create it
|
2010-03-18 19:43:44 +00:00
|
|
|
"""
|
2012-12-16 12:42:22 +00:00
|
|
|
if config.get_by_tabname('use_log', 'false', room) == 'false':
|
|
|
|
return
|
2011-01-02 16:58:40 +00:00
|
|
|
directory = os.path.join(DATA_HOME, 'logs')
|
2010-03-18 19:43:44 +00:00
|
|
|
try:
|
2011-01-02 16:58:40 +00:00
|
|
|
makedirs(directory)
|
2010-07-01 22:01:09 +00:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
try:
|
2011-01-02 16:58:40 +00:00
|
|
|
fd = open(os.path.join(directory, room), 'a')
|
2011-01-12 17:34:04 +00:00
|
|
|
self.fds[room] = fd
|
2011-01-02 16:58:40 +00:00
|
|
|
return fd
|
2010-07-01 22:01:09 +00:00
|
|
|
except IOError:
|
2012-12-16 12:42:22 +00:00
|
|
|
return
|
2011-01-02 16:58:40 +00:00
|
|
|
|
2012-12-15 21:57:57 +00:00
|
|
|
def get_logs(self, jid, nb=10):
|
2012-11-11 15:01:53 +00:00
|
|
|
"""
|
|
|
|
Get the log history for the given jid
|
|
|
|
"""
|
2012-12-16 12:42:22 +00:00
|
|
|
if config.get_by_tabname('load_log', 10, jid) <= 0:
|
2012-12-15 22:23:12 +00:00
|
|
|
return
|
|
|
|
|
2012-11-11 15:01:53 +00:00
|
|
|
if nb <= 0:
|
2012-12-15 22:23:12 +00:00
|
|
|
return
|
2012-11-11 15:01:53 +00:00
|
|
|
directory = os.path.join(DATA_HOME, 'logs')
|
|
|
|
try:
|
|
|
|
fd = open(os.path.join(directory, jid), 'r')
|
|
|
|
except:
|
2012-12-15 22:23:12 +00:00
|
|
|
return
|
|
|
|
if not fd:
|
|
|
|
return
|
2012-11-11 15:01:53 +00:00
|
|
|
|
2012-12-15 22:23:12 +00:00
|
|
|
pos = fd.seek(0, 2)
|
2012-12-15 22:34:28 +00:00
|
|
|
reads = fd.readlines()
|
|
|
|
while len(reads) < nb + 1:
|
2012-12-16 12:42:22 +00:00
|
|
|
if pos == 0:
|
|
|
|
break
|
2012-12-15 22:23:12 +00:00
|
|
|
pos -= 100
|
|
|
|
if pos < 0:
|
2012-12-16 12:42:22 +00:00
|
|
|
pos = 0
|
2012-12-15 22:23:12 +00:00
|
|
|
fd.seek(pos)
|
2012-12-15 22:34:28 +00:00
|
|
|
try:
|
|
|
|
reads = fd.readlines()
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
pass
|
2012-11-11 15:01:53 +00:00
|
|
|
fd.close()
|
2012-12-15 22:34:28 +00:00
|
|
|
logs = reads[-nb:]
|
|
|
|
return logs
|
2012-11-11 15:01:53 +00:00
|
|
|
|
2013-03-31 14:33:10 +00:00
|
|
|
def log_message(self, jid, nick, msg, date=None):
|
2011-01-02 16:58:40 +00:00
|
|
|
"""
|
2011-01-12 17:34:04 +00:00
|
|
|
log the message in the appropriate jid's file
|
2011-01-02 16:58:40 +00:00
|
|
|
"""
|
2013-04-06 09:45:34 +00:00
|
|
|
if config.get_by_tabname('use_log', 'false', jid) != 'true':
|
|
|
|
return True
|
2011-01-12 17:34:04 +00:00
|
|
|
if jid in self.fds.keys():
|
|
|
|
fd = self.fds[jid]
|
2011-01-02 16:58:40 +00:00
|
|
|
else:
|
2011-01-12 17:34:04 +00:00
|
|
|
fd = self.check_and_create_log_dir(jid)
|
2011-01-02 16:58:40 +00:00
|
|
|
if not fd:
|
2013-04-05 21:57:53 +00:00
|
|
|
return True
|
2011-02-21 20:00:23 +00:00
|
|
|
try:
|
2011-05-27 21:36:52 +00:00
|
|
|
msg = clean_text(msg)
|
2013-03-31 14:33:10 +00:00
|
|
|
if date is None:
|
|
|
|
str_time = datetime.now().strftime('%d-%m-%y [%H:%M:%S] ')
|
|
|
|
else:
|
|
|
|
str_time = date.strftime('%d-%m-%y [%H:%M:%S] ')
|
2011-02-21 20:00:23 +00:00
|
|
|
if nick:
|
2013-03-31 14:33:10 +00:00
|
|
|
fd.write(''.join((str_time, nick, ': ', msg, '\n')))
|
2011-02-21 20:00:23 +00:00
|
|
|
else:
|
2013-03-31 14:33:10 +00:00
|
|
|
fd.write(''.join((str_time, '* ', msg, '\n')))
|
2013-04-05 21:57:53 +00:00
|
|
|
except:
|
|
|
|
return False
|
2010-06-13 02:19:01 +00:00
|
|
|
else:
|
2013-04-05 21:57:53 +00:00
|
|
|
try:
|
|
|
|
fd.flush() # TODO do something better here?
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
return True
|
2010-03-18 19:43:44 +00:00
|
|
|
|
2011-06-18 16:31:57 +00:00
|
|
|
def log_roster_change(self, jid, message):
|
2013-04-06 09:45:34 +00:00
|
|
|
"""
|
|
|
|
Log a roster change
|
|
|
|
"""
|
|
|
|
if config.get_by_tabname('use_log', 'false', jid) != 'true':
|
|
|
|
return True
|
2011-06-18 16:31:57 +00:00
|
|
|
if not self.roster_logfile:
|
|
|
|
try:
|
|
|
|
self.roster_logfile = open(os.path.join(DATA_HOME, 'logs', 'roster.log'), 'a')
|
|
|
|
except IOError:
|
2013-04-05 21:57:53 +00:00
|
|
|
return False
|
|
|
|
try:
|
|
|
|
self.roster_logfile.write('%s %s %s\n' % (datetime.now().strftime('%d-%m-%y [%H:%M:%S]'), jid, message))
|
|
|
|
self.roster_logfile.flush()
|
|
|
|
except:
|
|
|
|
return False
|
|
|
|
return True
|
2011-06-18 16:31:57 +00:00
|
|
|
|
2010-01-26 17:10:37 +00:00
|
|
|
logger = Logger()
|