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.
 
 
 
 

224 lines
6.7 KiB

from __future__ import print_function
"""
Commands defining client-server (daemon)
messaging protocol (*not* Joinmarket p2p protocol).
Used for AMP asynchronous messages.
"""
from twisted.protocols.amp import Boolean, Command, Integer, String
from bigstring import BigString
class DaemonNotReady(Exception):
pass
class JMCommand(Command):
#a default response type
response = [('accepted', Boolean())]
"""COMMANDS FROM CLIENT TO DAEMON
=================================
"""
"""Messages used by both MAKER and TAKER
"""
class JMInit(JMCommand):
"""Communicates the client's required setup
configuration.
Blockchain source is communicated only as a naming
tag for messagechannels (currently IRC 'realname' field).
"""
arguments = [('bcsource', String()),
('network', String()),
('irc_configs', String()),
('minmakers', Integer()),
('maker_timeout_sec', Integer())]
errors = {DaemonNotReady: 'daemon is not ready'}
class JMStartMC(JMCommand):
"""Will restart message channel connections if config
has changed; otherwise will only change nym/nick on MCs.
"""
arguments = [('nick', String())]
class JMSetup(JMCommand):
"""Communicates which of "MAKER" or "TAKER"
roles are to be taken by this client; for MAKER
role, passes initial offers for announcement (for TAKER, this data is "none")
"""
arguments = [('role', String()),
('initdata', String())]
class JMMsgSignature(JMCommand):
"""A response to a request for a bitcoin signature
on a message-channel layer message from the daemon
"""
arguments = [('nick', String()),
('cmd', String()),
('msg_to_return', String()),
('hostid', String())]
class JMMsgSignatureVerify(JMCommand):
"""A response to a request to verify the bitcoin signature
of a message-channel layer message from the daemon
"""
arguments = [('verif_result', Boolean()),
('nick', String()),
('fullmsg', String()),
('hostid', String())]
"""TAKER specific commands
"""
class JMRequestOffers(JMCommand):
"""Get orderbook from daemon
"""
arguments = []
class JMFill(JMCommand):
"""Fill an offer/order
"""
arguments = [('amount', Integer()),
('commitment', String()),
('revelation', String()),
('filled_offers', String())]
class JMMakeTx(JMCommand):
"""Send a hex encoded raw bitcoin transaction
to a set of counterparties
"""
arguments = [('nick_list', String()),
('txhex', String())]
class JMPushTx(JMCommand):
"""Pass a raw hex transaction to a specific
counterparty (maker) for pushing (anonymity feature in JM)
"""
arguments = [('nick', String()),
('txhex', String())]
"""MAKER specific commands
"""
class JMAnnounceOffers(JMCommand):
"""Send list (actually dict) of offers
to the daemon, along with new announcement
and cancellation lists (deltas).
"""
arguments = [('to_announce', String()),
('to_cancel', String()),
('offerlist', String())]
class JMIOAuth(JMCommand):
"""Send contents of !ioauth message after
verifying Taker's auth message
"""
arguments = [('nick', String()),
('utxolist', String()),
('pubkey', String()),
('cjaddr', String()),
('changeaddr', String()),
('pubkeysig', String())]
class JMTXSigs(JMCommand):
"""Send signatures on the bitcoin transaction
sent by TAKER
"""
arguments = [('nick', String()),
('sigs', String())]
"""COMMANDS FROM DAEMON TO CLIENT
=================================
"""
class JMInitProto(JMCommand):
"""Pass to the client the messaging protocol parameters
(which are defined in daemon package), required to construct
the user nick, given the bitcoin private key used for authentication
(that key being controlled by the client; the daemon knows nothing
about bitcoin).
"""
arguments = [('nick_hash_length', Integer()),
('nick_max_encoded', Integer()),
('joinmarket_nick_header', String()),
('joinmarket_version', Integer())]
class JMUp(JMCommand):
"""Used to signal readiness of message channels to client.
"""
arguments = []
class JMSetupDone(JMCommand):
"""Used to signal that initial setup action
has been taken (e.g. !orderbook call).
"""
arguments = []
class JMRequestMsgSig(JMCommand):
"""Request the client to sign a message-channel
layer message with the bitcoin key for the nick
"""
arguments = [('nick', String()),
('cmd', String()),
('msg', String()),
('msg_to_be_signed', String()),
('hostid', String())]
class JMRequestMsgSigVerify(JMCommand):
"""Request the client to verify a counterparty's
message-channel layer message against the provided nick
"""
arguments = [('msg', String()),
('fullmsg', String()),
('sig', String()),
('pubkey', String()),
('nick', String()),
('hashlen', Integer()),
('max_encoded', Integer()),
('hostid', String())]
""" TAKER-specific commands
"""
class JMOffers(JMCommand):
"""Return the entire contents of the
orderbook to TAKER, as a json-ified dict;
note uses BigString because can be very large
"""
arguments = [('orderbook', BigString())]
class JMFillResponse(JMCommand):
"""Returns ioauth data from MAKER if successful.
"""
arguments = [('success', Boolean()),
('ioauth_data', String())]
class JMSigReceived(JMCommand):
"""Returns an individual bitcoin transaction signature
from a MAKER
"""
arguments = [('nick', String()),
('sig', String())]
"""MAKER-specific commands
"""
class JMAuthReceived(JMCommand):
"""Return the commitment and revelation
provided in !fill, !auth by the TAKER,
allowing the MAKER to verify against btc library
before setting up encryption and continuing.
"""
arguments = [('nick', String()),
('offer', String()),
('commitment', String()),
('revelation', String()),
('amount', Integer()),
('kphex', String())]
class JMTXReceived(JMCommand):
"""Send back transaction template provided
by TAKER, along with offerdata to verify fees.
"""
arguments = [('nick', String()),
('txhex', String()),
('offer', String())]