this ports https://github.com/Electron-Cash/Electron-Cash/pull/1371 including commits: ---bab816e2c3Buttons Editor: Make background non-transparent and change to push button There were some issues with transparent backgrounds with QToolButton on Linux and as there is no real reason for them to be transparent we just make them opaque. ---2cb698affcPay to editor: Fix size computations to use the proper values Previously this did not take into account the spacing between lines nor the margins of the control and the document. There is also a sensible minimum height of one line now and it expands to up to 10 lines before we show the scroll bar. When the scroll bar is active, we move the buttons so they do not obscure the scroll bar. ---1b7a70f4f5Pay to editor: Increase height by one if cursor is under buttons ---abd42d9f66Buttons Editor: Always center if the document is just one line high ---33bd0b82e0Pay to editor: Make button movement on scrollbar change reliable ---94f8476c2ePay to editor: Use document lineCount instead of height ---5bedfce392Buttons Editor: Improve vertical centering of the buttons, needs to take into account the frame width ---0cd0b490c4Buttons Editor: Add transparent border which is somehow needed for correct macOS layout
325 lines
11 KiB
Python
325 lines
11 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# Electrum - lightweight Bitcoin client
|
|
# Copyright (C) 2012 thomasv@gitorious
|
|
#
|
|
# 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.
|
|
|
|
import re
|
|
import decimal
|
|
from decimal import Decimal
|
|
from typing import NamedTuple, Sequence, Optional, List, TYPE_CHECKING
|
|
|
|
from PyQt5.QtGui import QFontMetrics, QFont
|
|
|
|
from electrum import bitcoin
|
|
from electrum.util import bfh, maybe_extract_bolt11_invoice, BITCOIN_BIP21_URI_SCHEME, parse_max_spend
|
|
from electrum.transaction import PartialTxOutput
|
|
from electrum.bitcoin import opcodes, construct_script
|
|
from electrum.logging import Logger
|
|
from electrum.lnaddr import LnDecodeException
|
|
|
|
from .qrtextedit import ScanQRTextEdit
|
|
from .completion_text_edit import CompletionTextEdit
|
|
from . import util
|
|
from .util import MONOSPACE_FONT
|
|
|
|
if TYPE_CHECKING:
|
|
from .main_window import ElectrumWindow
|
|
|
|
|
|
RE_ALIAS = r'(.*?)\s*\<([0-9A-Za-z]{1,})\>'
|
|
|
|
frozen_style = "QWidget {border:none;}"
|
|
normal_style = "QPlainTextEdit { }"
|
|
|
|
|
|
class PayToLineError(NamedTuple):
|
|
line_content: str
|
|
exc: Exception
|
|
idx: int = 0 # index of line
|
|
is_multiline: bool = False
|
|
|
|
|
|
class PayToEdit(CompletionTextEdit, ScanQRTextEdit, Logger):
|
|
|
|
def __init__(self, win: 'ElectrumWindow'):
|
|
CompletionTextEdit.__init__(self)
|
|
ScanQRTextEdit.__init__(self, config=win.config)
|
|
Logger.__init__(self)
|
|
self.win = win
|
|
self.amount_edit = win.amount_e
|
|
self.setFont(QFont(MONOSPACE_FONT))
|
|
document = self.document()
|
|
document.contentsChanged.connect(self.update_size)
|
|
|
|
fontMetrics = QFontMetrics(document.defaultFont())
|
|
self.fontSpacing = fontMetrics.lineSpacing()
|
|
|
|
margins = self.contentsMargins()
|
|
documentMargin = document.documentMargin()
|
|
self.verticalMargins = margins.top() + margins.bottom()
|
|
self.verticalMargins += self.frameWidth() * 2
|
|
self.verticalMargins += documentMargin * 2
|
|
|
|
self.heightMin = self.fontSpacing + self.verticalMargins
|
|
self.heightMax = (self.fontSpacing * 10) + self.verticalMargins
|
|
|
|
self.c = None
|
|
self.textChanged.connect(self.check_text)
|
|
self.outputs = [] # type: List[PartialTxOutput]
|
|
self.errors = [] # type: List[PayToLineError]
|
|
self.is_pr = False
|
|
self.is_alias = False
|
|
self.update_size()
|
|
self.payto_scriptpubkey = None # type: Optional[bytes]
|
|
self.lightning_invoice = None
|
|
self.previous_payto = ''
|
|
|
|
def setFrozen(self, b):
|
|
self.setReadOnly(b)
|
|
self.setStyleSheet(frozen_style if b else normal_style)
|
|
self.overlay_widget.setHidden(b)
|
|
|
|
def setGreen(self):
|
|
self.setStyleSheet(util.ColorScheme.GREEN.as_stylesheet(True))
|
|
|
|
def setExpired(self):
|
|
self.setStyleSheet(util.ColorScheme.RED.as_stylesheet(True))
|
|
|
|
def parse_address_and_amount(self, line) -> PartialTxOutput:
|
|
try:
|
|
x, y = line.split(',')
|
|
except ValueError:
|
|
raise Exception("expected two comma-separated values: (address, amount)") from None
|
|
scriptpubkey = self.parse_output(x)
|
|
amount = self.parse_amount(y)
|
|
return PartialTxOutput(scriptpubkey=scriptpubkey, value=amount)
|
|
|
|
def parse_output(self, x) -> bytes:
|
|
try:
|
|
address = self.parse_address(x)
|
|
return bfh(bitcoin.address_to_script(address))
|
|
except Exception:
|
|
pass
|
|
try:
|
|
script = self.parse_script(x)
|
|
return bfh(script)
|
|
except Exception:
|
|
pass
|
|
raise Exception("Invalid address or script.")
|
|
|
|
def parse_script(self, x):
|
|
script = ''
|
|
for word in x.split():
|
|
if word[0:3] == 'OP_':
|
|
opcode_int = opcodes[word]
|
|
script += construct_script([opcode_int])
|
|
else:
|
|
bfh(word) # to test it is hex data
|
|
script += construct_script([word])
|
|
return script
|
|
|
|
def parse_amount(self, x):
|
|
x = x.strip()
|
|
if not x:
|
|
raise Exception("Amount is empty")
|
|
if parse_max_spend(x):
|
|
return x
|
|
p = pow(10, self.amount_edit.decimal_point())
|
|
try:
|
|
return int(p * Decimal(x))
|
|
except decimal.InvalidOperation:
|
|
raise Exception("Invalid amount")
|
|
|
|
def parse_address(self, line):
|
|
r = line.strip()
|
|
m = re.match('^'+RE_ALIAS+'$', r)
|
|
address = str(m.group(2) if m else r)
|
|
assert bitcoin.is_address(address)
|
|
return address
|
|
|
|
def check_text(self):
|
|
self.errors = []
|
|
if self.is_pr:
|
|
return
|
|
# filter out empty lines
|
|
lines = [i for i in self.lines() if i]
|
|
|
|
self.payto_scriptpubkey = None
|
|
self.lightning_invoice = None
|
|
self.outputs = []
|
|
|
|
if len(lines) == 1:
|
|
data = lines[0]
|
|
# try bip21 URI
|
|
if data.lower().startswith(BITCOIN_BIP21_URI_SCHEME + ':'):
|
|
self.win.pay_to_URI(data)
|
|
return
|
|
# try LN invoice
|
|
bolt11_invoice = maybe_extract_bolt11_invoice(data)
|
|
if bolt11_invoice is not None:
|
|
self.win.set_ln_invoice(bolt11_invoice)
|
|
return
|
|
# try "address, amount" on-chain format
|
|
try:
|
|
self._parse_as_multiline(lines, raise_errors=True)
|
|
except Exception as e:
|
|
pass
|
|
else:
|
|
return
|
|
# try address/script
|
|
try:
|
|
self.payto_scriptpubkey = self.parse_output(data)
|
|
except Exception as e:
|
|
self.errors.append(PayToLineError(line_content=data, exc=e))
|
|
else:
|
|
self.win.set_onchain(True)
|
|
self.win.lock_amount(False)
|
|
return
|
|
else:
|
|
# there are multiple lines
|
|
self._parse_as_multiline(lines, raise_errors=False)
|
|
|
|
def _parse_as_multiline(self, lines, *, raise_errors: bool):
|
|
outputs = [] # type: List[PartialTxOutput]
|
|
total = 0
|
|
is_max = False
|
|
for i, line in enumerate(lines):
|
|
try:
|
|
output = self.parse_address_and_amount(line)
|
|
except Exception as e:
|
|
if raise_errors:
|
|
raise
|
|
else:
|
|
self.errors.append(PayToLineError(
|
|
idx=i, line_content=line.strip(), exc=e, is_multiline=True))
|
|
continue
|
|
outputs.append(output)
|
|
if parse_max_spend(output.value):
|
|
is_max = True
|
|
else:
|
|
total += output.value
|
|
if outputs:
|
|
self.win.set_onchain(True)
|
|
|
|
self.win.max_button.setChecked(is_max)
|
|
self.outputs = outputs
|
|
self.payto_scriptpubkey = None
|
|
|
|
if self.win.max_button.isChecked():
|
|
self.win.spend_max()
|
|
else:
|
|
self.amount_edit.setAmount(total if outputs else None)
|
|
self.win.lock_amount(self.win.max_button.isChecked() or bool(outputs))
|
|
|
|
def get_errors(self) -> Sequence[PayToLineError]:
|
|
return self.errors
|
|
|
|
def get_destination_scriptpubkey(self) -> Optional[bytes]:
|
|
return self.payto_scriptpubkey
|
|
|
|
def get_outputs(self, is_max: bool) -> List[PartialTxOutput]:
|
|
if self.payto_scriptpubkey:
|
|
if is_max:
|
|
amount = '!'
|
|
else:
|
|
amount = self.amount_edit.get_amount()
|
|
if amount is None:
|
|
return []
|
|
self.outputs = [PartialTxOutput(scriptpubkey=self.payto_scriptpubkey, value=amount)]
|
|
|
|
return self.outputs[:]
|
|
|
|
def lines(self):
|
|
return self.toPlainText().split('\n')
|
|
|
|
def is_multiline(self):
|
|
return len(self.lines()) > 1
|
|
|
|
def paytomany(self):
|
|
self.setText("\n\n\n")
|
|
self.update_size()
|
|
|
|
def update_size(self):
|
|
docLineCount = self.document().lineCount()
|
|
if self.cursorRect().right() + 1 >= self.overlay_widget.pos().x():
|
|
# Add a line if we are under the overlay widget
|
|
docLineCount += 1
|
|
docHeight = docLineCount * self.fontSpacing
|
|
|
|
h = docHeight + self.verticalMargins
|
|
h = min(max(h, self.heightMin), self.heightMax)
|
|
self.setMinimumHeight(int(h))
|
|
self.setMaximumHeight(int(h))
|
|
|
|
self.verticalScrollBar().setHidden(docHeight + self.verticalMargins < self.heightMax)
|
|
|
|
# The scrollbar visibility can have changed so we update the overlay position here
|
|
self._updateOverlayPos()
|
|
|
|
def resolve(self):
|
|
self.is_alias = False
|
|
if self.hasFocus():
|
|
return
|
|
if self.is_multiline(): # only supports single line entries atm
|
|
return
|
|
if self.is_pr:
|
|
return
|
|
key = str(self.toPlainText())
|
|
key = key.strip() # strip whitespaces
|
|
if key == self.previous_payto:
|
|
return
|
|
self.previous_payto = key
|
|
if not (('.' in key) and (not '<' in key) and (not ' ' in key)):
|
|
return
|
|
parts = key.split(sep=',') # assuming single line
|
|
if parts and len(parts) > 0 and bitcoin.is_address(parts[0]):
|
|
return
|
|
try:
|
|
data = self.win.contacts.resolve(key)
|
|
except Exception as e:
|
|
self.logger.info(f'error resolving address/alias: {repr(e)}')
|
|
return
|
|
if not data:
|
|
return
|
|
self.is_alias = True
|
|
|
|
address = data.get('address')
|
|
name = data.get('name')
|
|
new_url = key + ' <' + address + '>'
|
|
self.setText(new_url)
|
|
self.previous_payto = new_url
|
|
|
|
#if self.win.config.get('openalias_autoadd') == 'checked':
|
|
self.win.contacts[key] = ('openalias', name)
|
|
self.win.contact_list.update()
|
|
|
|
self.setFrozen(True)
|
|
if data.get('type') == 'openalias':
|
|
self.validated = data.get('validated')
|
|
if self.validated:
|
|
self.setGreen()
|
|
else:
|
|
self.setExpired()
|
|
else:
|
|
self.validated = None
|