You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
3.8 KiB
88 lines
3.8 KiB
#!/usr/bin/env python |
|
# |
|
# Electrum - Lightweight Bitcoin Client |
|
# Copyright (C) 2022 The Electrum Developers |
|
# |
|
# Permission is hereby granted, free of charge, to any person |
|
# obtaining a copy of this software and associated documentation files |
|
# (the "Software"), to deal in the Software without restriction, |
|
# including without limitation the rights to use, copy, modify, merge, |
|
# publish, distribute, sublicense, and/or sell copies of the Software, |
|
# and to permit persons to whom the Software is furnished to do so, |
|
# subject to the following conditions: |
|
# |
|
# The above copyright notice and this permission notice shall be |
|
# included in all copies or substantial portions of the Software. |
|
# |
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
|
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
|
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
|
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
|
# SOFTWARE. |
|
|
|
from functools import partial |
|
from PyQt5 import QtWidgets |
|
from electrum.i18n import _ |
|
from electrum.plugin import hook |
|
from electrum.gui.qt.util import WindowModalDialog, OkButton, Buttons, EnterButton, webopen |
|
from .payserver import PayServerPlugin |
|
|
|
|
|
class Plugin(PayServerPlugin): |
|
|
|
_init_qt_received = False |
|
|
|
@hook |
|
def init_qt(self, gui: 'ElectrumGui'): |
|
if self._init_qt_received: # only need/want the first signal |
|
return |
|
self._init_qt_received = True |
|
# If the user just enabled the plugin, the 'load_wallet' hook would not |
|
# get called for already loaded wallets, hence we call it manually for those: |
|
for window in gui.windows: |
|
self.daemon_wallet_loaded(gui.daemon, window.wallet) |
|
|
|
def requires_settings(self): |
|
return True |
|
|
|
def settings_widget(self, window: WindowModalDialog): |
|
return EnterButton( |
|
_('Settings'), |
|
partial(self.settings_dialog, window)) |
|
|
|
def settings_dialog(self, window: WindowModalDialog): |
|
if self.config.get('offline'): |
|
window.show_error(_("You are offline.")) |
|
return |
|
d = WindowModalDialog(window, _("PayServer Settings")) |
|
form = QtWidgets.QFormLayout(None) |
|
addr = self.config.get('payserver_address', 'localhost:8080') |
|
assert self.server |
|
url = self.server.base_url + self.server.root + '/create_invoice.html' |
|
self.help_button = QtWidgets.QPushButton('View sample invoice creation form') |
|
self.help_button.clicked.connect(lambda: webopen(url)) |
|
address_e = QtWidgets.QLineEdit(addr) |
|
keyfile_e = QtWidgets.QLineEdit(self.config.get('ssl_keyfile', '')) |
|
certfile_e = QtWidgets.QLineEdit(self.config.get('ssl_certfile', '')) |
|
form.addRow(QtWidgets.QLabel("Network address:"), address_e) |
|
form.addRow(QtWidgets.QLabel("SSL key file:"), keyfile_e) |
|
form.addRow(QtWidgets.QLabel("SSL cert file:"), certfile_e) |
|
vbox = QtWidgets.QVBoxLayout(d) |
|
vbox.addLayout(form) |
|
vbox.addSpacing(20) |
|
vbox.addWidget(self.help_button) |
|
vbox.addSpacing(20) |
|
vbox.addLayout(Buttons(OkButton(d))) |
|
if d.exec_(): |
|
self.config.set_key('payserver_address', str(address_e.text())) |
|
self.config.set_key('ssl_keyfile', str(keyfile_e.text())) |
|
self.config.set_key('ssl_certfile', str(certfile_e.text())) |
|
# fixme: restart the server |
|
window.show_message('Please restart Electrum to enable those changes') |
|
|
|
@hook |
|
def receive_list_menu(self, parent, menu, key): |
|
menu.addAction(_("View in payserver"), lambda: webopen(self.view_url(key)))
|
|
|