186 lines
6.1 KiB
Python
186 lines
6.1 KiB
Python
# Electrum - Lightweight Bitcoin Client
|
|
# Copyright (c) 2015 Thomas Voegtlin
|
|
#
|
|
# 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
|
|
from typing import Optional, Tuple, Dict, Any, TYPE_CHECKING
|
|
import asyncio
|
|
import dns
|
|
from dns.exception import DNSException
|
|
|
|
from . import bitcoin
|
|
from . import dnssec
|
|
from .util import read_json_file, write_json_file, to_string, is_valid_email
|
|
from .logging import Logger, get_logger
|
|
from .util import trigger_callback, get_asyncio_loop
|
|
|
|
if TYPE_CHECKING:
|
|
from .wallet_db import WalletDB
|
|
from .simple_config import SimpleConfig
|
|
|
|
|
|
_logger = get_logger(__name__)
|
|
|
|
|
|
class AliasNotFoundException(Exception):
|
|
pass
|
|
|
|
|
|
class Contacts(dict, Logger):
|
|
|
|
def __init__(self, db: 'WalletDB'):
|
|
Logger.__init__(self)
|
|
self.db = db
|
|
d = self.db.get('contacts', {})
|
|
try:
|
|
self.update(d)
|
|
except Exception:
|
|
return
|
|
# backward compatibility
|
|
for k, v in self.items():
|
|
_type, n = v
|
|
if _type == 'address' and bitcoin.is_address(n):
|
|
self.pop(k)
|
|
self[n] = ('address', k)
|
|
|
|
def save(self):
|
|
self.db.put('contacts', dict(self))
|
|
trigger_callback('contacts_updated')
|
|
|
|
def import_file(self, path):
|
|
data = read_json_file(path)
|
|
data = self._validate(data)
|
|
self.update(data)
|
|
self.save()
|
|
|
|
def export_file(self, path):
|
|
write_json_file(path, self)
|
|
|
|
def __setitem__(self, key, value):
|
|
dict.__setitem__(self, key, value)
|
|
self.save()
|
|
|
|
def pop(self, key):
|
|
if key in self.keys():
|
|
res = dict.pop(self, key)
|
|
self.save()
|
|
return res
|
|
return None
|
|
|
|
async def resolve(self, k) -> dict:
|
|
if bitcoin.is_address(k):
|
|
return {
|
|
'address': k,
|
|
'type': 'address'
|
|
}
|
|
for address, (_type, label) in self.items():
|
|
if k.casefold() != label.casefold():
|
|
continue
|
|
if _type in ('address', 'lnaddress'):
|
|
return {
|
|
'address': address,
|
|
'type': 'contact'
|
|
}
|
|
if openalias := await self.resolve_openalias(k):
|
|
return openalias
|
|
raise AliasNotFoundException("Invalid Bitcoin address or alias", k)
|
|
|
|
@classmethod
|
|
async def resolve_openalias(cls, url: str) -> Dict[str, Any]:
|
|
out = await cls._resolve_openalias(url)
|
|
if out:
|
|
address, name = out
|
|
return {
|
|
'address': address,
|
|
'name': name,
|
|
'type': 'openalias',
|
|
}
|
|
return {}
|
|
|
|
def by_name(self, name):
|
|
for k in self.keys():
|
|
_type, addr = self[k]
|
|
if addr.casefold() == name.casefold():
|
|
return {
|
|
'name': addr,
|
|
'type': _type,
|
|
'address': k
|
|
}
|
|
return None
|
|
|
|
def fetch_openalias(self, config: 'SimpleConfig'):
|
|
self.alias_info = None
|
|
alias = config.OPENALIAS_ID
|
|
if alias:
|
|
alias = str(alias)
|
|
async def f():
|
|
self.alias_info = await self._resolve_openalias(alias)
|
|
trigger_callback('alias_received')
|
|
asyncio.run_coroutine_threadsafe(f(), get_asyncio_loop())
|
|
|
|
@classmethod
|
|
async def _resolve_openalias(cls, url: str) -> Optional[Tuple[str, str]]:
|
|
# support email-style addresses, per the OA standard
|
|
url = url.replace('@', '.')
|
|
try:
|
|
records, validated = await dnssec.query(url, dns.rdatatype.TXT)
|
|
except DNSException as e:
|
|
_logger.info(f'Error resolving openalias: {repr(e)}')
|
|
return None
|
|
if not validated: # enforce DNSSEC validation. without it, DNS is completely insecure
|
|
_logger.info(f"DNSSEC validation failed for {url=!r}, or maybe dependencies are missing and could not even try.")
|
|
return None
|
|
prefix = 'btc'
|
|
for record in records:
|
|
if record.rdtype != dns.rdatatype.TXT:
|
|
continue
|
|
string = to_string(record.strings[0], 'utf8')
|
|
if string.startswith('oa1:' + prefix):
|
|
address = cls.find_regex(string, r'recipient_address=([A-Za-z0-9]+)')
|
|
name = cls.find_regex(string, r'recipient_name=([^;]+)')
|
|
if not name:
|
|
name = address
|
|
if not address:
|
|
continue
|
|
return address, name
|
|
return None
|
|
|
|
@staticmethod
|
|
def find_regex(haystack, needle):
|
|
regex = re.compile(needle)
|
|
try:
|
|
return regex.search(haystack).groups()[0]
|
|
except AttributeError:
|
|
return None
|
|
|
|
def _validate(self, data):
|
|
for k, v in list(data.items()):
|
|
if k == 'contacts':
|
|
return self._validate(v)
|
|
if not (bitcoin.is_address(k) or is_valid_email(k)):
|
|
data.pop(k)
|
|
else:
|
|
_type, _ = v
|
|
if _type not in ('address', 'lnaddress'):
|
|
data.pop(k)
|
|
return data
|
|
|