Dmitri Bogomolov
ba5caf3fda
- used BMConfigParser.safeGet.. methods instead of try .. except - moved all config checks from class_sqlThread into helper_startup - commented out initialization of settings which are then rewritten by updateConfig()
136 lines
5.0 KiB
Python
136 lines
5.0 KiB
Python
import ctypes
|
|
from PyQt4 import QtCore, QtGui
|
|
import ssl
|
|
import sys
|
|
import time
|
|
|
|
import account
|
|
from bmconfigparser import BMConfigParser
|
|
from debug import logger
|
|
import defaults
|
|
from foldertree import AccountMixin
|
|
from helper_sql import *
|
|
from l10n import getTranslationLanguage
|
|
from openclpow import openclAvailable, openclEnabled
|
|
import paths
|
|
import proofofwork
|
|
from pyelliptic.openssl import OpenSSL
|
|
import queues
|
|
import network.stats
|
|
import state
|
|
from version import softwareVersion
|
|
|
|
# this is BM support address going to Peter Surda
|
|
OLD_SUPPORT_ADDRESS = 'BM-2cTkCtMYkrSPwFTpgcBrMrf5d8oZwvMZWK'
|
|
SUPPORT_ADDRESS = 'BM-2cUdgkDDAahwPAU6oD2A7DnjqZz3hgY832'
|
|
SUPPORT_LABEL = 'PyBitmessage support'
|
|
SUPPORT_MY_LABEL = 'My new address'
|
|
SUPPORT_SUBJECT = 'Support request'
|
|
SUPPORT_MESSAGE = '''You can use this message to send a report to one of the PyBitmessage core developers regarding PyBitmessage or the mailchuck.com email service. If you are using PyBitmessage involuntarily, for example because your computer was infected with ransomware, this is not an appropriate venue for resolving such issues.
|
|
|
|
Please describe what you are trying to do:
|
|
|
|
Please describe what you expect to happen:
|
|
|
|
Please describe what happens instead:
|
|
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
Please write above this line and if possible, keep the information about your environment below intact.
|
|
|
|
PyBitmessage version: {}
|
|
Operating system: {}
|
|
Architecture: {}bit
|
|
Python Version: {}
|
|
OpenSSL Version: {}
|
|
Frozen: {}
|
|
Portable mode: {}
|
|
C PoW: {}
|
|
OpenCL PoW: {}
|
|
Locale: {}
|
|
SOCKS: {}
|
|
UPnP: {}
|
|
Connected hosts: {}
|
|
'''
|
|
|
|
def checkAddressBook(myapp):
|
|
sqlExecute('''DELETE from addressbook WHERE address=?''', OLD_SUPPORT_ADDRESS)
|
|
queryreturn = sqlQuery('''SELECT * FROM addressbook WHERE address=?''', SUPPORT_ADDRESS)
|
|
if queryreturn == []:
|
|
sqlExecute('''INSERT INTO addressbook VALUES (?,?)''', str(QtGui.QApplication.translate("Support", SUPPORT_LABEL)), SUPPORT_ADDRESS)
|
|
myapp.rerenderAddressBook()
|
|
|
|
def checkHasNormalAddress():
|
|
for address in account.getSortedAccounts():
|
|
acct = account.accountClass(address)
|
|
if acct.type == AccountMixin.NORMAL and BMConfigParser().safeGetBoolean(address, 'enabled'):
|
|
return address
|
|
return False
|
|
|
|
def createAddressIfNeeded(myapp):
|
|
if not checkHasNormalAddress():
|
|
queues.addressGeneratorQueue.put(('createRandomAddress', 4, 1, str(QtGui.QApplication.translate("Support", SUPPORT_MY_LABEL)), 1, "", False, defaults.networkDefaultProofOfWorkNonceTrialsPerByte, defaults.networkDefaultPayloadLengthExtraBytes))
|
|
while state.shutdown == 0 and not checkHasNormalAddress():
|
|
time.sleep(.2)
|
|
myapp.rerenderComboBoxSendFrom()
|
|
return checkHasNormalAddress()
|
|
|
|
def createSupportMessage(myapp):
|
|
checkAddressBook(myapp)
|
|
address = createAddressIfNeeded(myapp)
|
|
if state.shutdown:
|
|
return
|
|
|
|
myapp.ui.lineEditSubject.setText(str(QtGui.QApplication.translate("Support", SUPPORT_SUBJECT)))
|
|
addrIndex = myapp.ui.comboBoxSendFrom.findData(address, QtCore.Qt.UserRole, QtCore.Qt.MatchFixedString | QtCore.Qt.MatchCaseSensitive)
|
|
if addrIndex == -1: # something is very wrong
|
|
return
|
|
myapp.ui.comboBoxSendFrom.setCurrentIndex(addrIndex)
|
|
myapp.ui.lineEditTo.setText(SUPPORT_ADDRESS)
|
|
|
|
version = softwareVersion
|
|
commit = paths.lastCommit().get('commit')
|
|
if commit:
|
|
version += " GIT " + commit
|
|
|
|
os = sys.platform
|
|
if os == "win32":
|
|
windowsversion = sys.getwindowsversion()
|
|
os = "Windows " + str(windowsversion[0]) + "." + str(windowsversion[1])
|
|
else:
|
|
try:
|
|
from os import uname
|
|
unixversion = uname()
|
|
os = unixversion[0] + " " + unixversion[2]
|
|
except:
|
|
pass
|
|
architecture = "32" if ctypes.sizeof(ctypes.c_voidp) == 4 else "64"
|
|
pythonversion = sys.version
|
|
|
|
opensslversion = "%s (Python internal), %s (external for PyElliptic)" % (ssl.OPENSSL_VERSION, OpenSSL._version)
|
|
|
|
frozen = "N/A"
|
|
if paths.frozen:
|
|
frozen = paths.frozen
|
|
portablemode = "True" if state.appdata == paths.lookupExeFolder() else "False"
|
|
cpow = "True" if proofofwork.bmpow else "False"
|
|
openclpow = str(
|
|
BMConfigParser().safeGet('bitmessagesettings', 'opencl')
|
|
) if openclEnabled() else "None"
|
|
locale = getTranslationLanguage()
|
|
socks = BMConfigParser().safeGet(
|
|
'bitmessagesettings', 'socksproxytype', "N/A")
|
|
upnp = BMConfigParser().safeGet('bitmessagesettings', 'upnp', "N/A")
|
|
connectedhosts = len(network.stats.connectedHostsList())
|
|
|
|
myapp.ui.textEditMessage.setText(str(QtGui.QApplication.translate("Support", SUPPORT_MESSAGE)).format(version, os, architecture, pythonversion, opensslversion, frozen, portablemode, cpow, openclpow, locale, socks, upnp, connectedhosts))
|
|
|
|
# single msg tab
|
|
myapp.ui.tabWidgetSend.setCurrentIndex(
|
|
myapp.ui.tabWidgetSend.indexOf(myapp.ui.sendDirect)
|
|
)
|
|
# send tab
|
|
myapp.ui.tabWidget.setCurrentIndex(
|
|
myapp.ui.tabWidget.indexOf(myapp.ui.send)
|
|
)
|