pesterchum/logviewer.py

297 lines
13 KiB
Python
Raw Normal View History

import os
import codecs
import re
import ostools
from time import strftime, strptime
2021-03-23 17:36:43 -04:00
from PyQt5 import QtCore, QtGui, QtWidgets
from generic import RightClickList, RightClickTree
from parsetools import convertTags
from convo import PesterText
_datadir = ostools.getDataDir()
2021-03-23 17:36:43 -04:00
class PesterLogSearchInput(QtWidgets.QLineEdit):
2011-05-12 06:47:22 -04:00
def __init__(self, theme, parent=None):
2021-03-23 17:36:43 -04:00
QtWidgets.QLineEdit.__init__(self, parent)
2021-03-24 16:03:49 -04:00
self.setStyleSheet(theme["convo/input/style"] + "; margin-right:0px;")
2011-05-12 06:47:22 -04:00
def keyPressEvent(self, event):
2021-03-23 17:36:43 -04:00
QtWidgets.QLineEdit.keyPressEvent(self, event)
2011-05-13 15:24:35 -04:00
if hasattr(self.parent(), 'textArea'):
if event.key() == QtCore.Qt.Key_Return:
self.parent().logSearch(self.text())
if self.parent().textArea.find(self.text()):
self.parent().textArea.ensureCursorVisible()
else:
self.parent().logSearch(self.text())
2011-05-12 06:47:22 -04:00
2011-05-12 07:54:19 -04:00
class PesterLogHighlighter(QtGui.QSyntaxHighlighter):
def __init__(self, parent):
QtGui.QSyntaxHighlighter.__init__(self, parent)
self.searchTerm = ""
self.hilightstyle = QtGui.QTextCharFormat()
self.hilightstyle.setBackground(QtGui.QBrush(QtCore.Qt.green))
self.hilightstyle.setForeground(QtGui.QBrush(QtCore.Qt.black))
def highlightBlock(self, text):
for i in range(0, len(text)-(len(self.searchTerm)-1)):
2021-03-23 17:36:43 -04:00
if str(text[i:i+len(self.searchTerm)]).lower() == str(self.searchTerm).lower():
2011-05-12 07:54:19 -04:00
self.setFormat(i, len(self.searchTerm), self.hilightstyle)
2021-03-23 17:36:43 -04:00
class PesterLogUserSelect(QtWidgets.QDialog):
def __init__(self, config, theme, parent):
2021-03-23 17:36:43 -04:00
QtWidgets.QDialog.__init__(self, parent)
self.setModal(False)
self.config = config
self.theme = theme
self.parent = parent
self.handle = parent.profile().handle
self.logpath = _datadir+"logs"
self.setStyleSheet(self.theme["main/defaultwindow/style"])
self.setWindowTitle("Pesterlogs")
2021-03-23 17:36:43 -04:00
instructions = QtWidgets.QLabel("Pick a memo or chumhandle:")
if os.path.exists("%s/%s" % (self.logpath, self.handle)):
chumMemoList = os.listdir("%s/%s/" % (self.logpath, self.handle))
else:
chumMemoList = []
chumslist = config.chums()
for c in chumslist:
if not c in chumMemoList:
chumMemoList.append(c)
chumMemoList.sort()
self.chumsBox = RightClickList(self)
self.chumsBox.setStyleSheet(self.theme["main/chums/style"])
2021-03-23 17:36:43 -04:00
self.chumsBox.optionsMenu = QtWidgets.QMenu(self)
for (i, t) in enumerate(chumMemoList):
2021-03-23 17:36:43 -04:00
item = QtWidgets.QListWidgetItem(t)
2021-03-24 16:01:17 -04:00
item.setForeground(QtGui.QBrush(QtGui.QColor(self.theme["main/chums/userlistcolor"])))
self.chumsBox.addItem(item)
2011-05-12 06:47:22 -04:00
self.search = PesterLogSearchInput(theme, self)
self.search.setFocus()
2021-03-23 17:36:43 -04:00
self.cancel = QtWidgets.QPushButton("CANCEL", self)
self.cancel.clicked.connect(self.reject)
self.ok = QtWidgets.QPushButton("OK", self)
self.ok.setDefault(True)
2021-03-23 17:36:43 -04:00
self.ok.clicked.connect(self.viewActivatedLog)
layout_ok = QtWidgets.QHBoxLayout()
layout_ok.addWidget(self.cancel)
layout_ok.addWidget(self.ok)
2021-03-23 17:36:43 -04:00
self.directory = QtWidgets.QPushButton("LOG DIRECTORY", self)
self.directory.clicked.connect(self.openDir)
2021-03-23 17:36:43 -04:00
layout_0 = QtWidgets.QVBoxLayout()
layout_0.addWidget(instructions)
layout_0.addWidget(self.chumsBox)
2011-05-12 06:47:22 -04:00
layout_0.addWidget(self.search)
layout_0.addLayout(layout_ok)
2011-07-23 17:53:05 -04:00
layout_0.addWidget(self.directory)
self.setLayout(layout_0)
def selectedchum(self):
return self.chumsBox.currentItem()
2011-05-12 06:47:22 -04:00
def logSearch(self, search):
found = self.chumsBox.findItems(search, QtCore.Qt.MatchStartsWith)
if len(found) > 0 and len(found) < self.chumsBox.count():
self.chumsBox.setCurrentItem(found[0])
@QtCore.pyqtSlot()
def viewActivatedLog(self):
selectedchum = self.selectedchum().text()
if not hasattr(self, 'pesterlogviewer'):
self.pesterlogviewer = None
if not self.pesterlogviewer:
self.pesterlogviewer = PesterLogViewer(selectedchum, self.config, self.theme, self.parent)
2021-03-23 17:36:43 -04:00
self.pesterlogviewer.rejected.connect(self.closeActiveLog)
self.pesterlogviewer.show()
self.pesterlogviewer.raise_()
self.pesterlogviewer.activateWindow()
self.accept()
@QtCore.pyqtSlot()
def closeActiveLog(self):
self.pesterlogviewer.close()
self.pesterlogviewer = None
2011-07-23 17:53:05 -04:00
@QtCore.pyqtSlot()
def openDir(self):
2011-11-29 00:15:19 -05:00
QtGui.QDesktopServices.openUrl(QtCore.QUrl("file:///" + os.path.join(_datadir, "logs"), QtCore.QUrl.TolerantMode))
2011-07-23 17:53:05 -04:00
2021-03-23 17:36:43 -04:00
class PesterLogViewer(QtWidgets.QDialog):
def __init__(self, chum, config, theme, parent):
2021-03-23 17:36:43 -04:00
QtWidgets.QDialog.__init__(self, parent)
self.setModal(False)
self.config = config
self.theme = theme
self.parent = parent
self.mainwindow = parent
global _datadir
self.handle = parent.profile().handle
self.chum = chum
self.convos = {}
self.logpath = _datadir+"logs"
self.setStyleSheet(self.theme["main/defaultwindow/style"])
self.setWindowTitle("Pesterlogs with " + self.chum)
self.format = "bbcode"
if os.path.exists("%s/%s/%s/%s" % (self.logpath, self.handle, chum, self.format)):
self.logList = os.listdir("%s/%s/%s/%s/" % (self.logpath, self.handle, self.chum, self.format))
else:
self.logList = []
if not os.path.exists("%s/%s/%s/%s" % (self.logpath, self.handle, chum, self.format)) or len(self.logList) == 0:
2021-03-23 17:36:43 -04:00
instructions = QtWidgets.QLabel("No Pesterlogs were found")
2021-03-23 17:36:43 -04:00
self.ok = QtWidgets.QPushButton("CLOSE", self)
self.ok.setDefault(True)
2021-03-23 17:36:43 -04:00
self.ok.clicked.connect(self.reject)
layout_ok = QtWidgets.QHBoxLayout()
layout_ok.addWidget(self.ok)
2021-03-23 17:36:43 -04:00
layout_0 = QtWidgets.QVBoxLayout()
layout_0.addWidget(instructions)
layout_0.addLayout(layout_ok)
self.setLayout(layout_0)
else:
2021-03-23 17:36:43 -04:00
self.instructions = QtWidgets.QLabel("Pesterlog with " +self.chum+ " on")
self.textArea = PesterLogText(theme, self.parent)
self.textArea.setReadOnly(True)
self.textArea.setFixedWidth(600)
2021-03-23 17:36:43 -04:00
if "convo/scrollbar" in theme:
self.textArea.setStyleSheet("QTextEdit { width:500px; %s } QScrollBar:vertical { %s } QScrollBar::handle:vertical { %s } QScrollBar::add-line:vertical { %s } QScrollBar::sub-line:vertical { %s } QScrollBar:up-arrow:vertical { %s } QScrollBar:down-arrow:vertical { %s }" % (theme["convo/textarea/style"], theme["convo/scrollbar/style"], theme["convo/scrollbar/handle"], theme["convo/scrollbar/downarrow"], theme["convo/scrollbar/uparrow"], theme["convo/scrollbar/uarrowstyle"], theme["convo/scrollbar/darrowstyle"] ))
else:
self.textArea.setStyleSheet("QTextEdit { width:500px; %s }" % (theme["convo/textarea/style"]))
self.logList.sort()
self.logList.reverse()
self.tree = RightClickTree()
2021-03-23 17:36:43 -04:00
self.tree.optionsMenu = QtWidgets.QMenu(self)
2011-03-16 00:33:17 -04:00
self.tree.setFixedSize(260, 300)
self.tree.header().hide()
2021-03-23 17:36:43 -04:00
if "convo/scrollbar" in theme:
2011-03-16 00:33:17 -04:00
self.tree.setStyleSheet("QTreeWidget { %s } QScrollBar:vertical { %s } QScrollBar::handle:vertical { %s } QScrollBar::add-line:vertical { %s } QScrollBar::sub-line:vertical { %s } QScrollBar:up-arrow:vertical { %s } QScrollBar:down-arrow:vertical { %s }" % (theme["convo/textarea/style"], theme["convo/scrollbar/style"], theme["convo/scrollbar/handle"], theme["convo/scrollbar/downarrow"], theme["convo/scrollbar/uparrow"], theme["convo/scrollbar/uarrowstyle"], theme["convo/scrollbar/darrowstyle"] ))
else:
self.tree.setStyleSheet("%s" % (theme["convo/textarea/style"]))
2021-03-23 17:36:43 -04:00
self.tree.itemSelectionChanged.connect(self.loadSelectedLog)
2011-03-16 00:33:17 -04:00
self.tree.setSortingEnabled(False)
2011-03-16 00:33:17 -04:00
child_1 = None
last = ["",""]
for (i,l) in enumerate(self.logList):
my = self.fileToMonthYear(l)
if my[0] != last[0]:
2021-03-23 17:36:43 -04:00
child_1 = QtWidgets.QTreeWidgetItem(["%s %s" % (my[0], my[1])])
2011-03-16 00:33:17 -04:00
self.tree.addTopLevelItem(child_1)
if i == 0:
child_1.setExpanded(True)
2021-03-23 17:36:43 -04:00
child_1.addChild(QtWidgets.QTreeWidgetItem([self.fileToTime(l)]))
2011-03-16 00:33:17 -04:00
last = self.fileToMonthYear(l)
2011-05-12 07:54:19 -04:00
self.hilight = PesterLogHighlighter(self.textArea)
if len(self.logList) > 0: self.loadLog(self.logList[0])
2011-05-12 07:54:19 -04:00
self.search = PesterLogSearchInput(theme, self)
self.search.setFocus()
2021-03-23 17:36:43 -04:00
self.find = QtWidgets.QPushButton("Find", self)
2011-05-13 15:24:35 -04:00
font = self.find.font()
font.setPointSize(8)
self.find.setFont(font)
self.find.setDefault(True)
self.find.setFixedSize(40, 20)
2021-03-23 17:36:43 -04:00
layout_search = QtWidgets.QHBoxLayout()
2011-05-13 15:24:35 -04:00
layout_search.addWidget(self.search)
layout_search.addWidget(self.find)
2011-05-12 07:54:19 -04:00
2021-03-23 17:36:43 -04:00
self.ok = QtWidgets.QPushButton("CLOSE", self)
self.ok.setFixedWidth(80)
2021-03-23 17:36:43 -04:00
self.ok.clicked.connect(self.reject)
layout_ok = QtWidgets.QHBoxLayout()
layout_ok.addWidget(self.ok)
layout_ok.setAlignment(self.ok, QtCore.Qt.AlignRight)
2021-03-23 17:36:43 -04:00
layout_logs = QtWidgets.QHBoxLayout()
2011-03-16 00:33:17 -04:00
layout_logs.addWidget(self.tree)
2021-03-23 17:36:43 -04:00
layout_right = QtWidgets.QVBoxLayout()
2011-05-12 07:54:19 -04:00
layout_right.addWidget(self.textArea)
2011-05-13 15:24:35 -04:00
layout_right.addLayout(layout_search)
2011-05-12 07:54:19 -04:00
layout_logs.addLayout(layout_right)
2021-03-23 17:36:43 -04:00
layout_0 = QtWidgets.QVBoxLayout()
layout_0.addWidget(self.instructions)
layout_0.addLayout(layout_logs)
layout_0.addLayout(layout_ok)
self.setLayout(layout_0)
@QtCore.pyqtSlot()
def loadSelectedLog(self):
2011-03-16 00:33:17 -04:00
if len(self.tree.currentItem().text(0)) > len("September 2011"):
self.loadLog(self.timeToFile(self.tree.currentItem().text(0)))
def loadLog(self, fname):
fp = codecs.open("%s/%s/%s/%s/%s" % (self.logpath, self.handle, self.chum, self.format, fname), encoding='utf-8', mode='r')
self.textArea.clear()
for line in fp:
cline = line.replace("\r\n", "").replace("[/color]","</c>").replace("[url]","").replace("[/url]","")
cline = re.sub("\[color=(#.{6})]", r"<c=\1>", cline)
self.textArea.append(convertTags(cline))
textCur = self.textArea.textCursor()
textCur.movePosition(1)
self.textArea.setTextCursor(textCur)
2021-03-23 17:36:43 -04:00
self.instructions.setText("Pesterlog with " +self.chum+ " on " + self.fileToTime(str(fname)))
2011-05-12 07:54:19 -04:00
def logSearch(self, search):
self.hilight.searchTerm = search
self.hilight.rehighlight()
2011-03-16 00:33:17 -04:00
def fileToMonthYear(self, fname):
time = strptime(fname[(fname.index(".")+1):fname.index(".txt")], "%Y-%m-%d.%H.%M")
return [strftime("%B", time), strftime("%Y", time)]
def fileToTime(self, fname):
timestr = fname[(fname.index(".")+1):fname.index(".txt")]
return strftime("%a %d %b %Y %H %M", strptime(timestr, "%Y-%m-%d.%H.%M"))
def timeToFile(self, time):
return self.chum + strftime(".%Y-%m-%d.%H.%M.txt", strptime(str(time), "%a %d %b %Y %H %M"))
class PesterLogText(PesterText):
def __init__(self, theme, parent=None):
PesterText.__init__(self, theme, parent)
def focusInEvent(self, event):
2021-03-23 17:36:43 -04:00
QtWidgets.QTextEdit.focusInEvent(self, event)
def mousePressEvent(self, event):
url = self.anchorAt(event.pos())
if url != "":
2011-04-14 03:43:45 -04:00
if url[0] == "#" and url != "#pesterchum":
self.parent().parent.showMemos(url[1:])
elif url[0] == "@":
2021-03-23 17:36:43 -04:00
handle = str(url[1:])
2011-04-14 03:43:45 -04:00
self.parent().parent.newConversation(handle)
else:
QtGui.QDesktopServices.openUrl(QtCore.QUrl(url, QtCore.QUrl.TolerantMode))
2021-03-23 17:36:43 -04:00
QtWidgets.QTextEdit.mousePressEvent(self, event)
def mouseMoveEvent(self, event):
2021-03-23 17:36:43 -04:00
QtWidgets.QTextEdit.mouseMoveEvent(self, event)
if self.anchorAt(event.pos()):
if self.viewport().cursor().shape != QtCore.Qt.PointingHandCursor:
2011-04-14 03:43:45 -04:00
self.viewport().setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
else:
self.viewport().setCursor(QtGui.QCursor(QtCore.Qt.IBeamCursor))
def contextMenuEvent(self, event):
textMenu = self.createStandardContextMenu()
a = textMenu.actions()
a[0].setText("Copy Plain Text")
a[0].setShortcut(self.tr("Ctrl+C"))
textMenu.exec_(event.globalPos())