forked from LBRYCommunity/lbry-sdk
468 lines
No EOL
18 KiB
Python
468 lines
No EOL
18 KiB
Python
from lbrynet.interfaces import IRequestCreator, IQueryHandlerFactory, IQueryHandler, ILBRYWallet
|
|
from lbrynet.core.client.ClientRequest import ClientRequest
|
|
from lbrynet.core.Error import UnknownNameError, InvalidStreamInfoError, RequestCanceledError
|
|
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
|
|
from twisted.internet import threads, reactor, defer, task
|
|
from twisted.python.failure import Failure
|
|
from collections import defaultdict, deque
|
|
from zope.interface import implements
|
|
from decimal import Decimal
|
|
import datetime
|
|
import logging
|
|
import json
|
|
import subprocess
|
|
import socket
|
|
import time
|
|
import os
|
|
|
|
|
|
class ReservedPoints(object):
|
|
def __init__(self, identifier, amount):
|
|
self.identifier = identifier
|
|
self.amount = amount
|
|
|
|
|
|
class LBRYcrdWallet(object):
|
|
"""This class implements the LBRYWallet interface for the LBRYcrd payment system"""
|
|
implements(ILBRYWallet)
|
|
|
|
def __init__(self, rpc_user, rpc_pass, rpc_url, rpc_port, start_lbrycrdd=False,
|
|
wallet_dir=None, wallet_conf=None):
|
|
self.rpc_conn_string = "http://%s:%s@%s:%s" % (rpc_user, rpc_pass, rpc_url, str(rpc_port))
|
|
self.next_manage_call = None
|
|
self.wallet_balance = Decimal(0.0)
|
|
self.total_reserved_points = Decimal(0.0)
|
|
self.peer_addresses = {} # {Peer: string}
|
|
self.queued_payments = defaultdict(Decimal) # {address(string): amount(Decimal)}
|
|
self.expected_balances = defaultdict(Decimal) # {address(string): amount(Decimal)}
|
|
self.current_address_given_to_peer = {} # {Peer: address(string)}
|
|
self.expected_balance_at_time = deque() # (Peer, address(string), amount(Decimal), time(datetime), count(int),
|
|
# incremental_amount(float))
|
|
self.max_expected_payment_time = datetime.timedelta(minutes=3)
|
|
self.stopped = True
|
|
self.start_lbrycrdd = start_lbrycrdd
|
|
self.started_lbrycrdd = False
|
|
self.wallet_dir = wallet_dir
|
|
self.wallet_conf = wallet_conf
|
|
self.lbrycrdd = None
|
|
self.manage_running = False
|
|
|
|
def start(self):
|
|
|
|
def make_connection():
|
|
if self.start_lbrycrdd is True:
|
|
self._start_daemon()
|
|
logging.info("Trying to connect to %s", self.rpc_conn_string)
|
|
self.rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
logging.info("Connected!")
|
|
|
|
def start_manage():
|
|
self.stopped = False
|
|
self.manage()
|
|
return True
|
|
|
|
d = threads.deferToThread(make_connection)
|
|
d.addCallback(lambda _: start_manage())
|
|
return d
|
|
|
|
def stop(self):
|
|
self.stopped = True
|
|
# If self.next_manage_call is None, then manage is currently running or else
|
|
# start has not been called, so set stopped and do nothing else.
|
|
if self.next_manage_call is not None:
|
|
self.next_manage_call.cancel()
|
|
self.next_manage_call = None
|
|
|
|
d = self.manage()
|
|
if self.start_lbrycrdd is True:
|
|
d.addBoth(lambda _: self._stop_daemon())
|
|
return d
|
|
|
|
def manage(self):
|
|
logging.info("Doing manage")
|
|
self.next_manage_call = None
|
|
have_set_manage_running = [False]
|
|
|
|
def check_if_manage_running():
|
|
|
|
d = defer.Deferred()
|
|
|
|
def fire_if_not_running():
|
|
if self.manage_running is False:
|
|
self.manage_running = True
|
|
have_set_manage_running[0] = True
|
|
d.callback(True)
|
|
else:
|
|
task.deferLater(reactor, 1, fire_if_not_running)
|
|
|
|
fire_if_not_running()
|
|
return d
|
|
|
|
d = check_if_manage_running()
|
|
|
|
d.addCallback(lambda _: self._check_expected_balances())
|
|
|
|
d.addCallback(lambda _: self._send_payments())
|
|
|
|
d.addCallback(lambda _: threads.deferToThread(self._get_wallet_balance))
|
|
|
|
def set_wallet_balance(balance):
|
|
self.wallet_balance = balance
|
|
|
|
d.addCallback(set_wallet_balance)
|
|
|
|
def set_next_manage_call():
|
|
if not self.stopped:
|
|
self.next_manage_call = reactor.callLater(60, self.manage)
|
|
|
|
d.addCallback(lambda _: set_next_manage_call())
|
|
|
|
def log_error(err):
|
|
logging.error("Something went wrong during manage. Error message: %s", err.getErrorMessage())
|
|
return err
|
|
|
|
d.addErrback(log_error)
|
|
|
|
def set_manage_not_running(arg):
|
|
if have_set_manage_running[0] is True:
|
|
self.manage_running = False
|
|
return arg
|
|
|
|
d.addBoth(set_manage_not_running)
|
|
return d
|
|
|
|
def get_info_exchanger(self):
|
|
return LBRYcrdAddressRequester(self)
|
|
|
|
def get_wallet_info_query_handler_factory(self):
|
|
return LBRYcrdAddressQueryHandlerFactory(self)
|
|
|
|
def get_balance(self):
|
|
d = threads.deferToThread(self._get_wallet_balance)
|
|
return d
|
|
|
|
def reserve_points(self, peer, amount):
|
|
"""
|
|
Ensure a certain amount of points are available to be sent as payment, before the service is rendered
|
|
|
|
@param peer: The peer to which the payment will ultimately be sent
|
|
|
|
@param amount: The amount of points to reserve
|
|
|
|
@return: A ReservedPoints object which is given to send_points once the service has been rendered
|
|
"""
|
|
rounded_amount = Decimal(str(round(amount, 8)))
|
|
#if peer in self.peer_addresses:
|
|
if self.wallet_balance >= self.total_reserved_points + rounded_amount:
|
|
self.total_reserved_points += rounded_amount
|
|
return ReservedPoints(peer, rounded_amount)
|
|
return None
|
|
|
|
def cancel_point_reservation(self, reserved_points):
|
|
"""
|
|
Return all of the points that were reserved previously for some ReservedPoints object
|
|
|
|
@param reserved_points: ReservedPoints previously returned by reserve_points
|
|
|
|
@return: None
|
|
"""
|
|
self.total_reserved_points -= reserved_points.amount
|
|
|
|
def send_points(self, reserved_points, amount):
|
|
"""
|
|
Schedule a payment to be sent to a peer
|
|
|
|
@param reserved_points: ReservedPoints object previously returned by reserve_points
|
|
|
|
@param amount: amount of points to actually send, must be less than or equal to the
|
|
amount reserved in reserved_points
|
|
|
|
@return: Deferred which fires when the payment has been scheduled
|
|
"""
|
|
rounded_amount = Decimal(str(round(amount, 8)))
|
|
peer = reserved_points.identifier
|
|
assert(rounded_amount <= reserved_points.amount)
|
|
assert(peer in self.peer_addresses)
|
|
self.queued_payments[self.peer_addresses[peer]] += rounded_amount
|
|
# make any unused points available
|
|
self.total_reserved_points -= (reserved_points.amount - rounded_amount)
|
|
logging.info("ordering that %s points be sent to %s", str(rounded_amount),
|
|
str(self.peer_addresses[peer]))
|
|
peer.update_stats('points_sent', amount)
|
|
return defer.succeed(True)
|
|
|
|
def add_expected_payment(self, peer, amount):
|
|
"""Increase the number of points expected to be paid by a peer"""
|
|
rounded_amount = Decimal(str(round(amount, 8)))
|
|
assert(peer in self.current_address_given_to_peer)
|
|
address = self.current_address_given_to_peer[peer]
|
|
logging.info("expecting a payment at address %s in the amount of %s", str(address), str(rounded_amount))
|
|
self.expected_balances[address] += rounded_amount
|
|
expected_balance = self.expected_balances[address]
|
|
expected_time = datetime.datetime.now() + self.max_expected_payment_time
|
|
self.expected_balance_at_time.append((peer, address, expected_balance, expected_time, 0, amount))
|
|
peer.update_stats('expected_points', amount)
|
|
|
|
def update_peer_address(self, peer, address):
|
|
self.peer_addresses[peer] = address
|
|
|
|
def get_new_address_for_peer(self, peer):
|
|
def set_address_for_peer(address):
|
|
self.current_address_given_to_peer[peer] = address
|
|
return address
|
|
d = threads.deferToThread(self._get_new_address)
|
|
d.addCallback(set_address_for_peer)
|
|
return d
|
|
|
|
def get_stream_info_for_name(self, name):
|
|
|
|
def get_stream_info_from_value(result):
|
|
r_dict = {}
|
|
if 'value' in result:
|
|
value = result['value']
|
|
try:
|
|
value_dict = json.loads(value)
|
|
except ValueError:
|
|
return Failure(InvalidStreamInfoError(name))
|
|
if 'stream_hash' in value_dict:
|
|
r_dict['stream_hash'] = value_dict['stream_hash']
|
|
if 'name' in value_dict:
|
|
r_dict['name'] = value_dict['name']
|
|
if 'description' in value_dict:
|
|
r_dict['description'] = value_dict['description']
|
|
return r_dict
|
|
return Failure(UnknownNameError(name))
|
|
|
|
d = threads.deferToThread(self._get_value_for_name, name)
|
|
d.addCallback(get_stream_info_from_value)
|
|
return d
|
|
|
|
def claim_name(self, stream_hash, name, amount):
|
|
value = json.dumps({"stream_hash": stream_hash})
|
|
d = threads.deferToThread(self._claim_name, name, value, amount)
|
|
return d
|
|
|
|
def get_available_balance(self):
|
|
return float(self.wallet_balance - self.total_reserved_points)
|
|
|
|
def get_new_address(self):
|
|
return threads.deferToThread(self._get_new_address)
|
|
|
|
def _start_daemon(self):
|
|
|
|
if os.name == "nt":
|
|
si = subprocess.STARTUPINFO
|
|
si.dwFlags = subprocess.STARTF_USESHOWWINDOW
|
|
si.wShowWindow = subprocess.SW_HIDE
|
|
self.lbrycrdd = subprocess.Popen(["lbrycrdd.exe", "-datadir=%s" % self.wallet_dir,
|
|
"-conf=%s" % self.wallet_conf], startupinfo=si)
|
|
else:
|
|
self.lbrycrdd = subprocess.Popen(["./lbrycrdd", "-datadir=%s" % self.wallet_dir,
|
|
"-conf=%s" % self.wallet_conf])
|
|
self.started_lbrycrdd = True
|
|
|
|
tries = 0
|
|
while tries < 5:
|
|
try:
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
rpc_conn.getinfo()
|
|
break
|
|
except (socket.error, JSONRPCException):
|
|
tries += 1
|
|
logging.warning("Failed to connect to lbrycrdd.")
|
|
if tries < 5:
|
|
time.sleep(2 ** tries)
|
|
logging.warning("Trying again in %d seconds", 2 ** tries)
|
|
else:
|
|
logging.warning("Giving up.")
|
|
else:
|
|
self.lbrycrdd.terminate()
|
|
raise ValueError("Couldn't open lbrycrdd")
|
|
|
|
def _stop_daemon(self):
|
|
if self.lbrycrdd is not None and self.started_lbrycrdd is True:
|
|
d = threads.deferToThread(self._rpc_stop)
|
|
return d
|
|
return defer.succeed(True)
|
|
|
|
def _check_expected_balances(self):
|
|
now = datetime.datetime.now()
|
|
balances_to_check = []
|
|
try:
|
|
while self.expected_balance_at_time[0][3] < now:
|
|
balances_to_check.append(self.expected_balance_at_time.popleft())
|
|
except IndexError:
|
|
pass
|
|
ds = []
|
|
for balance_to_check in balances_to_check:
|
|
d = threads.deferToThread(self._check_expected_balance, balance_to_check)
|
|
ds.append(d)
|
|
dl = defer.DeferredList(ds)
|
|
|
|
def handle_checks(results):
|
|
from future_builtins import zip
|
|
for balance, (success, result) in zip(balances_to_check, results):
|
|
peer = balance[0]
|
|
if success is True:
|
|
if result is False:
|
|
if balance[4] <= 1: # first or second strike, give them another chance
|
|
new_expected_balance = (balance[0],
|
|
balance[1],
|
|
balance[2],
|
|
datetime.datetime.now() + self.max_expected_payment_time,
|
|
balance[4] + 1,
|
|
balance[5])
|
|
self.expected_balance_at_time.append(new_expected_balance)
|
|
peer.update_score(-5.0)
|
|
else:
|
|
peer.update_score(-50.0)
|
|
else:
|
|
if balance[4] == 0:
|
|
peer.update_score(balance[5])
|
|
peer.update_stats('points_received', balance[5])
|
|
else:
|
|
logging.warning("Something went wrong checking a balance. Peer: %s, account: %s,"
|
|
"expected balance: %s, expected time: %s, count: %s, error: %s",
|
|
str(balance[0]), str(balance[1]), str(balance[2]), str(balance[3]),
|
|
str(balance[4]), str(result.getErrorMessage()))
|
|
|
|
dl.addCallback(handle_checks)
|
|
return dl
|
|
|
|
def _check_expected_balance(self, expected_balance):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
logging.info("Checking balance of address %s", str(expected_balance[1]))
|
|
balance = rpc_conn.getreceivedbyaddress(expected_balance[1])
|
|
logging.debug("received balance: %s", str(balance))
|
|
logging.debug("expected balance: %s", str(expected_balance[2]))
|
|
return balance >= expected_balance[2]
|
|
|
|
def _send_payments(self):
|
|
logging.info("Trying to send payments, if there are any to be sent")
|
|
|
|
def do_send(payments):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
rpc_conn.sendmany("", payments)
|
|
|
|
payments_to_send = {}
|
|
for address, points in self.queued_payments.items():
|
|
logging.info("Should be sending %s points to %s", str(points), str(address))
|
|
payments_to_send[address] = float(points)
|
|
self.total_reserved_points -= points
|
|
self.wallet_balance -= points
|
|
del self.queued_payments[address]
|
|
if payments_to_send:
|
|
logging.info("Creating a transaction with outputs %s", str(payments_to_send))
|
|
return threads.deferToThread(do_send, payments_to_send)
|
|
logging.info("There were no payments to send")
|
|
return defer.succeed(True)
|
|
|
|
def _get_wallet_balance(self):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
return rpc_conn.getbalance("")
|
|
|
|
def _get_new_address(self):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
return rpc_conn.getnewaddress()
|
|
|
|
def _get_value_for_name(self, name):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
return rpc_conn.getvalueforname(name)
|
|
|
|
def _claim_name(self, name, value, amount):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
return str(rpc_conn.claimname(name, value, amount))
|
|
|
|
def _rpc_stop(self):
|
|
rpc_conn = AuthServiceProxy(self.rpc_conn_string)
|
|
rpc_conn.stop()
|
|
self.lbrycrdd.wait()
|
|
|
|
|
|
class LBRYcrdAddressRequester(object):
|
|
implements([IRequestCreator])
|
|
|
|
def __init__(self, wallet):
|
|
self.wallet = wallet
|
|
self._protocols = []
|
|
|
|
######### IRequestCreator #########
|
|
|
|
def send_next_request(self, peer, protocol):
|
|
|
|
if not protocol in self._protocols:
|
|
r = ClientRequest({'lbrycrd_address': True}, 'lbrycrd_address')
|
|
d = protocol.add_request(r)
|
|
d.addCallback(self._handle_address_response, peer, r, protocol)
|
|
d.addErrback(self._request_failed, peer)
|
|
self._protocols.append(protocol)
|
|
return defer.succeed(True)
|
|
else:
|
|
return defer.succeed(False)
|
|
|
|
######### internal calls #########
|
|
|
|
def _handle_address_response(self, response_dict, peer, request, protocol):
|
|
assert request.response_identifier in response_dict, \
|
|
"Expected %s in dict but did not get it" % request.response_identifier
|
|
assert protocol in self._protocols, "Responding protocol is not in our list of protocols"
|
|
address = response_dict[request.response_identifier]
|
|
self.wallet.update_peer_address(peer, address)
|
|
|
|
def _request_failed(self, err, peer):
|
|
if not err.check(RequestCanceledError):
|
|
logging.warning("A peer failed to send a valid public key response. Error: %s, peer: %s",
|
|
err.getErrorMessage(), str(peer))
|
|
#return err
|
|
|
|
|
|
class LBRYcrdAddressQueryHandlerFactory(object):
|
|
implements(IQueryHandlerFactory)
|
|
|
|
def __init__(self, wallet):
|
|
self.wallet = wallet
|
|
|
|
######### IQueryHandlerFactory #########
|
|
|
|
def build_query_handler(self):
|
|
q_h = LBRYcrdAddressQueryHandler(self.wallet)
|
|
return q_h
|
|
|
|
def get_primary_query_identifier(self):
|
|
return 'lbrycrd_address'
|
|
|
|
def get_description(self):
|
|
return "LBRYcrd Address - an address for receiving payments via LBRYcrd"
|
|
|
|
|
|
class LBRYcrdAddressQueryHandler(object):
|
|
implements(IQueryHandler)
|
|
|
|
def __init__(self, wallet):
|
|
self.wallet = wallet
|
|
self.query_identifiers = ['lbrycrd_address']
|
|
self.address = None
|
|
self.peer = None
|
|
|
|
######### IQueryHandler #########
|
|
|
|
def register_with_request_handler(self, request_handler, peer):
|
|
self.peer = peer
|
|
request_handler.register_query_handler(self, self.query_identifiers)
|
|
|
|
def handle_queries(self, queries):
|
|
|
|
def create_response(address):
|
|
self.address = address
|
|
fields = {'lbrycrd_address': address}
|
|
return fields
|
|
|
|
if self.query_identifiers[0] in queries:
|
|
d = self.wallet.get_new_address_for_peer(self.peer)
|
|
d.addCallback(create_response)
|
|
return d
|
|
if self.address is None:
|
|
logging.warning("Expected a request for an address, but did not receive one")
|
|
return defer.fail(Failure(ValueError("Expected but did not receive an address request")))
|
|
else:
|
|
return defer.succeed({}) |