2015-12-16 00:58:52 +01:00
import ctypes
from PyQt4 import QtCore , QtGui
2016-01-21 17:57:00 +01:00
import ssl
2015-12-16 00:58:52 +01:00
import sys
2015-12-21 15:38:45 +01:00
import time
2015-12-16 00:58:52 +01:00
import account
2017-02-22 09:34:54 +01:00
from bmconfigparser import BMConfigParser
2015-12-16 00:58:52 +01:00
from debug import logger
2017-02-08 20:37:42 +01:00
import defaults
2015-12-16 00:58:52 +01:00
from foldertree import AccountMixin
from helper_sql import *
from l10n import getTranslationLanguage
2016-11-10 21:43:10 +01:00
from openclpow import openclAvailable , openclEnabled
2017-01-11 17:00:00 +01:00
import paths
2017-08-15 18:14:36 +02:00
import proofofwork
2016-01-21 17:57:00 +01:00
from pyelliptic . openssl import OpenSSL
2017-02-08 13:41:56 +01:00
import queues
2017-09-21 12:59:43 +02:00
import network . stats
2017-01-11 17:00:00 +01:00
import state
2017-01-11 14:27:19 +01:00
from version import softwareVersion
2015-12-16 00:58:52 +01:00
# this is BM support address going to Peter Surda
2018-02-13 23:33:12 +01:00
OLD_SUPPORT_ADDRESS = ' BM-2cTkCtMYkrSPwFTpgcBrMrf5d8oZwvMZWK '
SUPPORT_ADDRESS = ' BM-2cUdgkDDAahwPAU6oD2A7DnjqZz3hgY832 '
2015-12-16 00:58:52 +01:00
SUPPORT_LABEL = ' PyBitmessage support '
SUPPORT_MY_LABEL = ' My new address '
SUPPORT_SUBJECT = ' Support request '
2015-12-16 14:19:19 +01:00
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.
2015-12-16 00:58:52 +01:00
2016-03-18 18:59:20 +01:00
Please describe what you are trying to do :
2015-12-16 00:58:52 +01:00
Please describe what you expect to happen :
2015-12-16 14:19:19 +01:00
Please describe what happens instead :
2015-12-16 00:58:52 +01:00
^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^
Please write above this line and if possible , keep the information about your environment below intact .
2016-11-05 00:46:07 +01:00
PyBitmessage version : { }
2015-12-16 00:58:52 +01:00
Operating system : { }
Architecture : { } bit
2016-01-21 17:57:00 +01:00
Python Version : { }
OpenSSL Version : { }
2015-12-16 00:58:52 +01:00
Frozen : { }
2015-12-16 01:15:19 +01:00
Portable mode : { }
2015-12-16 00:58:52 +01:00
C PoW : { }
OpenCL PoW : { }
Locale : { }
SOCKS : { }
UPnP : { }
Connected hosts : { }
'''
def checkAddressBook ( myapp ) :
2018-02-13 23:33:12 +01:00
sqlExecute ( ''' DELETE from addressbook WHERE address=? ''' , OLD_SUPPORT_ADDRESS )
2015-12-16 00:58:52 +01:00
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 )
2017-01-11 14:27:19 +01:00
if acct . type == AccountMixin . NORMAL and BMConfigParser ( ) . safeGetBoolean ( address , ' enabled ' ) :
2015-12-16 00:58:52 +01:00
return address
return False
def createAddressIfNeeded ( myapp ) :
if not checkHasNormalAddress ( ) :
2017-02-08 20:37:42 +01:00
queues . addressGeneratorQueue . put ( ( ' createRandomAddress ' , 4 , 1 , str ( QtGui . QApplication . translate ( " Support " , SUPPORT_MY_LABEL ) ) , 1 , " " , False , defaults . networkDefaultProofOfWorkNonceTrialsPerByte , defaults . networkDefaultPayloadLengthExtraBytes ) )
2017-01-14 23:20:15 +01:00
while state . shutdown == 0 and not checkHasNormalAddress ( ) :
2015-12-16 00:58:52 +01:00
time . sleep ( .2 )
myapp . rerenderComboBoxSendFrom ( )
return checkHasNormalAddress ( )
def createSupportMessage ( myapp ) :
checkAddressBook ( myapp )
address = createAddressIfNeeded ( myapp )
2017-01-14 23:20:15 +01:00
if state . shutdown :
2015-12-16 00:58:52 +01:00
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 )
2017-11-07 12:46:23 +01:00
2017-01-11 14:27:19 +01:00
version = softwareVersion
2017-11-07 12:46:23 +01:00
commit = paths . lastCommit ( ) . get ( ' commit ' )
2017-02-07 20:46:30 +01:00
if commit :
version + = " GIT " + commit
2017-01-13 12:29:14 +01:00
2015-12-16 00:58:52 +01:00
os = sys . platform
if os == " win32 " :
windowsversion = sys . getwindowsversion ( )
os = " Windows " + str ( windowsversion [ 0 ] ) + " . " + str ( windowsversion [ 1 ] )
else :
2015-12-16 14:19:19 +01:00
try :
from os import uname
unixversion = uname ( )
os = unixversion [ 0 ] + " " + unixversion [ 2 ]
except :
pass
2015-12-16 00:58:52 +01:00
architecture = " 32 " if ctypes . sizeof ( ctypes . c_voidp ) == 4 else " 64 "
2016-01-21 17:57:00 +01:00
pythonversion = sys . version
2017-01-13 12:05:39 +01:00
opensslversion = " %s (Python internal), %s (external for PyElliptic) " % ( ssl . OPENSSL_VERSION , OpenSSL . _version )
2016-01-21 17:57:00 +01:00
2015-12-16 00:58:52 +01:00
frozen = " N/A "
2017-01-11 17:00:00 +01:00
if paths . frozen :
frozen = paths . frozen
portablemode = " True " if state . appdata == paths . lookupExeFolder ( ) else " False "
2017-08-15 18:14:36 +02:00
cpow = " True " if proofofwork . bmpow else " False "
2018-03-03 16:31:49 +01:00
openclpow = str (
BMConfigParser ( ) . safeGet ( ' bitmessagesettings ' , ' opencl ' )
) if openclEnabled ( ) else " None "
2015-12-16 00:58:52 +01:00
locale = getTranslationLanguage ( )
2018-03-03 16:31:49 +01:00
socks = BMConfigParser ( ) . safeGet (
' bitmessagesettings ' , ' socksproxytype ' , " N/A " )
upnp = BMConfigParser ( ) . safeGet ( ' bitmessagesettings ' , ' upnp ' , " N/A " )
2017-09-21 12:59:43 +02:00
connectedhosts = len ( network . stats . connectedHostsList ( ) )
2015-12-16 00:58:52 +01:00
2016-01-21 17:57:00 +01:00
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 ) )
2015-12-16 00:58:52 +01:00
# single msg tab
2018-01-18 15:14:29 +01:00
myapp . ui . tabWidgetSend . setCurrentIndex (
myapp . ui . tabWidgetSend . indexOf ( myapp . ui . sendDirect )
)
2015-12-16 00:58:52 +01:00
# send tab
2018-01-18 15:14:29 +01:00
myapp . ui . tabWidget . setCurrentIndex (
myapp . ui . tabWidget . indexOf ( myapp . ui . send )
)