2016-03-17 22:09:46 +01:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2017-10-12 22:36:47 +02:00
|
|
|
from addresses import decodeAddress, encodeVarint
|
2016-03-17 22:09:46 +01:00
|
|
|
from tr import _translate
|
2017-10-12 22:36:47 +02:00
|
|
|
from retranslateui import RetranslateMixin
|
|
|
|
import widgets
|
2016-03-17 22:09:46 +01:00
|
|
|
|
2017-10-12 22:36:47 +02:00
|
|
|
import hashlib
|
|
|
|
from inventory import Inventory
|
2016-03-17 22:09:46 +01:00
|
|
|
|
|
|
|
|
2017-10-12 22:36:47 +02:00
|
|
|
class AddressCheckMixin(object):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.valid = False
|
|
|
|
QtCore.QObject.connect(self.lineEditAddress, QtCore.SIGNAL(
|
2016-03-17 22:09:46 +01:00
|
|
|
"textChanged(QString)"), self.addressChanged)
|
|
|
|
|
2017-10-12 22:36:47 +02:00
|
|
|
def _onSuccess(self, addressVersion, streamNumber, ripe):
|
|
|
|
pass
|
|
|
|
|
2016-03-17 22:09:46 +01:00
|
|
|
def addressChanged(self, QString):
|
2017-10-12 22:36:47 +02:00
|
|
|
status, addressVersion, streamNumber, ripe = decodeAddress(
|
|
|
|
str(QString))
|
|
|
|
self.valid = status == 'success'
|
|
|
|
if self.valid:
|
|
|
|
self.labelAddressCheck.setText(
|
|
|
|
_translate("MainWindow", "Address is valid."))
|
|
|
|
self._onSuccess(addressVersion, streamNumber, ripe)
|
|
|
|
elif status == 'missingbm':
|
|
|
|
self.labelAddressCheck.setText(_translate(
|
2016-03-17 22:09:46 +01:00
|
|
|
"MainWindow", "The address should start with ''BM-''"))
|
|
|
|
elif status == 'checksumfailed':
|
2017-10-12 22:36:47 +02:00
|
|
|
self.labelAddressCheck.setText(_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"The address is not typed or copied correctly"
|
|
|
|
" (the checksum failed)."
|
|
|
|
))
|
2016-03-17 22:09:46 +01:00
|
|
|
elif status == 'versiontoohigh':
|
2017-10-12 22:36:47 +02:00
|
|
|
self.labelAddressCheck.setText(_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"The version number of this address is higher than this"
|
|
|
|
" software can support. Please upgrade Bitmessage."
|
|
|
|
))
|
2016-03-17 22:09:46 +01:00
|
|
|
elif status == 'invalidcharacters':
|
2017-10-12 22:36:47 +02:00
|
|
|
self.labelAddressCheck.setText(_translate(
|
2016-03-17 22:09:46 +01:00
|
|
|
"MainWindow", "The address contains invalid characters."))
|
|
|
|
elif status == 'ripetooshort':
|
2017-10-12 22:36:47 +02:00
|
|
|
self.labelAddressCheck.setText(_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"Some data encoded in the address is too short."
|
|
|
|
))
|
2016-03-17 22:09:46 +01:00
|
|
|
elif status == 'ripetoolong':
|
2017-10-12 22:36:47 +02:00
|
|
|
self.labelAddressCheck.setText(_translate(
|
2016-03-17 22:09:46 +01:00
|
|
|
"MainWindow", "Some data encoded in the address is too long."))
|
|
|
|
elif status == 'varintmalformed':
|
2017-10-12 22:36:47 +02:00
|
|
|
self.labelAddressCheck.setText(_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"Some data encoded in the address is malformed."
|
|
|
|
))
|
|
|
|
|
|
|
|
|
|
|
|
class AddAddressDialog(QtGui.QDialog, RetranslateMixin, AddressCheckMixin):
|
|
|
|
|
|
|
|
def __init__(self, parent=None):
|
|
|
|
super(AddAddressDialog, self).__init__(parent)
|
|
|
|
widgets.load('addaddressdialog.ui', self)
|
|
|
|
AddressCheckMixin.__init__(self)
|
|
|
|
|
|
|
|
|
|
|
|
class NewSubscriptionDialog(
|
|
|
|
QtGui.QDialog, RetranslateMixin, AddressCheckMixin):
|
|
|
|
|
|
|
|
def __init__(self, parent=None):
|
|
|
|
super(NewSubscriptionDialog, self).__init__(parent)
|
|
|
|
widgets.load('newsubscriptiondialog.ui', self)
|
|
|
|
AddressCheckMixin.__init__(self)
|
|
|
|
|
|
|
|
def _onSuccess(self, addressVersion, streamNumber, ripe):
|
|
|
|
if addressVersion <= 3:
|
|
|
|
self.checkBoxDisplayMessagesAlreadyInInventory.setText(_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"Address is an old type. We cannot display its past"
|
|
|
|
" broadcasts."
|
|
|
|
))
|
|
|
|
else:
|
|
|
|
Inventory().flush()
|
|
|
|
doubleHashOfAddressData = hashlib.sha512(hashlib.sha512(
|
|
|
|
encodeVarint(addressVersion) +
|
|
|
|
encodeVarint(streamNumber) + ripe
|
|
|
|
).digest()).digest()
|
|
|
|
tag = doubleHashOfAddressData[32:]
|
|
|
|
self.recent = Inventory().by_type_and_tag(3, tag)
|
|
|
|
count = len(self.recent)
|
|
|
|
if count == 0:
|
|
|
|
self.checkBoxDisplayMessagesAlreadyInInventory.setText(
|
|
|
|
_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"There are no recent broadcasts from this address"
|
|
|
|
" to display."
|
|
|
|
))
|
|
|
|
else:
|
|
|
|
self.checkBoxDisplayMessagesAlreadyInInventory.setEnabled(True)
|
|
|
|
self.checkBoxDisplayMessagesAlreadyInInventory.setText(
|
|
|
|
_translate(
|
|
|
|
"MainWindow",
|
|
|
|
"Display the %1 recent broadcast(s) from this address."
|
|
|
|
).arg(count))
|