2021-03-03 18:46:54 -05:00
|
|
|
use anyhow::{Context, Result};
|
2021-03-03 19:28:58 -05:00
|
|
|
use libp2p::core::Multiaddr;
|
|
|
|
use libp2p::PeerId;
|
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::str::FromStr;
|
2020-11-05 19:10:22 -05:00
|
|
|
use uuid::Uuid;
|
2020-10-28 23:45:45 -04:00
|
|
|
|
2021-02-25 23:24:13 -05:00
|
|
|
pub const DEFAULT_ALICE_MULTIADDR: &str = "/dns4/xmr-btc-asb.coblox.tech/tcp/9876";
|
|
|
|
pub const DEFAULT_ALICE_PEER_ID: &str = "12D3KooWCdMKjesXMJz1SiZ7HgotrxuqhQJbP5sgBm2BwP1cqThi";
|
2021-02-24 20:05:07 -05:00
|
|
|
|
2020-12-15 05:26:02 -05:00
|
|
|
#[derive(structopt::StructOpt, Debug)]
|
2021-02-10 17:47:42 -05:00
|
|
|
pub struct Arguments {
|
2021-01-26 21:33:32 -05:00
|
|
|
#[structopt(
|
2021-02-10 23:21:34 -05:00
|
|
|
long = "config",
|
|
|
|
help = "Provide a custom path to the configuration file. The configuration file must be a toml file.",
|
2021-01-26 21:33:32 -05:00
|
|
|
parse(from_os_str)
|
|
|
|
)]
|
2021-02-10 23:21:34 -05:00
|
|
|
pub config: Option<PathBuf>,
|
2020-12-15 05:26:02 -05:00
|
|
|
|
2021-02-28 20:19:05 -05:00
|
|
|
#[structopt(long, help = "Activate debug logging.")]
|
|
|
|
pub debug: bool,
|
|
|
|
|
2020-12-15 05:26:02 -05:00
|
|
|
#[structopt(subcommand)]
|
2021-03-02 06:07:48 -05:00
|
|
|
pub cmd: Command,
|
2020-12-15 05:26:02 -05:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:14:39 -04:00
|
|
|
#[derive(structopt::StructOpt, Debug)]
|
2021-01-04 22:08:36 -05:00
|
|
|
#[structopt(name = "xmr_btc-swap", about = "XMR BTC atomic swap")]
|
2020-12-15 05:26:02 -05:00
|
|
|
pub enum Command {
|
2020-12-04 00:27:17 -05:00
|
|
|
BuyXmr {
|
2021-03-03 18:46:54 -05:00
|
|
|
#[structopt(long = "receive-address", parse(try_from_str = parse_monero_address))]
|
2021-03-02 06:07:48 -05:00
|
|
|
receive_monero_address: monero::Address,
|
|
|
|
|
2021-02-24 20:05:07 -05:00
|
|
|
#[structopt(long = "connect-peer-id", default_value = DEFAULT_ALICE_PEER_ID)]
|
2020-12-18 01:39:04 -05:00
|
|
|
alice_peer_id: PeerId,
|
|
|
|
|
2021-02-24 20:05:07 -05:00
|
|
|
#[structopt(
|
2021-02-25 22:44:48 -05:00
|
|
|
long = "connect-addr",
|
|
|
|
default_value = DEFAULT_ALICE_MULTIADDR
|
2021-02-24 20:05:07 -05:00
|
|
|
)]
|
2020-10-29 07:18:59 -04:00
|
|
|
alice_addr: Multiaddr,
|
2020-10-28 23:45:45 -04:00
|
|
|
},
|
2020-11-05 00:55:30 -05:00
|
|
|
History,
|
2021-02-25 22:44:48 -05:00
|
|
|
Resume {
|
2021-03-03 18:46:54 -05:00
|
|
|
#[structopt(long = "receive-address", parse(try_from_str = parse_monero_address))]
|
2021-03-02 06:07:48 -05:00
|
|
|
receive_monero_address: monero::Address,
|
|
|
|
|
2020-12-20 22:43:44 -05:00
|
|
|
#[structopt(long = "swap-id")]
|
|
|
|
swap_id: Uuid,
|
|
|
|
|
2021-02-25 22:44:48 -05:00
|
|
|
// TODO: Remove Alice peer-id/address, it should be saved in the database when running swap
|
|
|
|
// and loaded from the database when running resume/cancel/refund
|
2021-02-24 20:05:07 -05:00
|
|
|
#[structopt(long = "counterpart-peer-id", default_value = DEFAULT_ALICE_PEER_ID)]
|
2020-12-18 01:39:04 -05:00
|
|
|
alice_peer_id: PeerId,
|
|
|
|
|
2021-02-24 20:05:07 -05:00
|
|
|
#[structopt(
|
2021-02-25 22:44:48 -05:00
|
|
|
long = "counterpart-addr",
|
|
|
|
default_value = DEFAULT_ALICE_MULTIADDR
|
2021-02-24 20:05:07 -05:00
|
|
|
)]
|
2020-12-18 01:39:04 -05:00
|
|
|
alice_addr: Multiaddr,
|
2020-11-05 19:10:22 -05:00
|
|
|
},
|
2021-02-25 22:44:48 -05:00
|
|
|
Cancel {
|
2021-02-01 00:10:43 -05:00
|
|
|
#[structopt(long = "swap-id")]
|
2021-02-01 00:25:33 -05:00
|
|
|
swap_id: Uuid,
|
|
|
|
|
2021-02-01 06:32:54 -05:00
|
|
|
#[structopt(short, long)]
|
|
|
|
force: bool,
|
2021-02-01 00:25:33 -05:00
|
|
|
},
|
2021-02-25 22:44:48 -05:00
|
|
|
Refund {
|
2021-02-01 00:25:33 -05:00
|
|
|
#[structopt(long = "swap-id")]
|
2021-02-01 00:10:43 -05:00
|
|
|
swap_id: Uuid,
|
|
|
|
|
2021-02-01 06:32:54 -05:00
|
|
|
#[structopt(short, long)]
|
|
|
|
force: bool,
|
2021-02-01 00:10:43 -05:00
|
|
|
},
|
|
|
|
}
|
2021-02-28 18:53:43 -05:00
|
|
|
|
2021-03-03 18:46:54 -05:00
|
|
|
fn parse_monero_address(s: &str) -> Result<monero::Address> {
|
|
|
|
monero::Address::from_str(s).with_context(|| {
|
|
|
|
format!(
|
|
|
|
"Failed to parse {} as a monero address, please make sure it is a valid address",
|
|
|
|
s
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-28 19:00:30 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2021-03-02 06:07:48 -05:00
|
|
|
use crate::cli::command::{DEFAULT_ALICE_MULTIADDR, DEFAULT_ALICE_PEER_ID};
|
2021-03-03 19:28:58 -05:00
|
|
|
use libp2p::core::Multiaddr;
|
|
|
|
use libp2p::PeerId;
|
2021-02-28 19:00:30 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn parse_default_alice_peer_id_success() {
|
|
|
|
DEFAULT_ALICE_PEER_ID
|
|
|
|
.parse::<PeerId>()
|
|
|
|
.expect("default alice peer id str is a valid PeerId");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn parse_default_alice_multiaddr_success() {
|
|
|
|
DEFAULT_ALICE_MULTIADDR
|
|
|
|
.parse::<Multiaddr>()
|
|
|
|
.expect("default alice multiaddr str is a valid Multiaddr>");
|
|
|
|
}
|
|
|
|
}
|