plugins: do not overload __init__, use init() instead
This commit is contained in:
@@ -20,13 +20,17 @@ ALIAS_REGEXP = '^(|([\w\-\.]+)@)((\w[\w\-]+\.)+[\w\-]+)$'
|
||||
from electrum_gui import BasePlugin
|
||||
class Plugin(BasePlugin):
|
||||
|
||||
def __init__(self, gui):
|
||||
BasePlugin.__init__(self, gui, 'aliases', 'Aliases', _('Retrieve aliases using http.'))
|
||||
def fullname(self): return 'Aliases'
|
||||
|
||||
def description(self): return _('Retrieve aliases using http.')
|
||||
|
||||
def init(self):
|
||||
self.aliases = self.config.get('aliases', {}) # aliases for addresses
|
||||
self.authorities = self.config.get('authorities', {}) # trusted addresses
|
||||
self.receipts = self.config.get('receipts',{}) # signed URIs
|
||||
|
||||
|
||||
|
||||
def timer_actions(self):
|
||||
if self.gui.payto_e.hasFocus():
|
||||
return
|
||||
|
||||
@@ -21,6 +21,13 @@ from electrum_gui.i18n import _
|
||||
from electrum_gui.gui_classic import HelpButton
|
||||
|
||||
class Plugin(BasePlugin):
|
||||
|
||||
def fullname(self):
|
||||
return _('Label Sync')
|
||||
|
||||
def description(self):
|
||||
return '%s\n\n%s%s%s' % (_("This plugin can sync your labels across multiple Electrum installs by using a remote database to save your data. Labels, transactions and addresses are all sent and stored encrypted on the remote server. This code might increase the load of your wallet with a few microseconds as it will sync labels on each startup."), _("To get started visit"), " http://labelectrum.herokuapp.com/", _(" to sign up for an account."))
|
||||
|
||||
def version(self):
|
||||
return "0.2.1"
|
||||
|
||||
@@ -35,34 +42,32 @@ class Plugin(BasePlugin):
|
||||
|
||||
return decoded_message
|
||||
|
||||
def __init__(self, gui):
|
||||
self.target_host = 'labelectrum.herokuapp.com'
|
||||
BasePlugin.__init__(self, gui, 'labels', _('Label Sync'), '%s\n\n%s%s%s' % (_("This plugin can sync your labels across multiple Electrum installs by using a remote database to save your data. Labels, transactions and addresses are all sent and stored encrypted on the remote server. This code might increase the load of your wallet with a few microseconds as it will sync labels on each startup."), _("To get started visit"), " http://labelectrum.herokuapp.com/", _(" to sign up for an account.")))
|
||||
|
||||
def init(self):
|
||||
self.target_host = 'labelectrum.herokuapp.com'
|
||||
self.wallet = gui.wallet
|
||||
self.gui = gui
|
||||
self.config = gui.config
|
||||
self.labels = self.wallet.labels
|
||||
self.transactions = self.wallet.transactions
|
||||
self.encode_password = hashlib.sha1(self.config.get("master_public_key")).digest().encode('hex')[:32]
|
||||
|
||||
self.wallet_id = hashlib.sha256(str(self.config.get("master_public_key"))).digest().encode('hex')
|
||||
mpk = self.wallet.master_public_keys["m/0'/"][1]
|
||||
self.encode_password = hashlib.sha1(mpk).digest().encode('hex')[:32]
|
||||
self.wallet_id = hashlib.sha256(mpk).digest().encode('hex')
|
||||
|
||||
addresses = []
|
||||
for k, account in self.wallet.accounts.items():
|
||||
for address in account[0]:
|
||||
for account in self.wallet.accounts.values():
|
||||
for address in account.get_addresses(0):
|
||||
addresses.append(address)
|
||||
|
||||
self.addresses = addresses
|
||||
|
||||
def auth_token(self):
|
||||
return self.config.get("plugin_label_api_key")
|
||||
|
||||
def init_gui(self):
|
||||
if self.is_enabled() and self.auth_token():
|
||||
if self.auth_token():
|
||||
# If there is an auth token we can try to actually start syncing
|
||||
self.full_pull()
|
||||
|
||||
def auth_token(self):
|
||||
return self.config.get("plugin_label_api_key")
|
||||
|
||||
def is_available(self):
|
||||
return True
|
||||
|
||||
@@ -138,18 +143,14 @@ class Plugin(BasePlugin):
|
||||
else:
|
||||
return False
|
||||
|
||||
def toggle(self):
|
||||
enabled = not self.is_enabled()
|
||||
self.set_enabled(enabled)
|
||||
self.init_gui()
|
||||
|
||||
if not self.auth_token() and enabled: # First run, throw plugin settings in your face
|
||||
def enable(self):
|
||||
if not self.auth_token(): # First run, throw plugin settings in your face
|
||||
if self.settings_dialog():
|
||||
self.set_enabled(True)
|
||||
return True
|
||||
self.set_enabled(True)
|
||||
return True
|
||||
else:
|
||||
self.set_enabled(False)
|
||||
return False
|
||||
self.set_enabled(False)
|
||||
return False
|
||||
return enabled
|
||||
|
||||
def full_push(self):
|
||||
|
||||
@@ -93,23 +93,24 @@ class QR_Window(QWidget):
|
||||
|
||||
class Plugin(BasePlugin):
|
||||
|
||||
def __init__(self, gui):
|
||||
BasePlugin.__init__(self, gui, 'pointofsale', 'Point of Sale',
|
||||
_('Show QR code window and amounts requested for each address. Add menu item to request amount.') )
|
||||
def fullname(self):
|
||||
return 'Point of Sale'
|
||||
|
||||
def description(self):
|
||||
return _('Show QR code window and amounts requested for each address. Add menu item to request amount.')
|
||||
|
||||
def init(self):
|
||||
self.qr_window = None
|
||||
self.requested_amounts = self.config.get('requested_amounts',{})
|
||||
self.merchant_name = self.config.get('merchant_name', 'Invoice')
|
||||
|
||||
self.gui.expert_mode = True
|
||||
self.gui.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Request')])
|
||||
self.toggle_QR_window(True)
|
||||
|
||||
def init_gui(self):
|
||||
enabled = self.is_enabled()
|
||||
if enabled:
|
||||
self.gui.expert_mode = True
|
||||
self.gui.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Request')])
|
||||
else:
|
||||
self.gui.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Tx')])
|
||||
|
||||
self.toggle_QR_window(enabled)
|
||||
def close(self):
|
||||
self.gui.receive_list.setHeaderLabels([ _('Address'), _('Label'), _('Balance'), _('Tx')])
|
||||
self.toggle_QR_window(False)
|
||||
|
||||
|
||||
def close_main_window(self):
|
||||
|
||||
@@ -18,10 +18,14 @@ except ImportError:
|
||||
from electrum_gui import BasePlugin
|
||||
class Plugin(BasePlugin):
|
||||
|
||||
def __init__(self, gui):
|
||||
BasePlugin.__init__(self, gui, 'qrscans', 'QR scans', "QR Scans.\nInstall the zbar package (http://zbar.sourceforge.net/download.html) to enable this plugin")
|
||||
def fullname(self): return 'QR scans'
|
||||
|
||||
def description(self): return "QR Scans.\nInstall the zbar package (http://zbar.sourceforge.net/download.html) to enable this plugin"
|
||||
|
||||
def __init__(self, gui, name):
|
||||
BasePlugin.__init__(self, gui, name)
|
||||
self._is_available = self._init()
|
||||
|
||||
|
||||
def _init(self):
|
||||
if not zbar:
|
||||
return False
|
||||
|
||||
@@ -5,8 +5,13 @@ from electrum_gui.i18n import _
|
||||
class Plugin(BasePlugin):
|
||||
|
||||
|
||||
def __init__(self, gui):
|
||||
BasePlugin.__init__(self, gui, 'virtualkeyboard', 'Virtual Keyboard', '%s\n%s' % (_("Add an optional, mouse keyboard to the password dialog."), _("Warning: do not use this if it makes you pick a weaker password.")))
|
||||
def fullname(self):
|
||||
return 'Virtual Keyboard'
|
||||
|
||||
def description(self):
|
||||
return '%s\n%s' % (_("Add an optional, mouse keyboard to the password dialog."), _("Warning: do not use this if it makes you pick a weaker password."))
|
||||
|
||||
def init(self):
|
||||
self.vkb = None
|
||||
self.vkb_index = 0
|
||||
|
||||
|
||||
Reference in New Issue
Block a user