# Pesterchum :3c import sys import os import shutil import getopt try: QString = unicode except NameError: # Python 3 QString = str if os.path.dirname(sys.argv[0]): os.chdir(os.path.dirname(sys.argv[0])) print("Usage: pesterchum.py [OPTIONS]") print("Use -h/--help to see the available options.\n") # Help if ('--help' in sys.argv[1:]) or ('-h' in sys.argv[1:]): print("Possible arguments:") help_arguments = " -l, --logging\n Specify level of logging, possible values are:\n" + \ " CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET.\n" + \ " The default value is WARNING.\n" + \ " (See https://docs.python.org/3/library/logging.html)\n\n" + \ " -s, --server\n Specify server override. (legacy)\n\n" + \ " -p, --port\n Specify port override. (legacy)\n\n" + \ " --advanced\n Enable advanced.\n\n" + \ " --no-honk\n Disable honking.\n" print(help_arguments) sys.exit() import logging logging.basicConfig(filename="pesterchum.log") from datetime import * import random import re from time import time import queue#, threading try: import json except: pass try: from pnc.attrdict import AttrDict except ImportError: # Fall back on the old location - just in case #logging.warning("Couldn't load attrdict from new loc; falling back") from pnc.dep.attrdict import AttrDict try: import console except ImportError: _CONSOLE = False logging.warning("Console file not shipped; skipping.") except Exception as err: _CONSOLE = False # Consider erroring? logging.error("Failed to load console!", exc_info=err) else: _CONSOLE = True reqmissing = [] optmissing = [] try: from PyQt5 import QtCore, QtGui, QtWidgets except ImportError as e: module = str(e) if module.startswith("No module named ") or \ module.startswith("cannot import name "): reqmissing.append(module[module.rfind(" ")+1:]) else: logging.critical(e) del module # Because pygame intro msg :3c # See https://stackoverflow.com/questions/54246668/how-do-i-delete-the-hello-from-the-pygame-community-console-alert-while-using try: os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = '1' except: logging.exception("Failed to set PYGAME_HIDE_SUPPORT_PROMPT, this is a non-issue.") try: import pygame except ImportError as e: pygame = None module = str(e) if module[:16] == "No module named ": optmissing.append(module[16:]) else: logging.critical(e) del module if reqmissing: logging.critical("ERROR: The following modules are required for Pesterchum to run and are missing on your system:") for m in reqmissing: logging.critical("* "+m) # False flag for some reason. #exit() vnum = QtCore.qVersion() major = int(vnum[:vnum.find(".")]) if vnum.find(".", vnum.find(".")+1) != -1: minor = int(vnum[vnum.find(".")+1:vnum.find(".", vnum.find(".")+1)]) else: minor = int(vnum[vnum.find(".")+1:]) if not ((major > 5) or (major == 5 and minor >= 0)): logging.critical("ERROR: Pesterchum requires at least Qt version >= 5.0") logging.critical("You currently have version " + vnum + ". Please upgrade Qt.") exit() from version import _pcVersion import ostools # Placed here before importing the rest of pesterchum, since bits of it need # OSX's data directory and it doesn't hurt to have everything set up before # plowing on. :o) # ~Lex _datadir = ostools.getDataDir() # See, what I've done here is that _datadir is '' if we're not on OSX, so the # concatination is the same as if it wasn't there. # UPDATE 2011-11-28 : # Now using data directory as defined by QDesktopServices on all platforms # (on Linux, same as using xdg). To stay safe with older versions, copy any # data (profiles, logs, etc) from old location to new data directory. if ('--logging' in sys.argv[1:]) or ('-l' in sys.argv[1:]) & (False == ('--logging' in sys.argv[1:]) and ('-l' in sys.argv[1:])): try: # If both are specified, this does not run. if ('-l' in sys.argv[1:]): loglevel = sys.argv[sys.argv.index('-l') + 1] if ('--logging' in sys.argv[1:]): loglevel = sys.argv[sys.argv.index('--logging') + 1] loglevel = loglevel.upper() if loglevel == "CRITICAL": loglevel = 50 print("Logging Level is CRITICAL") elif loglevel == "ERROR": loglevel = 40 print("Logging Level is ERROR") elif loglevel == "WARNING": loglevel = 30 print("Logging Level is WARNING") elif loglevel == "INFO": loglevel = 20 print("Logging Level is INFO") elif loglevel == "DEBUG": loglevel = 10 print("Logging Level is DEBUG") elif loglevel == "NOTSET": loglevel = 0 print("Logging Level is NOTSET") else: raise Exception logging.basicConfig(level=loglevel) # Remove from argv because the rest of the code can't handle it :/ if ('-l' in sys.argv[1:]): sys.argv.pop(sys.argv.index('-l') + 1) sys.argv.pop(sys.argv.index('-l')) if ('--logging' in sys.argv[1:]): sys.argv.pop(sys.argv.index('--logging') + 1) sys.argv.pop(sys.argv.index('--logging')) except: print("Invalid syntax.") logging.basicConfig(level=30) # Warning else: logging.basicConfig(level=30) # Warning if _datadir: if not os.path.exists(_datadir): os.makedirs(_datadir) if not os.path.exists(_datadir+"profiles/") and os.path.exists("profiles/"): shutil.move("profiles/", _datadir+"profiles/") if not os.path.exists(_datadir+"pesterchum.js") and os.path.exists("pesterchum.js"): shutil.move("pesterchum.js", _datadir+"pesterchum.js") if not os.path.exists(_datadir+"logs/") and os.path.exists("logs/"): shutil.move("logs/", _datadir+"logs/") if not os.path.exists(_datadir+"profiles"): os.mkdir(_datadir+"profiles") if not os.path.exists(_datadir+"pesterchum.js"): f = open(_datadir+"pesterchum.js", 'w') f.write("{}") f.close() if not os.path.exists(_datadir+"logs"): os.mkdir(_datadir+"logs") from menus import PesterChooseQuirks, PesterChooseTheme, \ PesterChooseProfile, PesterOptions, PesterUserlist, PesterMemoList, \ LoadingScreen, AboutPesterchum, UpdatePesterchum, AddChumDialog from mood import Mood, PesterMoodAction, PesterMoodHandler, PesterMoodButton from dataobjs import PesterProfile, pesterQuirk, pesterQuirks from generic import PesterIcon, RightClickList, RightClickTree, \ MultiTextDialog, PesterList, CaseInsensitiveDict, MovingWindow, \ NoneSound, WMButton from convo import PesterTabWindow, PesterText, PesterInput, PesterConvo from parsetools import convertTags, addTimeInitial, themeChecker, ThemeException from memos import PesterMemo, MemoTabWindow, TimeTracker from irc import PesterIRC from logviewer import PesterLogUserSelect, PesterLogViewer from randomer import RandomHandler, RANDNICK import nickservmsgs # Rawr, fuck you OSX leopard #if not ostools.isOSXLeopard(): # from updatecheck import MSPAChecker from toast import PesterToastMachine, PesterToast import pytwmn from profile import * #canon_handles = ["apocalypseArisen", "arsenicCatnip", "arachnidsGrip", "adiosToreador", \ # "caligulasAquarium", "cuttlefishCuller", "carcinoGeneticist", "centaursTesticle", \ # "grimAuxiliatrix", "gallowsCalibrator", "gardenGnostic", "ectoBiologist", \ # "twinArmageddons", "terminallyCapricious", "turntechGodhead", "tentacleTherapist"] canon_handles = ["",]# Unused, kept to prevent unexpected calls causing a crash. CUSTOMBOTS = ["CALSPRITE", RANDNICK.upper()] BOTNAMES = ["NICKSERV", "CHANSERV", "MEMOSERV", "OPERSERV", "HELPSERV", "HOSTSERV", "BOTSERV"] BOTNAMES.extend(CUSTOMBOTS) # Save the main app. From here, we should be able to get everything else in # order, for console use. _CONSOLE_ENV = AttrDict() _CONSOLE_ENV.PAPP = None class waitingMessageHolder(object): def __init__(self, mainwindow, **msgfuncs): self.mainwindow = mainwindow self.funcs = msgfuncs self.queue = list(msgfuncs.keys()) if len(self.queue) > 0: self.mainwindow.updateSystemTray() def waitingHandles(self): return self.queue def answerMessage(self): func = self.funcs[self.queue[0]] func() def messageAnswered(self, handle): if handle not in self.queue: return self.queue = [q for q in self.queue if q != handle] del self.funcs[handle] if len(self.queue) == 0: self.mainwindow.updateSystemTray() def addMessage(self, handle, func): if handle not in self.funcs: self.queue.append(handle) self.funcs[handle] = func if len(self.queue) > 0: self.mainwindow.updateSystemTray() def __len__(self): return len(self.queue) class chumListing(QtWidgets.QTreeWidgetItem): def __init__(self, chum, window): super(chumListing, self).__init__([chum.handle]) self.mainwindow = window self.chum = chum self.handle = chum.handle self.setMood(Mood("offline")) self.status = None self.setToolTip(0, "%s: %s" % (chum.handle, window.chumdb.getNotes(chum.handle))) def setMood(self, mood): if hasattr(self.mainwindow, "chumList") and self.mainwindow.chumList.notify: #print "%s -> %s" % (self.chum.mood.name(), mood.name()) if self.mainwindow.config.notifyOptions() & self.mainwindow.config.SIGNOUT and \ mood.name() == "offline" and self.chum.mood.name() != "offline": #print "OFFLINE NOTIFY: " + self.handle uri = self.mainwindow.theme["toasts/icon/signout"] n = self.mainwindow.tm.Toast(self.mainwindow.tm.appName, "%s is Offline" % (self.handle), uri) n.show() elif self.mainwindow.config.notifyOptions() & self.mainwindow.config.SIGNIN and \ mood.name() != "offline" and self.chum.mood.name() == "offline": #print "ONLINE NOTIFY: " + self.handle uri = self.mainwindow.theme["toasts/icon/signin"] n = self.mainwindow.tm.Toast(self.mainwindow.tm.appName, "%s is Online" % (self.handle), uri) n.show() login = False logout = False if mood.name() == "offline" and self.chum.mood.name() != "offline": logout = True elif mood.name() != "offline" and self.chum.mood.name() == "offline": login = True self.chum.mood = mood self.updateMood(login=login, logout=logout) def setColor(self, color): self.chum.color = color def updateMood(self, unblock=False, login=False, logout=False): mood = self.chum.mood self.mood = mood icon = self.mood.icon(self.mainwindow.theme) if login: self.login() elif logout: self.logout() else: self.setIcon(0, icon) try: self.setForeground(0, QtGui.QBrush(QtGui.QColor(self.mainwindow.theme["main/chums/moods"][self.mood.name()]["color"]))) except KeyError: self.setForeground(0, QtGui.QBrush(QtGui.QColor(self.mainwindow.theme["main/chums/moods/chummy/color"]))) def changeTheme(self, theme): icon = self.mood.icon(theme) self.setIcon(0, icon) try: self.setForeground(0, QtGui.QBrush(QtGui.QColor((self.mainwindow.theme["main/chums/moods"][self.mood.name()]["color"])))) except KeyError: self.setForeground(0, QtGui.QBrush(QtGui.QColor((self.mainwindow.theme["main/chums/moods/chummy/color"])))) def login(self): self.setIcon(0, PesterIcon("themes/arrow_right.png")) self.status = "in" QtCore.QTimer.singleShot(5000, self.doneLogin) def doneLogin(self): icon = self.mood.icon(self.mainwindow.theme) self.setIcon(0, icon) def logout(self): self.setIcon(0, PesterIcon("themes/arrow_left.png")) self.status = "out" QtCore.QTimer.singleShot(5000, self.doneLogout) def doneLogout(self): hideoff = self.mainwindow.config.hideOfflineChums() icon = self.mood.icon(self.mainwindow.theme) self.setIcon(0, icon) if hideoff and self.status and self.status == "out": self.mainwindow.chumList.takeItem(self) def __lt__(self, cl): h1 = self.handle.lower() h2 = cl.handle.lower() return (h1 < h2) class chumArea(RightClickTree): # This is the class that controls the actual main chumlist, I think. # Looking into how the groups work might be wise. def __init__(self, chums, parent=None): super(chumArea, self).__init__(parent) self.notify = False QtCore.QTimer.singleShot(30000, self.beginNotify) self.mainwindow = parent theme = self.mainwindow.theme self.chums = chums gTemp = self.mainwindow.config.getGroups() self.groups = [g[0] for g in gTemp] self.openGroups = [g[1] for g in gTemp] self.showAllGroups(True) if not self.mainwindow.config.hideOfflineChums(): self.showAllChums() if not self.mainwindow.config.showEmptyGroups(): self.hideEmptyGroups() self.groupMenu = QtWidgets.QMenu(self) self.canonMenu = QtWidgets.QMenu(self) self.optionsMenu = QtWidgets.QMenu(self) self.pester = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/pester"], self) self.pester.triggered.connect(self.activateChum) self.removechum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/removechum"], self) self.removechum.triggered.connect(self.removeChum) self.blockchum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/blockchum"], self) self.blockchum.triggered.connect(self.blockChum) self.logchum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/viewlog"], self) self.logchum.triggered.connect(self.openChumLogs) self.reportchum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/report"], self) self.reportchum.triggered.connect(self.reportChum) self.findalts = QtWidgets.QAction("Find Alts", self) self.findalts.triggered.connect(self.findAlts) self.removegroup = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/removegroup"], self) self.removegroup.triggered.connect(self.removeGroup) self.renamegroup = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/renamegroup"], self) self.renamegroup.triggered.connect(self.renameGroup) self.notes = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/notes"], self) self.notes.triggered.connect(self.editNotes) self.optionsMenu.addAction(self.pester) self.optionsMenu.addAction(self.logchum) self.optionsMenu.addAction(self.notes) self.optionsMenu.addAction(self.blockchum) self.optionsMenu.addAction(self.removechum) self.moveMenu = QtWidgets.QMenu(self.mainwindow.theme["main/menus/rclickchumlist/movechum"], self) self.optionsMenu.addMenu(self.moveMenu) self.optionsMenu.addAction(self.reportchum) self.moveGroupMenu() self.groupMenu.addAction(self.renamegroup) self.groupMenu.addAction(self.removegroup) self.canonMenu.addAction(self.pester) self.canonMenu.addAction(self.logchum) self.canonMenu.addAction(self.blockchum) self.canonMenu.addAction(self.removechum) self.canonMenu.addMenu(self.moveMenu) self.canonMenu.addAction(self.reportchum) self.canonMenu.addAction(self.findalts) self.initTheme(theme) #self.sortItems() #self.sortItems(1, QtCore.Qt.AscendingOrder) self.setSortingEnabled(False) self.header().hide() self.setDropIndicatorShown(True) self.setIndentation(4) self.setDragEnabled(True) self.setDragDropMode(QtWidgets.QAbstractItemView.InternalMove) self.setAnimated(True) self.setRootIsDecorated(False) self.itemDoubleClicked[QtWidgets.QTreeWidgetItem, int].connect(self.expandGroup) @QtCore.pyqtSlot() def beginNotify(self): logging.info("BEGIN NOTIFY") self.notify = True def getOptionsMenu(self): if not self.currentItem(): return None text = str(self.currentItem().text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] if text == "Chums": return None elif text in self.groups: return self.groupMenu else: currenthandle = self.currentItem().chum.handle #if currenthandle in canon_handles: # return self.canonMenu #else: return self.optionsMenu def startDrag(self, dropAction): ## Traceback (most recent call last): ## File "pesterchum.py", line 355, in startDrag ## mime.setData('application/x-item', '???') ## TypeErroreError: setData(self, str, Union[QByteArray, bytes, bytearray]): argument 2 has unexpected type 'str' try: # create mime data object mime = QtCore.QMimeData() mime.setData('application/x-item', '???') # start drag drag = QtGui.QDrag(self) drag.setMimeData(mime) drag.start(QtCore.Qt.MoveAction) except: logging.exception('') def dragMoveEvent(self, event): if event.mimeData().hasFormat("application/x-item"): event.setDropAction(QtCore.Qt.MoveAction) event.accept() else: event.ignore() def dragEnterEvent(self, event): if (event.mimeData().hasFormat('application/x-item')): event.accept() else: event.ignore() def dropEvent(self, event): if (event.mimeData().hasFormat('application/x-item')): event.acceptProposedAction() else: event.ignore() return thisitem = str(event.source().currentItem().text(0)) if thisitem.rfind(" (") != -1: thisitem = thisitem[0:thisitem.rfind(" (")] # Drop item is a group thisitem = str(event.source().currentItem().text(0)) if thisitem.rfind(" (") != -1: thisitem = thisitem[0:thisitem.rfind(" (")] if thisitem == "Chums" or thisitem in self.groups: droppos = self.itemAt(event.pos()) if not droppos: return droppos = str(droppos.text(0)) if droppos.rfind(" ") != -1: droppos = droppos[0:droppos.rfind(" ")] if droppos == "Chums" or droppos in self.groups: saveOpen = event.source().currentItem().isExpanded() saveDrop = self.itemAt(event.pos()) saveItem = self.takeTopLevelItem(self.indexOfTopLevelItem(event.source().currentItem())) self.insertTopLevelItems(self.indexOfTopLevelItem(saveDrop)+1, [saveItem]) if saveOpen: saveItem.setExpanded(True) gTemp = [] for i in range(self.topLevelItemCount()): text = str(self.topLevelItem(i).text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] gTemp.append([str(text), self.topLevelItem(i).isExpanded()]) self.mainwindow.config.saveGroups(gTemp) # Drop item is a chum else: item = self.itemAt(event.pos()) if item: text = str(item.text(0)) # Figure out which group to drop into if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] if text == "Chums" or text in self.groups: group = text gitem = item else: ptext = str(item.parent().text(0)) if ptext.rfind(" ") != -1: ptext = ptext[0:ptext.rfind(" ")] group = ptext gitem = item.parent() chumLabel = event.source().currentItem() chumLabel.chum.group = group self.mainwindow.chumdb.setGroup(chumLabel.chum.handle, group) self.takeItem(chumLabel) # Using manual chum reordering if self.mainwindow.config.sortMethod() == 2: insertIndex = gitem.indexOfChild(item) if insertIndex == -1: insertIndex = 0 gitem.insertChild(insertIndex, chumLabel) chums = self.mainwindow.config.chums() if item == gitem: item = gitem.child(0) inPos = chums.index(str(item.text(0))) if chums.index(thisitem) < inPos: inPos -= 1 chums.remove(thisitem) chums.insert(inPos, str(thisitem)) self.mainwindow.config.setChums(chums) else: self.addItem(chumLabel) if self.mainwindow.config.showOnlineNumbers(): self.showOnlineNumbers() def moveGroupMenu(self): currentGroup = self.currentItem() if currentGroup: if currentGroup.parent(): text = str(currentGroup.parent().text(0)) else: text = str(currentGroup.text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] currentGroup = text self.moveMenu.clear() actGroup = QtWidgets.QActionGroup(self) groups = self.groups[:] for gtext in groups: if gtext == currentGroup: continue movegroup = self.moveMenu.addAction(gtext) actGroup.addAction(movegroup) actGroup.triggered[QtWidgets.QAction].connect(self.moveToGroup) def addChum(self, chum): if len([c for c in self.chums if c.handle == chum.handle]) != 0: return self.chums.append(chum) if not (self.mainwindow.config.hideOfflineChums() and chum.mood.name() == "offline"): chumLabel = chumListing(chum, self.mainwindow) self.addItem(chumLabel) #self.topLevelItem(0).addChild(chumLabel) #self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder) def getChums(self, handle): chums = self.findItems(handle, QtCore.Qt.MatchExactly | QtCore.Qt.MatchRecursive) return chums def showAllChums(self): for c in self.chums: chandle = c.handle if not len(self.findItems(chandle, QtCore.Qt.MatchExactly | QtCore.Qt.MatchRecursive)): #if True:# For if it doesn't work at all :/ chumLabel = chumListing(c, self.mainwindow) self.addItem(chumLabel) self.sort() def hideOfflineChums(self): for j in range(self.topLevelItemCount()): i = 0 listing = self.topLevelItem(j).child(i) while listing is not None: if listing.chum.mood.name() == "offline": self.topLevelItem(j).takeChild(i) else: i += 1 listing = self.topLevelItem(j).child(i) self.sort() def showAllGroups(self, first=False): if first: for i,g in enumerate(self.groups): child_1 = QtWidgets.QTreeWidgetItem(["%s" % (g)]) self.addTopLevelItem(child_1) if self.openGroups[i]: child_1.setExpanded(True) return curgroups = [] for i in range(self.topLevelItemCount()): text = str(self.topLevelItem(i).text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] curgroups.append(text) for i,g in enumerate(self.groups): if g not in curgroups: child_1 = QtWidgets.QTreeWidgetItem(["%s" % (g)]) j = 0 for h in self.groups: if h == g: self.insertTopLevelItem(j, child_1) break if h in curgroups: j += 1 if self.openGroups[i]: child_1.setExpanded(True) if self.mainwindow.config.showOnlineNumbers(): self.showOnlineNumbers() def showOnlineNumbers(self): if hasattr(self, 'groups'): self.hideOnlineNumbers() totals = {'Chums': 0} online = {'Chums': 0} for g in self.groups: totals[str(g)] = 0 online[str(g)] = 0 for c in self.chums: yes = c.mood.name() != "offline" if c.group == "Chums": totals[str(c.group)] = totals[str(c.group)]+1 if yes: online[str(c.group)] = online[str(c.group)]+1 elif c.group in totals: totals[str(c.group)] = totals[str(c.group)]+1 if yes: online[str(c.group)] = online[str(c.group)]+1 else: totals["Chums"] = totals["Chums"]+1 if yes: online["Chums"] = online["Chums"]+1 for i in range(self.topLevelItemCount()): text = str(self.topLevelItem(i).text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] if text in online: self.topLevelItem(i).setText(0, "%s (%i/%i)" % (text, online[text], totals[text])) def hideOnlineNumbers(self): for i in range(self.topLevelItemCount()): text = str(self.topLevelItem(i).text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] self.topLevelItem(i).setText(0, "%s" % (text)) def hideEmptyGroups(self): i = 0 listing = self.topLevelItem(i) while listing is not None: if listing.childCount() == 0: self.takeTopLevelItem(i) else: i += 1 listing = self.topLevelItem(i) @QtCore.pyqtSlot() def expandGroup(self): item = self.currentItem() text = str(item.text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] if text in self.groups: expand = item.isExpanded() self.mainwindow.config.expandGroup(text, not expand) def addItem(self, chumLabel): if hasattr(self, 'groups'): if chumLabel.chum.group not in self.groups: chumLabel.chum.group = "Chums" if "Chums" not in self.groups: self.mainwindow.config.addGroup("Chums") curgroups = [] for i in range(self.topLevelItemCount()): text = str(self.topLevelItem(i).text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] curgroups.append(text) if not self.findItems(chumLabel.handle, QtCore.Qt.MatchExactly | QtCore.Qt.MatchRecursive): #if True:# For if it doesn't work at all :/ if chumLabel.chum.group not in curgroups: child_1 = QtWidgets.QTreeWidgetItem(["%s" % (chumLabel.chum.group)]) i = 0 for g in self.groups: if g == chumLabel.chum.group: self.insertTopLevelItem(i, child_1) break if g in curgroups: i += 1 if self.openGroups[self.groups.index("%s" % (chumLabel.chum.group))]: child_1.setExpanded(True) for i in range(self.topLevelItemCount()): text = str(self.topLevelItem(i).text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] if text == chumLabel.chum.group: break # Manual sorting if self.mainwindow.config.sortMethod() == 2: chums = self.mainwindow.config.chums() if chumLabel.chum.handle in chums: fi = chums.index(chumLabel.chum.handle) else: fi = 0 c = 1 # TODO: Rearrange chums list on drag-n-drop bestj = 0 bestname = "" if fi > 0: while not bestj: for j in range(self.topLevelItem(i).childCount()): if chums[fi-c] == str(self.topLevelItem(i).child(j).text(0)): bestj = j bestname = chums[fi-c] break c += 1 if fi-c < 0: break if bestname: self.topLevelItem(i).insertChild(bestj+1, chumLabel) else: self.topLevelItem(i).insertChild(bestj, chumLabel) #sys.exit(0) self.topLevelItem(i).addChild(chumLabel) else: # All other sorting self.topLevelItem(i).addChild(chumLabel) self.sort() if self.mainwindow.config.showOnlineNumbers(): self.showOnlineNumbers() else: # usually means this is now the trollslum if not self.findItems(chumLabel.handle, QtCore.Qt.MatchExactly | QtCore.Qt.MatchRecursive): #if True:# For if it doesn't work at all :/ self.topLevelItem(0).addChild(chumLabel) self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder) def takeItem(self, chumLabel): r = None if not hasattr(chumLabel, 'chum'): return r for i in range(self.topLevelItemCount()): for j in range(self.topLevelItem(i).childCount()): if self.topLevelItem(i).child(j).text(0) == chumLabel.chum.handle: r = self.topLevelItem(i).takeChild(j) break if not self.mainwindow.config.showEmptyGroups(): self.hideEmptyGroups() if self.mainwindow.config.showOnlineNumbers(): self.showOnlineNumbers() return r def updateMood(self, handle, mood): hideoff = self.mainwindow.config.hideOfflineChums() chums = self.getChums(handle) oldmood = None if hideoff: if mood.name() != "offline" and \ len(chums) == 0 and \ handle in [p.handle for p in self.chums]: newLabel = chumListing([p for p in self.chums if p.handle == handle][0], self.mainwindow) self.addItem(newLabel) #self.sortItems() chums = [newLabel] elif mood.name() == "offline" and \ len(chums) > 0: for c in chums: if (hasattr(c, 'mood')): c.setMood(mood) #self.takeItem(c) chums = [] for c in chums: if (hasattr(c, 'mood')): oldmood = c.mood c.setMood(mood) if self.mainwindow.config.sortMethod() == 1: for i in range(self.topLevelItemCount()): saveCurrent = self.currentItem() self.moodSort(i) self.setCurrentItem(saveCurrent) if self.mainwindow.config.showOnlineNumbers(): self.showOnlineNumbers() return oldmood def updateColor(self, handle, color): chums = self.findItems(handle, QtCore.Qt.MatchFlags(0)) for c in chums: c.setColor(color) def initTheme(self, theme): self.resize(*theme["main/chums/size"]) self.move(*theme["main/chums/loc"]) if "main/chums/scrollbar" in theme: self.setStyleSheet("QListWidget { %s } \ QScrollBar { %s } \ QScrollBar::handle { %s } \ QScrollBar::add-line { %s } \ QScrollBar::sub-line { %s } \ QScrollBar:up-arrow { %s } \ QScrollBar:down-arrow { %s }" % \ (theme["main/chums/style"], \ theme["main/chums/scrollbar/style"], \ theme["main/chums/scrollbar/handle"], \ theme["main/chums/scrollbar/downarrow"], \ theme["main/chums/scrollbar/uparrow"], \ theme["main/chums/scrollbar/uarrowstyle"], \ theme["main/chums/scrollbar/darrowstyle"] )) else: self.setStyleSheet(theme["main/chums/style"]) self.pester.setText(theme["main/menus/rclickchumlist/pester"]) self.removechum.setText(theme["main/menus/rclickchumlist/removechum"]) self.blockchum.setText(theme["main/menus/rclickchumlist/blockchum"]) self.logchum.setText(theme["main/menus/rclickchumlist/viewlog"]) self.reportchum.setText(theme["main/menus/rclickchumlist/report"]) self.notes.setText(theme["main/menus/rclickchumlist/notes"]) self.removegroup.setText(theme["main/menus/rclickchumlist/removegroup"]) self.renamegroup.setText(theme["main/menus/rclickchumlist/renamegroup"]) self.moveMenu.setTitle(theme["main/menus/rclickchumlist/movechum"]) def changeTheme(self, theme): self.initTheme(theme) chumlistings = [] for i in range(self.topLevelItemCount()): for j in range(self.topLevelItem(i).childCount()): chumlistings.append(self.topLevelItem(i).child(j)) #chumlistings = [self.item(i) for i in range(0, self.count())] for c in chumlistings: c.changeTheme(theme) def count(self): c = 0 for i in range(self.topLevelItemCount()): c = c + self.topLevelItem(i).childCount() return c def sort(self): if self.mainwindow.config.sortMethod() == 2: pass # Do nothing!!!!! :OOOOOOO It's manual, bitches elif self.mainwindow.config.sortMethod() == 1: for i in range(self.topLevelItemCount()): self.moodSort(i) else: for i in range(self.topLevelItemCount()): self.topLevelItem(i).sortChildren(0, QtCore.Qt.AscendingOrder) def moodSort(self, group): scrollPos = self.verticalScrollBar().sliderPosition() chums = [] listing = self.topLevelItem(group).child(0) while listing is not None: chums.append(self.topLevelItem(group).takeChild(0)) listing = self.topLevelItem(group).child(0) chums.sort(key=lambda x: ((999 if x.chum.mood.value() == 2 else x.chum.mood.value()), x.chum.handle), reverse=False) for c in chums: self.topLevelItem(group).addChild(c) self.verticalScrollBar().setSliderPosition(scrollPos) @QtCore.pyqtSlot() def activateChum(self): self.itemActivated.emit(self.currentItem(), 0) @QtCore.pyqtSlot() def removeChum(self, handle = None): if handle: clistings = self.getChums(handle) if len(clistings) <= 0: return for c in clistings: self.setCurrentItem(c) if not self.currentItem(): return currentChum = self.currentItem().chum self.chums = [c for c in self.chums if c.handle != currentChum.handle] self.removeChumSignal.emit(self.currentItem().chum.handle) oldlist = self.takeItem(self.currentItem()) del oldlist @QtCore.pyqtSlot() def blockChum(self): currentChum = self.currentItem() if not currentChum: return self.blockChumSignal.emit(self.currentItem().chum.handle) @QtCore.pyqtSlot() def reportChum(self): currentChum = self.currentItem() if not currentChum: return self.mainwindow.reportChum(self.currentItem().chum.handle) @QtCore.pyqtSlot() def findAlts(self): currentChum = self.currentItem() if not currentChum: return self.mainwindow.sendMessage.emit("ALT %s" % (currentChum.chum.handle) , "calSprite") @QtCore.pyqtSlot() def openChumLogs(self): currentChum = self.currentItem() if not currentChum: return currentChum = currentChum.text(0) self.pesterlogviewer = PesterLogViewer(currentChum, self.mainwindow.config, self.mainwindow.theme, self.mainwindow) self.pesterlogviewer.rejected.connect(self.closeActiveLog) self.pesterlogviewer.show() self.pesterlogviewer.raise_() self.pesterlogviewer.activateWindow() @QtCore.pyqtSlot() def closeActiveLog(self): self.pesterlogviewer.close() self.pesterlogviewer = None @QtCore.pyqtSlot() def editNotes(self): currentChum = self.currentItem() if not currentChum: return (notes, ok) = QtWidgets.QInputDialog.getText(self, "Notes", "Enter your notes...") if ok: notes = str(notes) self.mainwindow.chumdb.setNotes(currentChum.handle, notes) currentChum.setToolTip(0, "%s: %s" % (currentChum.handle, notes)) @QtCore.pyqtSlot() def renameGroup(self): if not hasattr(self, 'renamegroupdialog'): self.renamegroupdialog = None if not self.renamegroupdialog: (gname, ok) = QtWidgets.QInputDialog.getText(self, "Rename Group", "Enter a new name for the group:") if ok: gname = str(gname) if re.search("[^A-Za-z0-9_\s]", gname) is not None: msgbox = QtWidgets.QMessageBox() msgbox.setStyleSheet("QMessageBox{" + self.theme["main/defaultwindow/style"] + "}") msgbox.setInformativeText("THIS IS NOT A VALID GROUP NAME") msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) ret = msgbox.exec_() self.addgroupdialog = None return currentGroup = self.currentItem() if not currentGroup: return index = self.indexOfTopLevelItem(currentGroup) if index != -1: expanded = currentGroup.isExpanded() text = str(currentGroup.text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] self.mainwindow.config.delGroup(text) self.mainwindow.config.addGroup(gname, expanded) gTemp = self.mainwindow.config.getGroups() self.groups = [g[0] for g in gTemp] self.openGroups = [g[1] for g in gTemp] for i in range(currentGroup.childCount()): currentGroup.child(i).chum.group = gname self.mainwindow.chumdb.setGroup(currentGroup.child(i).chum.handle, gname) currentGroup.setText(0, gname) if self.mainwindow.config.showOnlineNumbers(): self.showOnlineNumbers() self.renamegroupdialog = None @QtCore.pyqtSlot() def removeGroup(self): currentGroup = self.currentItem() if not currentGroup: return text = str(currentGroup.text(0)) if text.rfind(" (") != -1: text = text[0:text.rfind(" (")] self.mainwindow.config.delGroup(text) gTemp = self.mainwindow.config.getGroups() self.groups = [g[0] for g in gTemp] self.openGroups = [g[1] for g in gTemp] for c in self.chums: if c.group == text: c.group = "Chums" self.mainwindow.chumdb.setGroup(c.handle, "Chums") for i in range(self.topLevelItemCount()): if self.topLevelItem(i).text(0) == currentGroup.text(0): break while self.topLevelItem(i) and self.topLevelItem(i).child(0): chumLabel = self.topLevelItem(i).child(0) self.takeItem(chumLabel) self.addItem(chumLabel) self.takeTopLevelItem(i) @QtCore.pyqtSlot(QtWidgets.QAction) def moveToGroup(self, item): if not item: return group = str(item.text()) chumLabel = self.currentItem() if not chumLabel: return chumLabel.chum.group = group self.mainwindow.chumdb.setGroup(chumLabel.chum.handle, group) self.takeItem(chumLabel) self.addItem(chumLabel) removeChumSignal = QtCore.pyqtSignal('QString') blockChumSignal = QtCore.pyqtSignal('QString') class trollSlum(chumArea): unblockChumSignal = QtCore.pyqtSignal() def __init__(self, trolls, mainwindow, parent=None): #~super(trollSlum, self).__init__(parent) # TODO: Rework inheritance here. QtWidgets.QTreeWidgetItem.__init__(self, parent) self.mainwindow = mainwindow theme = self.mainwindow.theme self.setStyleSheet(theme["main/trollslum/chumroll/style"]) self.chums = trolls child_1 = QtWidgets.QTreeWidgetItem([""]) self.addTopLevelItem(child_1) child_1.setExpanded(True) for c in self.chums: chandle = c.handle if not self.findItems(chandle, QtCore.Qt.MatchFlags(0)): chumLabel = chumListing(c, self.mainwindow) self.addItem(chumLabel) self.setSortingEnabled(False) self.header().hide() self.setDropIndicatorShown(False) self.setIndentation(0) self.optionsMenu = QtWidgets.QMenu(self) self.unblockchum = QtWidgets.QAction(self.mainwindow.theme["main/menus/rclickchumlist/unblockchum"], self) self.unblockchum.triggered.connect(self.unblockChumSignal) self.optionsMenu.addAction(self.unblockchum) #self.sortItems() def contextMenuEvent(self, event): #fuckin Qt if event.reason() == QtGui.QContextMenuEvent.Mouse: listing = self.itemAt(event.pos()) self.setCurrentItem(listing) if self.currentItem().text(0) != "": self.optionsMenu.popup(event.globalPos()) def changeTheme(self, theme): self.setStyleSheet(theme["main/trollslum/chumroll/style"]) self.removechum.setText(theme["main/menus/rclickchumlist/removechum"]) self.unblockchum.setText(theme["main/menus/rclickchumlist/blockchum"]) chumlistings = [self.item(i) for i in range(0, self.count())] for c in chumlistings: c.changeTheme(theme) # This causes: # TypeError: connect() failed between triggered(bool) and unblockChumSignal() # I'm not sure why this was here in the first place- # Does removing it break anything else...? #unblockChumSignal = QtCore.pyqtSignal('QString') class TrollSlumWindow(QtWidgets.QFrame): def __init__(self, trolls, mainwindow, parent=None): super(TrollSlumWindow, self).__init__(parent) self.mainwindow = mainwindow theme = self.mainwindow.theme self.slumlabel = QtWidgets.QLabel(self) self.initTheme(theme) self.trollslum = trollSlum(trolls, self.mainwindow, self) self.trollslum.unblockChumSignal.connect(self.removeCurrentTroll) layout_1 = QtWidgets.QHBoxLayout() self.addButton = QtWidgets.QPushButton("ADD", self) self.addButton.clicked.connect(self.addTrollWindow) self.removeButton = QtWidgets.QPushButton("REMOVE", self) self.removeButton.clicked.connect(self.removeCurrentTroll) layout_1.addWidget(self.addButton) layout_1.addWidget(self.removeButton) layout_0 = QtWidgets.QVBoxLayout() layout_0.addWidget(self.slumlabel) layout_0.addWidget(self.trollslum) layout_0.addLayout(layout_1) self.setLayout(layout_0) def initTheme(self, theme): self.resize(*theme["main/trollslum/size"]) self.setStyleSheet(theme["main/trollslum/style"]) self.slumlabel.setText(theme["main/trollslum/label/text"]) self.slumlabel.setStyleSheet(theme["main/trollslum/label/style"]) if not self.parent(): self.setWindowTitle(theme["main/menus/profile/block"]) self.setWindowIcon(self.mainwindow.windowIcon()) def changeTheme(self, theme): self.initTheme(theme) self.trollslum.changeTheme(theme) # move unblocked trolls from slum to chumarea def closeEvent(self, event): self.mainwindow.closeTrollSlum() def updateMood(self, handle, mood): self.trollslum.updateMood(handle, mood) def addTroll(self, chum): self.trollslum.addChum(chum) def removeTroll(self, handle): self.trollslum.removeChum(handle) @QtCore.pyqtSlot() def removeCurrentTroll(self): currentListing = self.trollslum.currentItem() if not currentListing or not hasattr(currentListing, 'chum'): return self.unblockChumSignal.emit(currentListing.chum.handle) @QtCore.pyqtSlot() def addTrollWindow(self): if not hasattr(self, 'addtrolldialog'): self.addtrolldialog = None if self.addtrolldialog: return self.addtrolldialog = QtWidgets.QInputDialog(self) (handle, ok) = self.addtrolldialog.getText(self, "Add Troll", "Enter Troll Handle:") if ok: handle = str(handle) if not (PesterProfile.checkLength(handle) and PesterProfile.checkValid(handle)[0]): errormsg = QtWidgets.QErrorMessage(self) errormsg.showMessage("THIS IS NOT A VALID CHUMTAG!") self.addchumdialog = None return self.blockChumSignal.emit(handle) self.addtrolldialog = None blockChumSignal = QtCore.pyqtSignal('QString') unblockChumSignal = QtCore.pyqtSignal('QString') class PesterWindow(MovingWindow): reconnectIRC = QtCore.pyqtSignal() sendMessage = QtCore.pyqtSignal('QString', 'QString') def __init__(self, options, parent=None, app=None): super(PesterWindow, self).__init__(parent, (QtCore.Qt.CustomizeWindowHint | QtCore.Qt.FramelessWindowHint)) # For debugging _CONSOLE_ENV.PAPP = self # TODO: karxi: SO! At the end of this function it seems like that # object is just made into None or.../something/. Somehow, it just # DIES, and I haven't the slightest idea why. I've tried multiple ways # to set it that shouldn't cause issues with globals; I honestly don't # know what to do. # Putting logging statements in here *gives me an object*, but I can't # carry it out of the function. I'll hvae to think of a way around # this.... # If I use a definition made in here without having another elsewhere, # it comes back as undefined. Just...what? self.autoJoinDone = False self.app = app self.convos = CaseInsensitiveDict() self.memos = CaseInsensitiveDict() self.tabconvo = None self.tabmemo = None self.shortcuts = AttrDict() self.setAutoFillBackground(True) self.setObjectName("main") self.config = userConfig(self) # Trying to fix: # IOError: [Errno 2] # No such file or directory: # u'XXX\\AppData\\Local\\pesterchum/profiles/XXX.js' # Part 1 :( try: if self.config.defaultprofile(): self.userprofile = userProfile(self.config.defaultprofile()) self.theme = self.userprofile.getTheme() else: self.userprofile = userProfile(PesterProfile("pesterClient%d" % (random.randint(100,999)), QtGui.QColor("black"), Mood(0))) self.theme = self.userprofile.getTheme() except: self.userprofile = userProfile(PesterProfile("pesterClient%d" % (random.randint(100,999)), QtGui.QColor("black"), Mood(0))) self.theme = self.userprofile.getTheme() # karxi: For the record, these are set via commandline arguments. By # default, they aren't usable any other way - you can't set them via # the config files. # ...which means the flag for disabling honking is also hidden and # impossible to set via pesterchum.js. # # This was almost certainly intentional. if "advanced" in options: self.advanced = options["advanced"] else: self.advanced = False if "server" in options: self.serverOverride = options["server"] if "port" in options: self.portOverride = options["port"] if "honk" in options: self.honk = options["honk"] else: self.honk = True self.modes = "" self.sound_type = None self.randhandler = RandomHandler(self) try: themeChecker(self.theme) except ThemeException as inst: logging.error("Caught: " + inst.parameter) themeWarning = QtWidgets.QMessageBox(self) themeWarning.setText("Theme Error: %s" % inst) themeWarning.exec_() self.theme = pesterTheme("pesterchum") extraToasts = {'default': PesterToast} if pytwmn.confExists(): extraToasts['twmn'] = pytwmn.Notification self.tm = PesterToastMachine(self, lambda: self.theme["main/windowtitle"], on=self.config.notify(), type=self.config.notifyType(), extras=extraToasts) self.tm.run() self.chatlog = PesterLog(self.profile().handle, self) self.move(100, 100) talk = QtWidgets.QAction(self.theme["main/menus/client/talk"], self) self.talk = talk talk.triggered.connect(self.openChat) logv = QtWidgets.QAction(self.theme["main/menus/client/logviewer"], self) self.logv = logv logv.triggered.connect(self.openLogv) grps = QtWidgets.QAction(self.theme["main/menus/client/addgroup"], self) self.grps = grps grps.triggered.connect(self.addGroupWindow) self.rand = QtWidgets.QAction(self.theme["main/menus/client/randen"], self) self.rand.triggered.connect(self.randhandler.getEncounter) opts = QtWidgets.QAction(self.theme["main/menus/client/options"], self) self.opts = opts opts.triggered.connect(self.openOpts) exitaction = QtWidgets.QAction(self.theme["main/menus/client/exit"], self) self.exitaction = exitaction exitaction.triggered.connect(self.quit) userlistaction = QtWidgets.QAction(self.theme["main/menus/client/userlist"], self) self.userlistaction = userlistaction userlistaction.triggered.connect(self.showAllUsers) memoaction = QtWidgets.QAction(self.theme["main/menus/client/memos"], self) self.memoaction = memoaction memoaction.triggered.connect(self.showMemos) self.importaction = QtWidgets.QAction(self.theme["main/menus/client/import"], self) self.importaction.triggered.connect(self.importExternalConfig) self.idleaction = QtWidgets.QAction(self.theme["main/menus/client/idle"], self) self.idleaction.setCheckable(True) self.idleaction.toggled[bool].connect(self.toggleIdle) self.reconnectAction = QtWidgets.QAction(self.theme["main/menus/client/reconnect"], self) self.reconnectAction.triggered.connect(self.reconnectIRC) self.menu = QtWidgets.QMenuBar(self) self.menu.setNativeMenuBar(False) self.menu.setObjectName("mainmenu") if self.theme.has_key("main/menus/client/console"): self.console = AttrDict(dict( window = None, action = QtWidgets.QAction(self.theme["main/menus/client/console"], self), is_open = False )) else: self.console = AttrDict(dict( window = None, action = QtWidgets.QAction("Console", self), is_open = False )) self.console.shortcuts = AttrDict(dict( conkey = QtWidgets.QShortcut(QtGui.QKeySequence("Ctrl+`"), self, context=QtCore.Qt.ApplicationShortcut), curwgt = QtWidgets.QShortcut(QtGui.QKeySequence("Ctrl+Alt+w"), self, context=QtCore.Qt.ApplicationShortcut) )) self.console.action.triggered.connect(self.toggleConsole) # Make sure the shortcut works anywhere. # karxi: There's something wrong with the inheritance scheme here. #~self.console.shortcuts.conkey.setContext(QtCore.Qt.ApplicationShortcut) self.console.shortcuts.conkey.activated.connect(self.toggleConsole) #~# Use new-style connections #~self.console.shortcut.activated.connect(self.toggleConsole) # Apparently those can crash sometimes...c'est la vie. Can't use 'em. #~self.connect(self.console.shortcuts.curwgt, #~ QtCore.SIGNAL('activate()'), self.console. self.console.is_open = False filemenu = self.menu.addMenu(self.theme["main/menus/client/_name"]) self.filemenu = filemenu filemenu.addAction(opts) filemenu.addAction(memoaction) filemenu.addAction(logv) filemenu.addAction(self.rand) if not self.randhandler.running: self.rand.setEnabled(False) filemenu.addAction(userlistaction) filemenu.addAction(talk) filemenu.addAction(self.idleaction) filemenu.addAction(grps) if _CONSOLE: filemenu.addAction(self.console.action) filemenu.addAction(self.importaction) filemenu.addAction(self.reconnectAction) filemenu.addAction(exitaction) changequirks = QtWidgets.QAction(self.theme["main/menus/profile/quirks"], self) self.changequirks = changequirks changequirks.triggered.connect(self.openQuirks) loadslum = QtWidgets.QAction(self.theme["main/menus/profile/block"], self) self.loadslum = loadslum loadslum.triggered.connect(self.showTrollSlum) changecoloraction = QtWidgets.QAction(self.theme["main/menus/profile/color"], self) self.changecoloraction = changecoloraction changecoloraction.triggered.connect(self.changeMyColor) switch = QtWidgets.QAction(self.theme["main/menus/profile/switch"], self) self.switch = switch switch.triggered.connect(self.switchProfile) profilemenu = self.menu.addMenu(self.theme["main/menus/profile/_name"]) self.profilemenu = profilemenu profilemenu.addAction(changequirks) profilemenu.addAction(loadslum) profilemenu.addAction(changecoloraction) profilemenu.addAction(switch) self.helpAction = QtWidgets.QAction(self.theme["main/menus/help/help"], self) self.helpAction.triggered.connect(self.launchHelp) self.botAction = QtWidgets.QAction(self.theme["main/menus/help/calsprite"], self) self.botAction.triggered.connect(self.loadCalsprite) self.nickServAction = QtWidgets.QAction(self.theme["main/menus/help/nickserv"], self) self.nickServAction.triggered.connect(self.loadNickServ) self.chanServAction = QtWidgets.QAction(self.theme["main/menus/help/chanserv"], self) self.chanServAction.triggered.connect(self.loadChanServ) self.aboutAction = QtWidgets.QAction(self.theme["main/menus/help/about"], self) self.aboutAction.triggered.connect(self.aboutPesterchum) # Because I can't expect all themes to have this included. #if self.theme.has_key("main/menus/help/reportbug"): try: self.reportBugAction = QtWidgets.QAction(self.theme["main/menus/help/reportbug"], self) except: self.reportBugAction = QtWidgets.QAction("REPORT BUG", self) try: self.xyzRulesAction = QtWidgets.QAction(self.theme["main/menus/help/rules"], self) except: self.xyzRulesAction = QtWidgets.QAction("RULES", self) self.reportBugAction.triggered.connect(self.reportBug) self.xyzRulesAction.triggered.connect(self.xyzRules) helpmenu = self.menu.addMenu(self.theme["main/menus/help/_name"]) self.helpmenu = helpmenu self.helpmenu.addAction(self.helpAction) self.helpmenu.addAction(self.xyzRulesAction) self.helpmenu.addAction(self.botAction) self.helpmenu.addAction(self.chanServAction) self.helpmenu.addAction(self.nickServAction) self.helpmenu.addAction(self.aboutAction) self.helpmenu.addAction(self.reportBugAction) self.closeButton = WMButton(PesterIcon(self.theme["main/close/image"]), self) self.setButtonAction(self.closeButton, self.config.closeAction(), -1) self.miniButton = WMButton(PesterIcon(self.theme["main/minimize/image"]), self) self.setButtonAction(self.miniButton, self.config.minimizeAction(), -1) self.namesdb = CaseInsensitiveDict() self.chumdb = PesterProfileDB() chums = [PesterProfile(c, chumdb=self.chumdb) for c in set(self.config.chums())] self.chumList = chumArea(chums, self) self.chumList.itemActivated[QtWidgets.QTreeWidgetItem, int].connect(self.pesterSelectedChum) self.chumList.removeChumSignal['QString'].connect(self.removeChum) self.chumList.blockChumSignal['QString'].connect(self.blockChum) self.addChumButton = QtWidgets.QPushButton(self.theme["main/addchum/text"], self) self.addChumButton.setObjectName("addchumbtn") self.addChumButton.clicked.connect(self.addChumWindow) self.pesterButton = QtWidgets.QPushButton(self.theme["main/pester/text"], self) self.pesterButton.setObjectName("newpesterbtn") self.pesterButton.clicked.connect(self.pesterSelectedChum) self.blockButton = QtWidgets.QPushButton(self.theme["main/block/text"], self) self.blockButton.setObjectName("blockbtn") self.blockButton.clicked.connect(self.blockSelectedChum) self.moodsLabel = QtWidgets.QLabel(self.theme["main/moodlabel/text"], self) self.moodsLabel.setObjectName("moodlabel") self.mychumhandleLabel = QtWidgets.QLabel(self.theme["main/mychumhandle/label/text"], self) self.mychumhandleLabel.setObjectName("myhandlelabel") self.mychumhandle = QtWidgets.QPushButton(self.profile().handle, self) self.mychumhandle.setFlat(True) self.mychumhandle.clicked.connect(self.switchProfile) self.mychumcolor = QtWidgets.QPushButton(self) self.mychumcolor.clicked.connect(self.changeMyColor) # self.show() before self.initTheme() fixes a # layering issue on windows... for some reason... self.show() self.initTheme(self.theme) #self.mychumhandleLabel.setStyleSheet("QLabel {);};") self.hide() self.waitingMessages = waitingMessageHolder(self) self.idler = AttrDict(dict( # autoidle auto = False, # setidle manual = False, # idlethreshold threshold = 60*self.config.idleTime(), # idleaction action = self.idleaction, # idletimer timer = QtCore.QTimer(self), # idleposition pos = QtGui.QCursor.pos(), # idletime time = 0 )) self.idler.timer.timeout.connect(self.checkIdle) self.idler.timer.start(1000) if not self.config.defaultprofile(): self.changeProfile() # Fuck you some more OSX leopard! >:( #if not ostools.isOSXLeopard(): # QtCore.QTimer.singleShot(1000, self.mspacheck) self.pcUpdate['QString', 'QString'].connect(self.updateMsg) self.pingtimer = QtCore.QTimer() self.pingtimer.timeout.connect(self.checkPing) self.lastping = int(time()) self.pingtimer.start(1000*90) self.mychumhandleLabel.adjustSize() # Required so "CHUMHANDLE:" regardless of style-sheet. self.moodsLabel.adjustSize() # Required so "MOOD:" regardless of style-sheet. self.chooseServerAskedToReset = False self.chooseServer() # Update RE bot try: if self.userprofile.getRandom(): code = "+" else: code = "-" self.sendNotice.emit(code, RANDNICK) except: logging.warning("No randomEncounter set in userconfig?") @QtCore.pyqtSlot(QString, QString) def updateMsg(self, ver, url): if not hasattr(self, 'updatemenu'): self.updatemenu = None if not self.updatemenu: self.updatemenu = UpdatePesterchum(ver, url, self) self.updatemenu.accepted.connect(self.updatePC) self.updatemenu.rejected.connect(self.noUpdatePC) self.updatemenu.show() self.updatemenu.raise_() self.updatemenu.activateWindow() @QtCore.pyqtSlot() def updatePC(self): version.updateDownload(str(self.updatemenu.url)) self.updatemenu = None @QtCore.pyqtSlot() def noUpdatePC(self): self.updatemenu = None @QtCore.pyqtSlot() def checkPing(self): curtime = int(time()) if curtime - self.lastping > 600: self.pingServer.emit() def profile(self): return self.userprofile.chat def closeConversations(self, switch=False): if not hasattr(self, 'tabconvo'): self.tabconvo = None if self.tabconvo: self.tabconvo.close() else: for c in list(self.convos.values()): c.close() if self.tabmemo: if not switch: self.tabmemo.close() else: for m in self.tabmemo.convos: self.tabmemo.convos[m].sendtime() else: for m in list(self.memos.values()): if not switch: m.close() else: m.sendtime() def paintEvent(self, event): try: self.backgroundImage except: pass else: palette = QtGui.QPalette() palette.setBrush(QtGui.QPalette.Window, QtGui.QBrush(self.backgroundImage)) self.setPalette(palette) @QtCore.pyqtSlot() def closeToTray(self): # I'm just gonna include a toast here to make sure people don't get confused. :'3 t = self.tm.Toast("Notice:", "Pesterchum has been minimized to your tray. \ \n(This behavior is configurable in settings.)") t.show() self.hide() self.closeToTraySignal.emit() def closeEvent(self, event): # This gets called directly if Pesterchum is closed from the taskbar, annoyingly enough. if hasattr(self, 'trollslum') and self.trollslum: self.trollslum.close() try: setting = self.config.closeAction() except: logging.exception('') setting = 0 if setting == 0: # minimize to taskbar self.showMinimized() elif setting == 1: # minimize to tray self.closeToTray() elif setting == 2: # quit self.closeConversations() self.quit() # Shut down IRC & Pesterchum fully. self.closeSignal.emit() # <-- A close signal here on it's own shuts down QT but not the Python and the IRC connection :( event.accept() def newMessage(self, handle, msg): if handle in self.config.getBlocklist(): #yeah suck on this self.sendMessage.emit("PESTERCHUM:BLOCKED", handle) return # notify if self.config.notifyOptions() & self.config.NEWMSG: if handle not in self.convos: t = self.tm.Toast("New Conversation", "From: %s" % handle) t.show() elif not self.config.notifyOptions() & self.config.NEWCONVO: if msg[:11] != "PESTERCHUM:": if handle.upper() not in BOTNAMES: t = self.tm.Toast("From: %s" % handle, re.sub("", "", msg)) t.show() else: if msg == "PESTERCHUM:CEASE": t = self.tm.Toast("Closed Conversation", handle) t.show() elif msg == "PESTERCHUM:BLOCK": t = self.tm.Toast("Blocked", handle) t.show() elif msg == "PESTERCHUM:UNBLOCK": t = self.tm.Toast("Unblocked", handle) t.show() if handle not in self.convos: if msg == "PESTERCHUM:CEASE": # ignore cease after we hang up return matchingChums = [c for c in self.chumList.chums if c.handle == handle] if len(matchingChums) > 0: mood = matchingChums[0].mood else: mood = Mood(0) chum = PesterProfile(handle, mood=mood, chumdb=self.chumdb) self.newConversation(chum, False) if len(matchingChums) == 0: self.moodRequest.emit(chum) convo = self.convos[handle] convo.addMessage(msg, False) # play sound here if self.config.soundOn(): if self.config.chatSound() or convo.always_beep: if msg in ["PESTERCHUM:CEASE", "PESTERCHUM:BLOCK"]: self.ceasesound.play() else: self.alarm.play() def newMemoMsg(self, chan, handle, msg): if chan not in self.memos: # silently ignore in case we forgot to /part # TODO: This is really bad practice. Fix it later. return memo = self.memos[chan] msg = str(msg) if handle not in memo.times: # new chum! time current newtime = timedelta(0) time = TimeTracker(newtime) memo.times[handle] = time if not (msg.startswith("/me") or msg.startswith("PESTERCHUM:ME")): msg = addTimeInitial(msg, memo.times[handle].getGrammar()) if handle == "ChanServ": systemColor = QtGui.QColor(self.theme["memos/systemMsgColor"]) msg = "%s" % (systemColor.name(), msg) memo.addMessage(msg, handle) mentioned = False m = convertTags(msg, "text") if m.find(":") <= 3: m = m[m.find(":"):] for search in self.userprofile.getMentions(): if re.search(search, m): mentioned = True break if mentioned: if self.config.notifyOptions() & self.config.INITIALS: t = self.tm.Toast(chan, re.sub("", "", msg)) t.show() if self.config.soundOn(): if self.config.memoSound(): if self.config.nameSound(): if mentioned: self.namesound.play() return if not memo.notifications_muted: if self.honk and re.search(r"\bhonk\b", convertTags(msg, "text"), re.I): # TODO: I've got my eye on you, Gamzee. self.honksound.play() elif self.config.memoPing() or memo.always_beep: self.memosound.play() def changeColor(self, handle, color): # pesterconvo and chumlist self.chumList.updateColor(handle, color) if handle in self.convos: self.convos[handle].updateColor(color) self.chumdb.setColor(handle, color) def updateMood(self, handle, mood): # updates OTHER chums' moods oldmood = self.chumList.updateMood(handle, mood) if handle in self.convos: self.convos[handle].updateMood(mood, old=oldmood) if hasattr(self, 'trollslum') and self.trollslum: self.trollslum.updateMood(handle, mood) def newConversation(self, chum, initiated=True): if type(chum) in [str, str]: matchingChums = [c for c in self.chumList.chums if c.handle == chum] if len(matchingChums) > 0: mood = matchingChums[0].mood else: mood = Mood(2) chum = PesterProfile(chum, mood=mood, chumdb=self.chumdb) if len(matchingChums) == 0: self.moodRequest.emit(chum) if chum.handle in self.convos: self.convos[chum.handle].showChat() return if self.config.tabs(): if not self.tabconvo: self.createTabWindow() convoWindow = PesterConvo(chum, initiated, self, self.tabconvo) self.tabconvo.show() else: convoWindow = PesterConvo(chum, initiated, self) convoWindow.messageSent['QString', 'QString'].connect(self.sendMessage['QString', 'QString']) convoWindow.windowClosed['QString'].connect(self.closeConvo) self.convos[chum.handle] = convoWindow if str(chum.handle).upper() in BOTNAMES: convoWindow.toggleQuirks(True) convoWindow.quirksOff.setChecked(True) if str(chum.handle).upper() in CUSTOMBOTS: self.newConvoStarted.emit(QString(chum.handle), initiated) else: self.newConvoStarted.emit(QString(chum.handle), initiated) convoWindow.show() def createTabWindow(self): self.tabconvo = PesterTabWindow(self) self.tabconvo.windowClosed.connect(self.tabsClosed) def createMemoTabWindow(self): self.tabmemo = MemoTabWindow(self) self.tabmemo.windowClosed.connect(self.memoTabsClosed) @QtCore.pyqtSlot() def toggleConsole(self): if not _CONSOLE: # We don't have the module file for this at the moment. return win = self.console.window if win is None: # We have no console window; make one. logging.info("Making a console....") self.console.window = win = console.ConsoleWindow(parent=self) logging.info("Console made.") # 'ConsoleWindow' object has no attribute 'windowClosed' win.finished.connect(self.consoleWindowClosed) self.console.shortcuts.curwgt.activated.connect(win.designateCurrentWidget) if self.console.is_open: for wgt in win.findChildren(QtWidgets.QWidget): try: focused = wgt.hasFocus() except AttributeError: # The widget doesn't have a hasFocus method. # Just to reduce ambiguity focused = False # Try the next one. continue # No error, let's see if we're actually focused. if focused: logging.debug( "{0!r} is in focus (parent: {1!r}); hiding".format( wgt, wgt.parent()) ) # This widget, a child of our console, has focus. # So...the console has focus. # Set focus to the text input just for good measure. win.text.input.setFocus() # ...then hide it all. win.hide() self.console.is_open = False break else: # The console is open, but not in focus. Bring it to the fore. # NOTE: This is a bit of a kludgy method - it may not work # properly on Windows. Need to look into workarounds. # # karxi: I *think* that Windows doesn't mind if the # process/window that 'owns' this one changes our focus, since # the application ultimately already *has* our focus - but I'm # not sure. logging.debug("Console isn't in focus; fixing") win.raise_() win.show() win.activateWindow() win.text.input.setFocus() # No need to explicitly set it as open; it already is. else: logging.debug("Console not visible; showing") # Console isn't visible - show it. win.show() self.console.is_open = True @QtCore.pyqtSlot() def consoleWindowClosed(self): self.console.is_open = False self.console.window = None logging.info("Console closed.") def newMemo(self, channel, timestr, secret=False, invite=False): if channel == "#pesterchum": return if channel in self.memos: self.memos[channel].showChat() return # do slider dialog then set if self.config.tabMemos(): if not self.tabmemo: self.createMemoTabWindow() memoWindow = PesterMemo(channel, timestr, self, self.tabmemo) self.tabmemo.show() else: memoWindow = PesterMemo(channel, timestr, self, None) # connect signals self.inviteOnlyChan['QString'].connect(memoWindow.closeInviteOnly) memoWindow.messageSent['QString', 'QString'].connect(self.sendMessage['QString', 'QString']) memoWindow.windowClosed['QString'].connect(self.closeMemo) self.namesUpdated['QString'].connect(memoWindow.namesUpdated) self.modesUpdated['QString', 'QString'].connect(memoWindow.modesUpdated) self.userPresentSignal['QString', 'QString', 'QString'].connect(memoWindow.userPresentChange) # chat client send memo open self.memos[channel] = memoWindow self.joinChannel.emit(channel) # race condition? self.secret = secret if self.secret: self.secret = True self.setChannelMode.emit(channel, "+s", "") if invite: self.setChannelMode.emit(channel, "+i", "") memoWindow.sendTimeInfo() memoWindow.show() def addChum(self, chum): self.chumList.addChum(chum) self.config.addChum(chum) self.moodRequest.emit(chum) def addGroup(self, gname): self.config.addGroup(gname) gTemp = self.config.getGroups() self.chumList.groups = [g[0] for g in gTemp] self.chumList.openGroups = [g[1] for g in gTemp] self.chumList.moveGroupMenu() self.chumList.showAllGroups() if not self.config.showEmptyGroups(): self.chumList.hideEmptyGroups() if self.config.showOnlineNumbers(): self.chumList.showOnlineNumbers() def changeProfile(self, collision=None): if not hasattr(self, 'chooseprofile'): self.chooseprofile = None if not self.chooseprofile: self.chooseprofile = PesterChooseProfile(self.userprofile, self.config, self.theme, self, collision=collision) self.chooseprofile.exec_() def themePicker(self): if not hasattr(self, 'choosetheme'): self.choosetheme = None if not self.choosetheme: self.choosetheme = PesterChooseTheme(self.config, self.theme, self) self.choosetheme.exec_() def initTheme(self, theme): self.resize(*theme["main/size"]) self.setWindowIcon(PesterIcon(theme["main/icon"])) self.setWindowTitle(theme["main/windowtitle"]) self.setStyleSheet("QtWidgets.QFrame#main { %s }" % (theme["main/style"])) self.backgroundImage = QtGui.QPixmap(theme["main/background-image"]) self.backgroundMask = self.backgroundImage.mask() self.setMask(self.backgroundMask) self.menu.setStyleSheet("QMenuBar { background: transparent; %s } QMenuBar::item { background: transparent; %s } " % (theme["main/menubar/style"], theme["main/menu/menuitem"]) + "QMenu { background: transparent; %s } QMenu::item::selected { %s } QMenu::item::disabled { %s }" % (theme["main/menu/style"], theme["main/menu/selected"], theme["main/menu/disabled"])) newcloseicon = PesterIcon(theme["main/close/image"]) self.closeButton.setIcon(newcloseicon) self.closeButton.setIconSize(newcloseicon.realsize()) self.closeButton.resize(newcloseicon.realsize()) self.closeButton.move(*theme["main/close/loc"]) newminiicon = PesterIcon(theme["main/minimize/image"]) self.miniButton.setIcon(newminiicon) self.miniButton.setIconSize(newminiicon.realsize()) self.miniButton.resize(newminiicon.realsize()) self.miniButton.move(*theme["main/minimize/loc"]) # menus self.menu.move(*theme["main/menu/loc"]) self.talk.setText(theme["main/menus/client/talk"]) self.logv.setText(theme["main/menus/client/logviewer"]) self.grps.setText(theme["main/menus/client/addgroup"]) self.rand.setText(self.theme["main/menus/client/randen"]) self.opts.setText(theme["main/menus/client/options"]) self.exitaction.setText(theme["main/menus/client/exit"]) self.userlistaction.setText(theme["main/menus/client/userlist"]) self.memoaction.setText(theme["main/menus/client/memos"]) self.importaction.setText(theme["main/menus/client/import"]) self.idleaction.setText(theme["main/menus/client/idle"]) self.reconnectAction.setText(theme["main/menus/client/reconnect"]) self.filemenu.setTitle(theme["main/menus/client/_name"]) self.changequirks.setText(theme["main/menus/profile/quirks"]) self.loadslum.setText(theme["main/menus/profile/block"]) self.changecoloraction.setText(theme["main/menus/profile/color"]) self.switch.setText(theme["main/menus/profile/switch"]) self.profilemenu.setTitle(theme["main/menus/profile/_name"]) self.aboutAction.setText(self.theme["main/menus/help/about"]) self.helpAction.setText(self.theme["main/menus/help/help"]) self.botAction.setText(self.theme["main/menus/help/calsprite"]) self.chanServAction.setText(self.theme["main/menus/help/chanserv"]) self.nickServAction.setText(self.theme["main/menus/help/nickserv"]) self.helpmenu.setTitle(self.theme["main/menus/help/_name"]) # Console ## if self.theme.has_key("main/menus/client/console"): ## self.console.action.setText(self.theme["main/menus/client/console"]) ## else: ## self.console.action.setText("Console") # has_key doesn't work out here for some reason, possibly because of inherits? try: self.console.action.setText(self.theme["main/menus/client/console"]) except: self.console.action.setText("Console") try: self.reportBugAction.setText(self.theme["main/menus/help/reportbug"]) except: self.reportBugAction.setText("REPORT BUG") try: self.xyzRulesAction.setText(self.theme["main/menus/help/rules"]) except: self.xyzRulesAction.setText("RULES") # moods self.moodsLabel.setText(theme["main/moodlabel/text"]) self.moodsLabel.move(*theme["main/moodlabel/loc"]) self.moodsLabel.setStyleSheet(theme["main/moodlabel/style"]) if hasattr(self, 'moods'): self.moods.removeButtons() mood_list = theme["main/moods"] mood_list = [dict([(str(k),v) for (k,v) in d.items()]) for d in mood_list] self.moods = PesterMoodHandler(self, *[PesterMoodButton(self, **d) for d in mood_list]) self.moods.showButtons() # chum addChumStyle = "QPushButton { %s }" % (theme["main/addchum/style"]) if "main/addchum/pressed" in theme: addChumStyle += "QPushButton:pressed { %s }" % (theme["main/addchum/pressed"]) pesterButtonStyle = "QPushButton { %s }" % (theme["main/pester/style"]) if "main/pester/pressed" in theme: pesterButtonStyle += "QPushButton:pressed { %s }" % (theme["main/pester/pressed"]) blockButtonStyle = "QPushButton { %s }" % (theme["main/block/style"]) if "main/block/pressed" in theme: pesterButtonStyle += "QPushButton:pressed { %s }" % (theme["main/block/pressed"]) self.addChumButton.setText(theme["main/addchum/text"]) self.addChumButton.resize(*theme["main/addchum/size"]) self.addChumButton.move(*theme["main/addchum/loc"]) self.addChumButton.setStyleSheet(addChumStyle) self.pesterButton.setText(theme["main/pester/text"]) self.pesterButton.resize(*theme["main/pester/size"]) self.pesterButton.move(*theme["main/pester/loc"]) self.pesterButton.setStyleSheet(pesterButtonStyle) self.blockButton.setText(theme["main/block/text"]) self.blockButton.resize(*theme["main/block/size"]) self.blockButton.move(*theme["main/block/loc"]) self.blockButton.setStyleSheet(blockButtonStyle) # buttons self.mychumhandleLabel.setText(theme["main/mychumhandle/label/text"]) self.mychumhandleLabel.move(*theme["main/mychumhandle/label/loc"]) self.mychumhandleLabel.setStyleSheet(theme["main/mychumhandle/label/style"]) self.mychumhandle.setText(self.profile().handle) self.mychumhandle.move(*theme["main/mychumhandle/handle/loc"]) self.mychumhandle.resize(*theme["main/mychumhandle/handle/size"]) self.mychumhandle.setStyleSheet(theme["main/mychumhandle/handle/style"]) self.mychumcolor.resize(*theme["main/mychumhandle/colorswatch/size"]) self.mychumcolor.move(*theme["main/mychumhandle/colorswatch/loc"]) self.mychumcolor.setStyleSheet("background: %s" % (self.profile().colorhtml())) # I don't know why "if "main/mychumhandle/currentMood" in self.theme:" doesn't work, # But this seems to work just as well :3c # GWAHH why does inheriting not work with this = self.idler.threshold: # We've been idle for long enough to fall automatically idle. self.idler.auto = True # We don't need this anymore. self.idler.time = 0 # Make it clear that we're idle. self.setAway.emit(True) self.randhandler.setIdle(True) self._sendIdleMsgs() def _sendIdleMsgs(self): # Tell everyone we're in a chat with that we just went idle. sysColor = QtGui.QColor(self.theme["convo/systemMsgColor"]) verb = self.theme["convo/text/idle"] for (h, convo) in self.convos.items(): # karxi: There's an irritating issue here involving a lack of # consideration for case-sensitivity. # This fix is a little sloppy, and I need to look into what it # might affect, but I've been using it for months and haven't # noticed any issues.... handle = convo.chum.handle if self.isBot(handle): # Don't send these idle messages. continue # karxi: Now we just use 'handle' instead of 'h'. if convo.chumopen: msg = self.profile().idlemsg(sysColor, verb) convo.textArea.append(convertTags(msg)) self.chatlog.log(handle, msg) self.sendMessage.emit("PESTERCHUM:IDLE", handle) # Presented here so it can be called by other scripts. @staticmethod def isBot(handle): return handle.upper() in BOTNAMES @QtCore.pyqtSlot() def importExternalConfig(self): f = QtWidgets.QFileDialog.getOpenFileName(self)[0] if f == "": return fp = open(f, 'r') regexp_state = None for l in fp: # import chumlist l = l.rstrip() chum_mo = re.match("handle: ([A-Za-z0-9]+)", l) if chum_mo is not None: chum = PesterProfile(chum_mo.group(1)) self.addChum(chum) continue if regexp_state is not None: replace_mo = re.match("replace: (.+)", l) if replace_mo is not None: replace = replace_mo.group(1) try: re.compile(regexp_state) except re.error as e: continue newquirk = pesterQuirk({"type": "regexp", "from": regexp_state, "to": replace}) qs = self.userprofile.quirks qs.addQuirk(newquirk) self.userprofile.setQuirks(qs) regexp_state = None continue search_mo = re.match("search: (.+)", l) if search_mo is not None: regexp_state = search_mo.group(1) continue other_mo = re.match("(prefix|suffix): (.+)", l) if other_mo is not None: newquirk = pesterQuirk({"type": other_mo.group(1), "value": other_mo.group(2)}) qs = self.userprofile.quirks qs.addQuirk(newquirk) self.userprofile.setQuirks(qs) @QtCore.pyqtSlot() def showMemos(self, channel=""): if not hasattr(self, 'memochooser'): self.memochooser = None if self.memochooser: return self.memochooser = PesterMemoList(self, channel) self.memochooser.accepted.connect(self.joinSelectedMemo) self.memochooser.rejected.connect(self.memoChooserClose) self.requestChannelList.emit() self.memochooser.show() @QtCore.pyqtSlot() def joinSelectedMemo(self): time = str(self.memochooser.timeinput.text()) secret = self.memochooser.secretChannel.isChecked() invite = self.memochooser.inviteChannel.isChecked() # Join the ones on the list first for SelectedMemo in self.memochooser.SelectedMemos(): channel = "#"+str(SelectedMemo.target) self.newMemo(channel, time) if self.memochooser.newmemoname(): newmemo = self.memochooser.newmemoname() channel = str(newmemo).replace(" ", "_") channel = re.sub(r"[^A-Za-z0-9#_\,]", "", channel) # Allow us to join more than one with this. chans = channel.split(',') # Filter out empty entries. chans = [_f for _f in chans if _f] for c in chans: c = '#' + c # We should really change this code to only make the memo once # the server has confirmed that we've joined.... self.newMemo(c, time, secret=secret, invite=invite) self.memochooser = None @QtCore.pyqtSlot() def memoChooserClose(self): self.memochooser = None @QtCore.pyqtSlot(PesterList) def updateChannelList(self, channels): if hasattr(self, 'memochooser') and self.memochooser: self.memochooser.updateChannels(channels) @QtCore.pyqtSlot() def showAllUsers(self): if not hasattr(self, 'allusers'): self.allusers = None if not self.allusers: self.allusers = PesterUserlist(self.config, self.theme, self) self.allusers.accepted.connect(self.userListClose) self.allusers.rejected.connect(self.userListClose) self.allusers.addChum['QString'].connect(self.userListAdd) self.allusers.pesterChum['QString'].connect(self.userListPester) self.requestNames.emit("#pesterchum") self.allusers.show() @QtCore.pyqtSlot(QString) def userListAdd(self, handle): h = str(handle) chum = PesterProfile(h, chumdb=self.chumdb) self.addChum(chum) @QtCore.pyqtSlot(QString) def userListPester(self, handle): h = str(handle) self.newConversation(h) @QtCore.pyqtSlot() def userListClose(self): self.allusers = None @QtCore.pyqtSlot() def openQuirks(self): if not hasattr(self, 'quirkmenu'): self.quirkmenu = None if not self.quirkmenu: self.quirkmenu = PesterChooseQuirks(self.config, self.theme, self) self.quirkmenu.accepted.connect(self.updateQuirks) self.quirkmenu.rejected.connect(self.closeQuirks) self.quirkmenu.show() self.quirkmenu.raise_() self.quirkmenu.activateWindow() @QtCore.pyqtSlot() def updateQuirks(self): for i in range(self.quirkmenu.quirkList.topLevelItemCount()): curgroup = str(self.quirkmenu.quirkList.topLevelItem(i).text(0)) for j in range(self.quirkmenu.quirkList.topLevelItem(i).childCount()): item = self.quirkmenu.quirkList.topLevelItem(i).child(j) item.quirk.quirk["on"] = item.quirk.on = (item.checkState(0) == QtCore.Qt.Checked) item.quirk.quirk["group"] = item.quirk.group = curgroup quirks = pesterQuirks(self.quirkmenu.quirks()) self.userprofile.setQuirks(quirks) if hasattr(self.quirkmenu, 'quirktester') and self.quirkmenu.quirktester: self.quirkmenu.quirktester.close() self.quirkmenu = None @QtCore.pyqtSlot() def closeQuirks(self): if hasattr(self.quirkmenu, 'quirktester') and self.quirkmenu.quirktester: self.quirkmenu.quirktester.close() self.quirkmenu = None @QtCore.pyqtSlot() def openChat(self): if not hasattr(self, "openchatdialog"): self.openchatdialog = None if not self.openchatdialog: (chum, ok) = QtWidgets.QInputDialog.getText(self, "Pester Chum", "Enter a handle to pester:") try: if ok: self.newConversation(str(chum)) except: pass finally: self.openchatdialog = None @QtCore.pyqtSlot() def openLogv(self): if not hasattr(self, 'logusermenu'): self.logusermenu = None if not self.logusermenu: self.logusermenu = PesterLogUserSelect(self.config, self.theme, self) self.logusermenu.accepted.connect(self.closeLogUsers) self.logusermenu.rejected.connect(self.closeLogUsers) self.logusermenu.show() self.logusermenu.raise_() self.logusermenu.activateWindow() @QtCore.pyqtSlot() def closeLogUsers(self): self.logusermenu.close() self.logusermenu = None @QtCore.pyqtSlot() def addGroupWindow(self): if not hasattr(self, 'addgroupdialog'): self.addgroupdialog = None if not self.addgroupdialog: (gname, ok) = QtWidgets.QInputDialog.getText(self, "Add Group", "Enter a name for the new group:") if ok: gname = str(gname) if re.search("[^A-Za-z0-9_\s]", gname) is not None: msgbox = QtWidgets.QMessageBox() msgbox.setInformativeText("THIS IS NOT A VALID GROUP NAME") msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) msgbox.setStyleSheet("QMessageBox{" + self.theme["main/defaultwindow/style"] + "}")#Style :) (memos/style or convo/style works :3 ) ret = msgbox.exec_() self.addgroupdialog = None return self.addGroup(gname) self.addgroupdialog = None @QtCore.pyqtSlot() def openOpts(self): if not hasattr(self, 'optionmenu'): self.optionmenu = None if not self.optionmenu: self.optionmenu = PesterOptions(self.config, self.theme, self) self.optionmenu.accepted.connect(self.updateOptions) self.optionmenu.rejected.connect(self.closeOptions) self.optionmenu.show() self.optionmenu.raise_() self.optionmenu.activateWindow() @QtCore.pyqtSlot() def closeOptions(self): self.optionmenu.close() self.optionmenu = None @QtCore.pyqtSlot() def updateOptions(self): try: # tabs curtab = self.config.tabs() tabsetting = self.optionmenu.tabcheck.isChecked() if curtab and not tabsetting: # split tabs into windows windows = [] if self.tabconvo: windows = list(self.tabconvo.convos.values()) for w in windows: w.setParent(None) w.show() w.raiseChat() if self.tabconvo: self.tabconvo.closeSoft() # save options self.config.set("tabs", tabsetting) elif tabsetting and not curtab: # combine self.createTabWindow() newconvos = {} for (h,c) in self.convos.items(): c.setParent(self.tabconvo) self.tabconvo.addChat(c) self.tabconvo.show() newconvos[h] = c self.convos = newconvos # save options self.config.set("tabs", tabsetting) # tabs memos curtabmemo = self.config.tabMemos() tabmemosetting = self.optionmenu.tabmemocheck.isChecked() if curtabmemo and not tabmemosetting: # split tabs into windows windows = [] if self.tabmemo: windows = list(self.tabmemo.convos.values()) for w in windows: w.setParent(None) w.show() w.raiseChat() if self.tabmemo: self.tabmemo.closeSoft() # save options self.config.set("tabmemos", tabmemosetting) elif tabmemosetting and not curtabmemo: # combine newmemos = {} self.createMemoTabWindow() for (h,m) in self.memos.items(): m.setParent(self.tabmemo) self.tabmemo.addChat(m) self.tabmemo.show() newmemos[h] = m self.memos = newmemos # save options self.config.set("tabmemos", tabmemosetting) # hidden chums chumsetting = self.optionmenu.hideOffline.isChecked() curchum = self.config.hideOfflineChums() if curchum and not chumsetting: self.chumList.showAllChums() elif chumsetting and not curchum: self.chumList.hideOfflineChums() self.config.set("hideOfflineChums", chumsetting) # sorting method sortsetting = self.optionmenu.sortBox.currentIndex() cursort = self.config.sortMethod() self.config.set("sortMethod", sortsetting) if sortsetting != cursort: self.chumList.sort() # sound soundsetting = self.optionmenu.soundcheck.isChecked() self.config.set("soundon", soundsetting) chatsoundsetting = self.optionmenu.chatsoundcheck.isChecked() curchatsound = self.config.chatSound() if chatsoundsetting != curchatsound: self.config.set('chatSound', chatsoundsetting) memosoundsetting = self.optionmenu.memosoundcheck.isChecked() curmemosound = self.config.memoSound() if memosoundsetting != curmemosound: self.config.set('memoSound', memosoundsetting) memopingsetting = self.optionmenu.memopingcheck.isChecked() curmemoping = self.config.memoPing() if memopingsetting != curmemoping: self.config.set('pingSound', memopingsetting) namesoundsetting = self.optionmenu.namesoundcheck.isChecked() curnamesound = self.config.nameSound() if namesoundsetting != curnamesound: self.config.set('nameSound', namesoundsetting) volumesetting = self.optionmenu.volume.value() curvolume = self.config.volume() if volumesetting != curvolume: self.config.set('volume', volumesetting) self.setVolume(volumesetting) # timestamps timestampsetting = self.optionmenu.timestampcheck.isChecked() self.config.set("showTimeStamps", timestampsetting) timeformatsetting = str(self.optionmenu.timestampBox.currentText()) if timeformatsetting == "12 hour": self.config.set("time12Format", True) else: self.config.set("time12Format", False) secondssetting = self.optionmenu.secondscheck.isChecked() self.config.set("showSeconds", secondssetting) # groups #groupssetting = self.optionmenu.groupscheck.isChecked() #self.config.set("useGroups", groupssetting) emptygroupssetting = self.optionmenu.showemptycheck.isChecked() curemptygroup = self.config.showEmptyGroups() if curemptygroup and not emptygroupssetting: self.chumList.hideEmptyGroups() elif emptygroupssetting and not curemptygroup: self.chumList.showAllGroups() self.config.set("emptyGroups", emptygroupssetting) # online numbers onlinenumsetting = self.optionmenu.showonlinenumbers.isChecked() curonlinenum = self.config.showOnlineNumbers() if onlinenumsetting and not curonlinenum: self.chumList.showOnlineNumbers() elif curonlinenum and not onlinenumsetting: self.chumList.hideOnlineNumbers() self.config.set("onlineNumbers", onlinenumsetting) # logging logpesterssetting = 0 if self.optionmenu.logpesterscheck.isChecked(): logpesterssetting = logpesterssetting | self.config.LOG if self.optionmenu.stamppestercheck.isChecked(): logpesterssetting = logpesterssetting | self.config.STAMP curlogpesters = self.config.logPesters() if logpesterssetting != curlogpesters: self.config.set('logPesters', logpesterssetting) logmemossetting = 0 if self.optionmenu.logmemoscheck.isChecked(): logmemossetting = logmemossetting | self.config.LOG if self.optionmenu.stampmemocheck.isChecked(): logmemossetting = logmemossetting | self.config.STAMP curlogmemos = self.config.logMemos() if logmemossetting != curlogmemos: self.config.set('logMemos', logmemossetting) # memo and user links linkssetting = self.optionmenu.userlinkscheck.isChecked() curlinks = self.config.disableUserLinks() if linkssetting != curlinks: self.config.set('userLinks', not linkssetting) # idle time idlesetting = self.optionmenu.idleBox.value() curidle = self.config.idleTime() if idlesetting != curidle: self.config.set('idleTime', idlesetting) self.idler.threshold = 60*idlesetting # theme ghostchumsetting = self.optionmenu.ghostchum.isChecked() curghostchum = self.config.ghostchum() self.config.set('ghostchum', ghostchumsetting) self.themeSelected(ghostchumsetting != curghostchum) # randoms if self.randhandler.running: self.randhandler.setRandomer(self.optionmenu.randomscheck.isChecked()) # button actions minisetting = self.optionmenu.miniBox.currentIndex() curmini = self.config.minimizeAction() if minisetting != curmini: self.config.set('miniAction', minisetting) self.setButtonAction(self.miniButton, minisetting, curmini) closesetting = self.optionmenu.closeBox.currentIndex() curclose = self.config.closeAction() if closesetting != curclose: self.config.set('closeAction', closesetting) self.setButtonAction(self.closeButton, closesetting, curclose) # op and voice messages opvmesssetting = self.optionmenu.memomessagecheck.isChecked() curopvmess = self.config.opvoiceMessages() if opvmesssetting != curopvmess: self.config.set('opvMessages', opvmesssetting) # animated smiles if ostools.isOSXBundle(): animatesetting = False; else: animatesetting = self.optionmenu.animationscheck.isChecked() curanimate = self.config.animations() if animatesetting != curanimate: self.config.set('animations', animatesetting) self.animationSetting.emit(animatesetting) # update checked #updatechecksetting = self.optionmenu.updateBox.currentIndex() #curupdatecheck = self.config.checkForUpdates() #if updatechecksetting != curupdatecheck: # self.config.set('checkUpdates', updatechecksetting) # mspa update check #if ostools.isOSXLeopard(): # mspachecksetting = false #else: # mspachecksetting = self.optionmenu.mspaCheck.isChecked() #curmspacheck = self.config.checkMSPA() #if mspachecksetting != curmspacheck: # self.config.set('mspa', mspachecksetting) # Taskbar blink blinksetting = 0 if self.optionmenu.pesterBlink.isChecked(): blinksetting |= self.config.PBLINK if self.optionmenu.memoBlink.isChecked(): blinksetting |= self.config.MBLINK curblink = self.config.blink() if blinksetting != curblink: self.config.set('blink', blinksetting) # toast notifications self.tm.setEnabled(self.optionmenu.notifycheck.isChecked()) self.tm.setCurrentType(str(self.optionmenu.notifyOptions.currentText())) notifysetting = 0 if self.optionmenu.notifySigninCheck.isChecked(): notifysetting |= self.config.SIGNIN if self.optionmenu.notifySignoutCheck.isChecked(): notifysetting |= self.config.SIGNOUT if self.optionmenu.notifyNewMsgCheck.isChecked(): notifysetting |= self.config.NEWMSG if self.optionmenu.notifyNewConvoCheck.isChecked(): notifysetting |= self.config.NEWCONVO if self.optionmenu.notifyMentionsCheck.isChecked(): notifysetting |= self.config.INITIALS curnotify = self.config.notifyOptions() if notifysetting != curnotify: self.config.set('notifyOptions', notifysetting) # low bandwidth bandwidthsetting = self.optionmenu.bandwidthcheck.isChecked() curbandwidth = self.config.lowBandwidth() if bandwidthsetting != curbandwidth: self.config.set('lowBandwidth', bandwidthsetting) if bandwidthsetting: self.leftChannel.emit("#pesterchum") else: self.joinChannel.emit("#pesterchum") # nickserv autoidentify = self.optionmenu.autonickserv.isChecked() nickservpass = self.optionmenu.nickservpass.text() self.userprofile.setAutoIdentify(autoidentify) self.userprofile.setNickServPass(str(nickservpass)) # auto join memos autojoins = [] for i in range(self.optionmenu.autojoinlist.count()): autojoins.append(str(self.optionmenu.autojoinlist.item(i).text())) self.userprofile.setAutoJoins(autojoins) # advanced ## user mode if self.advanced: newmodes = self.optionmenu.modechange.text() if newmodes: self.setChannelMode.emit(self.profile().handle, newmodes, "") except Exception as e: logging.error(e) finally: self.optionmenu = None def setButtonAction(self, button, setting, old): if old == 0: # minimize to taskbar button.clicked.disconnect(self.showMinimized) elif old == 1: # minimize to tray button.clicked.disconnect(self.closeToTray) elif old == 2: # quit button.clicked.disconnect(self.app.quit) if setting == 0: # minimize to taskbar button.clicked.connect(self.showMinimized) elif setting == 1: # minimize to tray button.clicked.connect(self.closeToTray) elif setting == 2: # quit button.clicked.connect(self.app.quit) @QtCore.pyqtSlot() def themeSelectOverride(self): self.themeSelected(self.theme.name) @QtCore.pyqtSlot() def themeSelected(self, override=False): if not override: themename = str(self.optionmenu.themeBox.currentText()) else: themename = override if override or themename != self.theme.name: try: self.changeTheme(pesterTheme(themename)) except ValueError as e: themeWarning = QtWidgets.QMessageBox(self) themeWarning.setText("Theme Error: %s" % (e)) themeWarning.exec_() self.choosetheme = None return # update profile self.userprofile.setTheme(self.theme) self.choosetheme = None @QtCore.pyqtSlot() def closeTheme(self): self.choosetheme = None @QtCore.pyqtSlot() def profileSelected(self): if self.chooseprofile.profileBox and \ self.chooseprofile.profileBox.currentIndex() > 0: handle = str(self.chooseprofile.profileBox.currentText()) if handle == self.profile().handle: self.chooseprofile = None return self.userprofile = userProfile(handle) self.changeTheme(self.userprofile.getTheme()) else: handle = str(self.chooseprofile.chumHandle.text()) if handle == self.profile().handle: self.chooseprofile = None return profile = PesterProfile(handle, self.chooseprofile.chumcolor) self.userprofile = userProfile.newUserProfile(profile) self.changeTheme(self.userprofile.getTheme()) self.chatlog.close() self.chatlog = PesterLog(handle, self) # is default? if self.chooseprofile.defaultcheck.isChecked(): self.config.set("defaultprofile", self.userprofile.chat.handle) if hasattr(self, 'trollslum') and self.trollslum: self.trollslum.close() self.chooseprofile = None self.profileChanged.emit() @QtCore.pyqtSlot() def showTrollSlum(self): if not hasattr(self, 'trollslum'): self.trollslum = None if self.trollslum: return trolls = [PesterProfile(h) for h in self.config.getBlocklist()] self.trollslum = TrollSlumWindow(trolls, self) self.trollslum.blockChumSignal['QString'].connect(self.blockChum) self.trollslum.unblockChumSignal['QString'].connect(self.unblockChum) self.moodsRequest.emit(PesterList(trolls)) self.trollslum.show() @QtCore.pyqtSlot() def closeTrollSlum(self): self.trollslum = None @QtCore.pyqtSlot() def changeMyColor(self): if not hasattr(self, 'colorDialog'): self.colorDialog = None if self.colorDialog: return self.colorDialog = QtWidgets.QColorDialog(self) color = self.colorDialog.getColor(initial=self.profile().color) if not color.isValid(): color = self.profile().color self.mychumcolor.setStyleSheet("background: %s" % color.name()) self.userprofile.setColor(color) self.mycolorUpdated.emit() self.colorDialog = None @QtCore.pyqtSlot() def closeProfile(self): self.chooseprofile = None @QtCore.pyqtSlot() def switchProfile(self): if self.convos: closeWarning = QtWidgets.QMessageBox() closeWarning.setText("WARNING: CHANGING PROFILES WILL CLOSE ALL CONVERSATION WINDOWS!") closeWarning.setInformativeText("i warned you about windows bro!!!! i told you dog!") closeWarning.setStandardButtons(QtWidgets.QMessageBox.Cancel | QtWidgets.QMessageBox.Ok) closeWarning.setDefaultButton(QtWidgets.QMessageBox.Ok) ret = closeWarning.exec_() if ret == QtWidgets.QMessageBox.Cancel: return self.changeProfile() # Update RE bot try: if self.userprofile.getRandom(): code = "+" else: code = "-" self.sendNotice.emit(code, RANDNICK) except: logging.warning("No randomEncounter set in userconfig?") def aboutPesterchum(self): if hasattr(self, 'aboutwindow') and self.aboutwindow: return self.aboutwindow = AboutPesterchum(self) self.aboutwindow.exec_() self.aboutwindow = None @QtCore.pyqtSlot() def loadCalsprite(self): self.newConversation("calSprite") @QtCore.pyqtSlot() def loadChanServ(self): self.newConversation("chanServ") @QtCore.pyqtSlot() def loadNickServ(self): self.newConversation("nickServ") @QtCore.pyqtSlot() def launchHelp(self): QtGui.QDesktopServices.openUrl(QtCore.QUrl("https://github.com/Dpeta/pesterchum-alt-servers/issues", QtCore.QUrl.TolerantMode)) QtGui.QDesktopServices.openUrl(QtCore.QUrl("https://forum.homestuck.xyz/viewtopic.php?f=7&t=467", QtCore.QUrl.TolerantMode)) @QtCore.pyqtSlot() def reportBug(self): QtGui.QDesktopServices.openUrl(QtCore.QUrl("https://github.com/Dpeta/pesterchum-alt-servers/issues", QtCore.QUrl.TolerantMode)) @QtCore.pyqtSlot() def xyzRules(self): QtGui.QDesktopServices.openUrl(QtCore.QUrl("https://www.pesterchum.xyz/pesterchum-rules", QtCore.QUrl.TolerantMode)) @QtCore.pyqtSlot(QString, QString) def nickCollision(self, handle, tmphandle): self.mychumhandle.setText(tmphandle) self.userprofile = userProfile(PesterProfile("pesterClient%d" % (random.randint(100,999)), QtGui.QColor("black"), Mood(0))) self.changeTheme(self.userprofile.getTheme()) if not hasattr(self, 'chooseprofile'): self.chooseprofile = None if not self.chooseprofile: h = str(handle) self.changeProfile(collision=h) @QtCore.pyqtSlot(QString) def myHandleChanged(self, handle): if self.profile().handle == handle: self.doAutoIdentify() self.doAutoJoins() return else: self.nickCollision(self.profile().handle, handle) @QtCore.pyqtSlot() def pickTheme(self): self.themePicker() @QtCore.pyqtSlot(QtWidgets.QSystemTrayIcon.ActivationReason) def systemTrayActivated(self, reason): if reason == QtWidgets.QSystemTrayIcon.Trigger: self.systemTrayFunction() elif reason == QtWidgets.QSystemTrayIcon.Context: pass # show context menu i guess #self.showTrayContext.emit() @QtCore.pyqtSlot() def tooManyPeeps(self): msg = QtWidgets.QMessageBox(self) msg.setText("D: TOO MANY PEOPLE!!!") msg.setInformativeText("The server has hit max capacity. Please try again later.") msg.show() @QtCore.pyqtSlot() def quit(self): try: pesterchum.irc.quit_dc() # Actually send QUIT to server except: # Not connected. pass pesterchum.trayicon.hide() # pesterchum.app.quit() # def passIRC(self, irc): self.irc = irc def updateServerJson(self): logging.info(self.customServerPrompt_qline.text() + " chosen") server_and_port = self.customServerPrompt_qline.text().split(':') try: server = { "server": server_and_port[0], "port": int(server_and_port[1]),# to make sure port is a valid integer, and raise an exception if it cannot be converted. "TLS": self.TLS_checkbox.isChecked() } logging.info("server: "+str(server)) except: msgbox = QtWidgets.QMessageBox() msgbox.setStyleSheet("QMessageBox{" + self.theme["main/defaultwindow/style"] + "}") msgbox.setWindowIcon(PesterIcon(self.theme["main/icon"])) msgbox.setInformativeText("Incorrect format :(") msgbox.setStandardButtons(QtWidgets.QMessageBox.Ok) ret = msgbox.exec_() self.chooseServer() return 1 with open(_datadir + "serverlist.json", "r") as server_file: read_file = server_file.read() server_file.close() server_list_obj = json.loads(read_file) server_list_obj.append(server) try: with open(_datadir + "serverlist.json", "w") as server_file: server_file.write(json.dumps(server_list_obj, indent = 4)) server_file.close() except: logging.error("failed") # Go back to original screen self.chooseServer() def resetServerlist(self): default_server_list = [{ "server": "irc.pesterchum.xyz", "port": "6697", "TLS": True }] if os.path.isfile(_datadir + "serverlist.json"): logging.error("Failed to load server list from serverlist.json.") msgbox = QtWidgets.QMessageBox() msgbox.setStyleSheet("QMessageBox{" + self.theme["main/defaultwindow/style"] + "}") msgbox.setWindowIcon(PesterIcon(self.theme["main/icon"])) msgbox.setInformativeText("Failed to load server list, do you wish to revert to defaults?\n" \ + "If you choose no, Pesterchum will most likely crash unless you manually fix serverlist.json\n" \ + "Please tell me if this error occurs :'3") msgbox.addButton(QtWidgets.QPushButton("Yes"), QtWidgets.QMessageBox.YesRole) msgbox.addButton(QtWidgets.QPushButton("No"), QtWidgets.QMessageBox.NoRole) ret = msgbox.exec_() reply = msgbox.buttonRole(msgbox.clickedButton()) if (reply==QtWidgets.QMessageBox.YesRole): with open(_datadir + "serverlist.json", "w") as server_file: server_file.write(json.dumps(default_server_list, indent = 4) ) server_file.close() else: logging.warning("Failed to load server list because serverlist.json doesn't exist, " \ + "this isn't an issue if this is the first time Pesterchum has been started.") with open(_datadir + "serverlist.json", "w") as server_file: server_file.write(json.dumps(default_server_list, indent = 4) ) server_file.close() self.chooseServer() def removeServer(self): server_list_items = [] try: with open(_datadir + "serverlist.json", "r") as server_file: read_file = server_file.read() server_file.close() server_list_obj = json.loads(read_file) for i in range(len(server_list_obj)): server_list_items.append(server_list_obj[i]["server"]) except: if self.chooseServerAskedToReset == False: self.chooseServerAskedToReset = True self.resetServerlist() return 1 selected_entry = None for i in range(len(server_list_obj)): if server_list_obj[i]["server"] == self.removeServerBox.currentText(): selected_entry = i if selected_entry != None: server_list_obj.pop(selected_entry) try: with open(_datadir + "serverlist.json", "w") as server_file: server_file.write(json.dumps(server_list_obj, indent = 4)) server_file.close() except: logging.error("failed") self.chooseServer() def setServer(self): if self.serverBox.currentText() == "Add a server [Prompt]": # Text input self.customServerPrompt_qline = QtWidgets.QLineEdit(self) self.customServerPrompt_qline.setMinimumWidth(200) # Widget 1 self.customServerDialog = QtWidgets.QDialog() # Buttons cancel = QtWidgets.QPushButton("CANCEL") ok = QtWidgets.QPushButton("OK") ok.setDefault(True) ok.clicked.connect(self.customServerDialog.accept) cancel.clicked.connect(self.customServerDialog.reject) #Layout layout = QtWidgets.QHBoxLayout() self.TLS_checkbox = QtWidgets.QCheckBox(self) self.TLS_checkbox.setChecked(True) TLS_checkbox_label = QtWidgets.QLabel(":33 < Check if you want to connect over TLS!!") TLS_checkbox_label.setStyleSheet("QLabel { color: #416600; font-weight: bold;}") TLS_layout = QtWidgets.QHBoxLayout() TLS_layout.addWidget(TLS_checkbox_label) TLS_layout.addWidget(self.TLS_checkbox) layout.addWidget(cancel) layout.addWidget(ok) main_layout = QtWidgets.QVBoxLayout() nep_prompt = QtWidgets.QLabel(":33 < Please put in the server's address in the format HOSTNAME:PORT\n:33 < Fur example, irc.pesterchum.xyz:6697") nep_prompt.setStyleSheet("QLabel { color: #416600; font-weight: bold;}") main_layout.addWidget(nep_prompt) main_layout.addWidget(self.customServerPrompt_qline) main_layout.addLayout(TLS_layout) main_layout.addLayout(layout) self.customServerDialog.setLayout(main_layout) # Theme self.customServerDialog.setStyleSheet(self.theme["main/defaultwindow/style"]) self.customServerDialog.setWindowIcon(PesterIcon(self.theme["main/icon"])) # Connect self.customServerDialog.accepted.connect(self.updateServerJson) self.customServerDialog.rejected.connect(self.chooseServer) # Show self.customServerDialog.show() self.customServerDialog.setFocus() elif self.serverBox.currentText() == "Remove a server [Prompt]": # Read servers. server_list_items = [] try: with open(_datadir + "serverlist.json", "r") as server_file: read_file = server_file.read() server_file.close() server_obj = json.loads(read_file) for i in range(len(server_obj)): server_list_items.append(server_obj[i]["server"]) except: if self.chooseServerAskedToReset == False: self.chooseServerAskedToReset = True self.resetServerlist() return 1 logging.info("server_list_items: " + str(server_list_items)) # Widget 1 self.chooseRemoveServerWidged = QtWidgets.QDialog() # removeServerBox self.removeServerBox = QtWidgets.QComboBox() for i in range(len(server_list_items)): self.removeServerBox.addItem(server_list_items[i]) # Buttons cancel = QtWidgets.QPushButton("CANCEL") ok = QtWidgets.QPushButton("OK") ok.setDefault(True) ok.clicked.connect(self.chooseRemoveServerWidged.accept) cancel.clicked.connect(self.chooseRemoveServerWidged.reject) #Layout layout = QtWidgets.QHBoxLayout() layout.addWidget(cancel) layout.addWidget(ok) main_layout = QtWidgets.QVBoxLayout() main_layout.addWidget(QtWidgets.QLabel("Please choose a server to remove.")) main_layout.addWidget(self.removeServerBox) main_layout.addLayout(layout) self.chooseRemoveServerWidged.setLayout(main_layout) # Theme self.chooseRemoveServerWidged.setStyleSheet(self.theme["main/defaultwindow/style"]) self.chooseRemoveServerWidged.setWindowIcon(PesterIcon(self.theme["main/icon"])) # Connect self.chooseRemoveServerWidged.accepted.connect(self.removeServer) self.chooseRemoveServerWidged.rejected.connect(self.chooseServer) # Show self.chooseRemoveServerWidged.show() self.chooseRemoveServerWidged.setFocus() else: logging.info(self.serverBox.currentText() + " chosen.") with open(_datadir + "serverlist.json", "r") as server_file: read_file = server_file.read() server_file.close() server_obj = json.loads(read_file) selected_entry = None for i in range(len(server_obj)): if server_obj[i]["server"] == self.serverBox.currentText(): selected_entry = i try: with open(_datadir + "server.json", "w") as server_file: json_server_file = { "server": server_obj[selected_entry]["server"], "port": server_obj[selected_entry]["port"], "TLS": server_obj[selected_entry]["TLS"] } server_file.write(json.dumps(json_server_file, indent = 4) ) server_file.close() except: logging.error("Failed to set server :(") # Continue running Pesterchum as usual pesterchum.irc.start() pesterchum.reconnectok = False pesterchum.showLoading(pesterchum.widget) self.show() # Not required? self.setFocus() def chooseServer(self): # Read servers. server_list_items = [] try: with open(_datadir + "serverlist.json", "r") as server_file: read_file = server_file.read() server_file.close() server_obj = json.loads(read_file) for i in range(len(server_obj)): server_list_items.append(server_obj[i]["server"]) except: if self.chooseServerAskedToReset == False: self.chooseServerAskedToReset = True self.resetServerlist() return 1 logging.info("server_list_items: " + str(server_list_items)) # Widget 1 self.chooseServerWidged = QtWidgets.QDialog() # Serverbox self.serverBox = QtWidgets.QComboBox() for i in range(len(server_list_items)): self.serverBox.addItem(server_list_items[i]) self.serverBox.addItem("Add a server [Prompt]") self.serverBox.addItem("Remove a server [Prompt]") # Buttons cancel = QtWidgets.QPushButton("CANCEL") ok = QtWidgets.QPushButton("OK") ok.setDefault(True) ok.clicked.connect(self.chooseServerWidged.accept) cancel.clicked.connect(self.chooseServerWidged.reject) #Layout layout = QtWidgets.QHBoxLayout() layout.addWidget(cancel) layout.addWidget(ok) main_layout = QtWidgets.QVBoxLayout() main_layout.addWidget(QtWidgets.QLabel("Please choose a server.")) main_layout.addWidget(self.serverBox) main_layout.addLayout(layout) self.chooseServerWidged.setLayout(main_layout) # Theme self.chooseServerWidged.setStyleSheet(self.theme["main/defaultwindow/style"]) self.chooseServerWidged.setWindowIcon(PesterIcon(self.theme["main/icon"])) # Connect self.chooseServerWidged.accepted.connect(self.setServer) self.chooseServerWidged.rejected.connect(self.quit) # Show self.chooseServerWidged.show() self.chooseServerWidged.setFocus() pcUpdate = QtCore.pyqtSignal('QString', 'QString') closeToTraySignal = QtCore.pyqtSignal() newConvoStarted = QtCore.pyqtSignal('QString', bool, name="newConvoStarted") sendMessage = QtCore.pyqtSignal('QString', 'QString') sendNotice = QtCore.pyqtSignal('QString', 'QString') convoClosed = QtCore.pyqtSignal('QString') profileChanged = QtCore.pyqtSignal() animationSetting = QtCore.pyqtSignal(bool) moodRequest = QtCore.pyqtSignal(PesterProfile) moodsRequest = QtCore.pyqtSignal(PesterList) moodUpdated = QtCore.pyqtSignal() requestChannelList = QtCore.pyqtSignal() requestNames = QtCore.pyqtSignal('QString') namesUpdated = QtCore.pyqtSignal('QString') modesUpdated = QtCore.pyqtSignal('QString', 'QString') userPresentSignal = QtCore.pyqtSignal('QString','QString','QString') mycolorUpdated = QtCore.pyqtSignal() trayIconSignal = QtCore.pyqtSignal(int) blockedChum = QtCore.pyqtSignal('QString') unblockedChum = QtCore.pyqtSignal('QString') kickUser = QtCore.pyqtSignal('QString', 'QString') joinChannel = QtCore.pyqtSignal('QString') leftChannel = QtCore.pyqtSignal('QString') setChannelMode = QtCore.pyqtSignal('QString', 'QString', 'QString') channelNames = QtCore.pyqtSignal('QString') inviteChum = QtCore.pyqtSignal('QString', 'QString') inviteOnlyChan = QtCore.pyqtSignal('QString') closeSignal = QtCore.pyqtSignal() reconnectIRC = QtCore.pyqtSignal() gainAttention = QtCore.pyqtSignal(QtWidgets.QWidget) pingServer = QtCore.pyqtSignal() setAway = QtCore.pyqtSignal(bool) killSomeQuirks = QtCore.pyqtSignal('QString', 'QString') class PesterTray(QtWidgets.QSystemTrayIcon): def __init__(self, icon, mainwindow, parent): super(PesterTray, self).__init__(icon, parent) self.mainwindow = mainwindow @QtCore.pyqtSlot(int) def changeTrayIcon(self, i): if i == 0: self.setIcon(PesterIcon(self.mainwindow.theme["main/icon"])) else: self.setIcon(PesterIcon(self.mainwindow.theme["main/newmsgicon"])) @QtCore.pyqtSlot() def mainWindowClosed(self): self.hide() class MainProgram(QtCore.QObject): def __init__(self): super(MainProgram, self).__init__() if os.name.upper() == "NT": # karxi: Before we do *anything* else, we have to make a special # exception for Windows. Otherwise, the icon won't work properly. # NOTE: This is presently being tested, since I don't have a # Windows computer at the moment. Hopefully it'll work. # See http://stackoverflow.com/a/1552105 for more details. from ctypes import windll # Note that this has to be unicode. wid = "mspa.homestuck.pesterchum.314" # Designate this as a separate process - i.e., tell Windows that # Python is just hosting Pesterchum. # TODO: Eventually we should get this changed so it checks and # restores the old ID upon exit, but this usually doesn't matter - # most users won't keep the process running once Pesterchum closes. try: windll.shell32.SetCurrentProcessExplicitAppUserModelID(wid) except Exception as err: # Log, but otherwise ignore any exceptions. logging.error("Failed to set AppUserModel ID: {0}".format(err)) logging.error("Attempted to set as {0!r}.".format(wid)) # Back to our scheduled program. self.app = QtWidgets.QApplication(sys.argv) self.app.setApplicationName("Pesterchum") self.app.setQuitOnLastWindowClosed(False) options = self.oppts(sys.argv[1:]) def doSoundInit(): # TODO: Make this more uniform, adapt it into a general function. if pygame and pygame.mixer: # we could set the frequency higher but i love how cheesy it sounds try: pygame.mixer.init() pygame.mixer.init() except pygame.error as err: print("Warning: No sound! (pygame error: %s)" % err) else: # Sound works, we're done. return # ... Other alternatives here. ... # Last resort. (Always 'works' on Windows, no volume control.) # QSound.isAvailable is no longer a thing :( # Maybe fix. #if QtMultimedia.QSound.isAvailable(): # # Sound works, we're done. # return #else: # print("Warning: No sound! (No pygame/QSound)") doSoundInit() self.widget = PesterWindow(options, app=self.app) #self.widget.show() <== Already called in showLoading() self.trayicon = PesterTray(PesterIcon(self.widget.theme["main/icon"]), self.widget, self.app) self.traymenu = QtWidgets.QMenu() moodMenu = self.traymenu.addMenu("SET MOOD") moodCategories = {} for k in Mood.moodcats: moodCategories[k] = moodMenu.addMenu(k.upper()) self.moodactions = {} for (i,m) in enumerate(Mood.moods): maction = QtWidgets.QAction(m.upper(), self) mobj = PesterMoodAction(i, self.widget.moods.updateMood) maction.triggered.connect(mobj.updateMood) self.moodactions[i] = mobj moodCategories[Mood.revmoodcats[m]].addAction(maction) miniAction = QtWidgets.QAction("MINIMIZE", self) miniAction.triggered.connect(self.widget.showMinimized) exitAction = QtWidgets.QAction("EXIT", self) exitAction.triggered.connect(PesterWindow.quit) self.traymenu.addAction(miniAction) self.traymenu.addAction(exitAction) self.trayicon.setContextMenu(self.traymenu) self.trayicon.show() self.trayicon.activated[QtWidgets.QSystemTrayIcon.ActivationReason].connect(self.widget.systemTrayActivated) self.widget.trayIconSignal[int].connect(self.trayicon.changeTrayIcon) self.widget.closeToTraySignal.connect(self.trayiconShow) self.widget.closeSignal.connect(self.trayicon.mainWindowClosed) self.trayicon.messageClicked.connect(self.trayMessageClick) self.attempts = 0 # but it's at least better than the way it was before. self.irc = PesterIRC(self.widget.config, self.widget) self.connectWidgets(self.irc, self.widget) self.widget.passIRC(self.irc) # Maybe this is absolutely terrible in practice, but screw it. self.widget.gainAttention[QtWidgets.QWidget].connect(self.alertWindow) @QtCore.pyqtSlot(QtWidgets.QWidget) def alertWindow(self, widget): self.app.alert(widget) @QtCore.pyqtSlot() def trayiconShow(self): self.trayicon.show() if self.widget.config.trayMessage(): self.trayicon.showMessage("Pesterchum", "Pesterchum is still running in the system tray.\n\ Right click to close it.\n\ Click this message to never see this again.") @QtCore.pyqtSlot() def trayMessageClick(self): self.widget.config.set('traymsg', False) widget2irc = [('sendMessage(QString, QString)', 'sendMessage(QString, QString)'), ('sendNotice(QString, QString)', 'sendNotice(QString, QString)'), ('newConvoStarted(QString, bool)', 'startConvo(QString, bool)'), ('convoClosed(QString)', 'endConvo(QString)'), ('profileChanged()', 'updateProfile()'), ('moodRequest(PyQt_PyObject)', 'getMood(PyQt_PyObject)'), ('moodsRequest(PyQt_PyObject)', 'getMoods(PyQt_PyObject)'), ('moodUpdated()', 'updateMood()'), ('mycolorUpdated()','updateColor()'), ('blockedChum(QString)', 'blockedChum(QString)'), ('unblockedChum(QString)', 'unblockedChum(QString)'), ('requestNames(QString)','requestNames(QString)'), ('requestChannelList()', 'requestChannelList()'), ('joinChannel(QString)', 'joinChannel(QString)'), ('leftChannel(QString)', 'leftChannel(QString)'), ('kickUser(QString, QString)', 'kickUser(QString, QString)'), ('setChannelMode(QString, QString, QString)', 'setChannelMode(QString, QString, QString)'), ('channelNames(QString)', 'channelNames(QString)'), ('inviteChum(QString, QString)', 'inviteChum(QString, QString)'), ('pingServer()', 'pingServer()'), ('setAway(bool)', 'setAway(bool)'), ('killSomeQuirks(QString, QString)', 'killSomeQuirks(QString, QString)'), ('reconnectIRC()', 'reconnectIRC()') ] # IRC --> Main window irc2widget = [('connected()', 'connected()'), ('moodUpdated(QString, PyQt_PyObject)', 'updateMoodSlot(QString, PyQt_PyObject)'), ('colorUpdated(QString, QtGui.QColor)', 'updateColorSlot(QString, QtGui.QColor)'), ('messageReceived(QString, QString)', 'deliverMessage(QString, QString)'), ('memoReceived(QString, QString, QString)', 'deliverMemo(QString, QString, QString)'), ('noticeReceived(QString, QString)', 'deliverNotice(QString, QString)'), ('inviteReceived(QString, QString)', 'deliverInvite(QString, QString)'), ('nickCollision(QString, QString)', 'nickCollision(QString, QString)'), ('myHandleChanged(QString)', 'myHandleChanged(QString)'), ('namesReceived(QString, PyQt_PyObject)', 'updateNames(QString, PyQt_PyObject)'), ('userPresentUpdate(QString, QString, QString)', 'userPresentUpdate(QString, QString, QString)'), ('channelListReceived(PyQt_PyObject)', 'updateChannelList(PyQt_PyObject)'), ('timeCommand(QString, QString, QString)', 'timeCommand(QString, QString, QString)'), ('chanInviteOnly(QString)', 'chanInviteOnly(QString)'), ('modesUpdated(QString, QString)', 'modesUpdated(QString, QString)'), ('cannotSendToChan(QString, QString)', 'cannotSendToChan(QString, QString)'), ('tooManyPeeps()', 'tooManyPeeps()'), ('quirkDisable(QString, QString, QString)', 'quirkDisable(QString, QString, QString)') ] def ircQtConnections(self, irc, widget): # IRC --> Main window return ((widget.sendMessage, irc.sendMessage), (widget.sendNotice, irc.sendNotice), (widget.newConvoStarted, irc.startConvo), (widget.convoClosed, irc.endConvo), (widget.profileChanged, irc.updateProfile), (widget.moodRequest, irc.getMood), (widget.moodsRequest, irc.getMoods), (widget.moodUpdated, irc.updateMood), (widget.mycolorUpdated, irc.updateColor), (widget.blockedChum, irc.blockedChum), (widget.unblockedChum, irc.unblockedChum), (widget.requestNames, irc.requestNames), (widget.requestChannelList, irc.requestChannelList), (widget.joinChannel, irc.joinChannel), (widget.leftChannel, irc.leftChannel), (widget.kickUser, irc.kickUser), (widget.setChannelMode, irc.setChannelMode), (widget.channelNames, irc.channelNames), (widget.inviteChum, irc.inviteChum), (widget.pingServer, irc.pingServer), (widget.setAway, irc.setAway), (widget.killSomeQuirks, irc.killSomeQuirks), (widget.reconnectIRC, irc.reconnectIRC), # Main window --> IRC (irc.connected, widget.connected), (irc.moodUpdated, widget.updateMoodSlot), (irc.colorUpdated, widget.updateColorSlot), (irc.messageReceived, widget.deliverMessage), (irc.memoReceived, widget.deliverMemo), (irc.noticeReceived, widget.deliverNotice), (irc.inviteReceived, widget.deliverInvite), (irc.nickCollision, widget.nickCollision), (irc.myHandleChanged, widget.myHandleChanged), (irc.namesReceived, widget.updateNames), (irc.userPresentUpdate, widget.userPresentUpdate), (irc.channelListReceived, widget.updateChannelList), (irc.timeCommand, widget.timeCommand), (irc.chanInviteOnly, widget.chanInviteOnly), (irc.modesUpdated, widget.modesUpdated), (irc.cannotSendToChan, widget.cannotSendToChan), (irc.tooManyPeeps, widget.tooManyPeeps), (irc.quirkDisable, widget.quirkDisable)) def connectWidgets(self, irc, widget): irc.finished.connect(self.restartIRC) irc.connected.connect(self.connected) for sig, slot in self.ircQtConnections(irc, widget): sig.connect(slot) def disconnectWidgets(self, irc, widget): for sig, slot in self.ircQtConnections(irc, widget): sig.disconnect(slot) irc.connected.disconnect(self.connected) self.irc.finished.disconnect(self.restartIRC) def showUpdate(self, q): new_url = q.get() if new_url[0]: self.widget.pcUpdate.emit(new_url[0], new_url[1]) q.task_done() def showLoading(self, widget, msg="CONN3CT1NG"): self.widget.show() if len(msg) > 60: newmsg = [] while len(msg) > 60: s = msg.rfind(" ", 0, 60) if s == -1: break newmsg.append(msg[:s]) newmsg.append("\n") msg = msg[s+1:] newmsg.append(msg) msg = "".join(newmsg) if hasattr(self.widget, 'loadingscreen') and widget.loadingscreen: widget.loadingscreen.loadinglabel.setText(msg) if self.reconnectok: widget.loadingscreen.showReconnect() else: widget.loadingscreen.hideReconnect() else: widget.loadingscreen = LoadingScreen(widget) widget.loadingscreen.loadinglabel.setText(msg) widget.loadingscreen.rejected.connect(widget.app.quit) self.widget.loadingscreen.tryAgain.connect(self.tryAgain) if hasattr(self, 'irc') and self.irc.registeredIRC: return if self.reconnectok: widget.loadingscreen.showReconnect() else: widget.loadingscreen.hideReconnect() status = widget.loadingscreen.exec_() if status == QtWidgets.QDialog.Rejected: sys.exit(0) else: if self.widget.tabmemo: for c in self.widget.tabmemo.convos: self.irc.joinChannel(c) else: for c in list(self.widget.memos.values()): self.irc.joinChannel(c.channel) return True @QtCore.pyqtSlot() def connected(self): self.attempts = 0 @QtCore.pyqtSlot() def tryAgain(self): if not self.reconnectok: return if self.widget.loadingscreen: self.widget.loadingscreen.done(QtWidgets.QDialog.Accepted) self.widget.loadingscreen = None self.attempts += 1 if hasattr(self, 'irc') and self.irc: self.irc.reconnectIRC() self.irc.quit() else: self.restartIRC() @QtCore.pyqtSlot() def restartIRC(self): if hasattr(self, 'irc') and self.irc: self.disconnectWidgets(self.irc, self.widget) stop = self.irc.stopIRC del self.irc else: stop = None if stop is None: self.irc = PesterIRC(self.widget.config, self.widget) self.connectWidgets(self.irc, self.widget) self.irc.start() if self.attempts == 1: msg = "R3CONN3CT1NG" elif self.attempts > 1: msg = "R3CONN3CT1NG %d" % (self.attempts) else: msg = "CONN3CT1NG" self.reconnectok = False self.showLoading(self.widget, msg) else: self.reconnectok = True self.showLoading(self.widget, "F41L3D: %s" % stop) def oppts(self, argv): options = {} try: opts, args = getopt.getopt(argv, "s:p:", ["server=", "port=", "advanced", "no-honk"]) except getopt.GetoptError: return options for opt, arg in opts: if opt in ("-s", "--server"): options["server"] = arg elif opt in ("-p", "--port"): options["port"] = arg elif opt in ("--advanced"): options["advanced"] = True elif opt in ("--no-honk"): options["honk"] = False return options def run(self): #logging.critical("mreowww") <--- debug thingy :3 sys.exit(self.app.exec_()) def _retrieveGlobals(): # NOTE: Yes, this is a terrible kludge so that the console can work # properly. I'm open to alternatives. return globals() if __name__ == "__main__": # We're being run as a script - not being imported. pesterchum = MainProgram() pesterchum.run()