cli_util.rs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* This file is part of DarkFi (https://dark.fi)
  2. *
  3. * Copyright (C) 2020-2023 Dyne.org foundation
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as
  7. * published by the Free Software Foundation, either version 3 of the
  8. * License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. use std::{path::Path, process::exit};
  19. use async_std::{fs::File, io::WriteExt};
  20. use darkfi::{util::parse::decode_base10, Result};
  21. use darkfi_sdk::crypto::TokenId;
  22. use super::Drk;
  23. pub fn parse_value_pair(s: &str) -> Result<(u64, u64)> {
  24. let v: Vec<&str> = s.split(':').collect();
  25. if v.len() != 2 {
  26. eprintln!("Invalid value pair. Use a pair such as 13.37:11.0");
  27. exit(1);
  28. }
  29. // TODO: We shouldn't be hardcoding everything to 8 decimals.
  30. let val0 = decode_base10(v[0], 8, true);
  31. let val1 = decode_base10(v[1], 8, true);
  32. if val0.is_err() || val1.is_err() {
  33. eprintln!("Invalid value pair. Use a pair such as 13.37:11.0");
  34. exit(1);
  35. }
  36. Ok((val0.unwrap(), val1.unwrap()))
  37. }
  38. pub async fn parse_token_pair(drk: &Drk, s: &str) -> Result<(TokenId, TokenId)> {
  39. let v: Vec<&str> = s.split(':').collect();
  40. if v.len() != 2 {
  41. eprintln!("Invalid token pair. Use a pair such as:");
  42. eprintln!("WCKD:MLDY");
  43. eprintln!("or");
  44. eprintln!("A7f1RKsCUUHrSXA7a9ogmwg8p3bs6F47ggsW826HD4yd:FCuoMii64H5Ee4eVWBjP18WTFS8iLUJmGi16Qti1xFQ2");
  45. exit(1);
  46. }
  47. let tok0 = drk.get_token(v[0].to_string()).await;
  48. let tok1 = drk.get_token(v[1].to_string()).await;
  49. if tok0.is_err() || tok1.is_err() {
  50. eprintln!("Invalid token pair. Use a pair such as:");
  51. eprintln!("WCKD:MLDY");
  52. eprintln!("or");
  53. eprintln!("A7f1RKsCUUHrSXA7a9ogmwg8p3bs6F47ggsW826HD4yd:FCuoMii64H5Ee4eVWBjP18WTFS8iLUJmGi16Qti1xFQ2");
  54. exit(1);
  55. }
  56. Ok((tok0.unwrap(), tok1.unwrap()))
  57. }
  58. /// Fun police go away
  59. pub async fn kaching() -> Result<()> {
  60. #[cfg(feature = "play")]
  61. {
  62. const WALLET_MP3: &[u8] = include_bytes!("../wallet.mp3");
  63. const MP3_DROP: &str = "/tmp/wallet.mp3";
  64. if !Path::new(MP3_DROP).exists() {
  65. let mut f = File::create(MP3_DROP).await?;
  66. f.write_all(WALLET_MP3).await?;
  67. }
  68. if play::play(MP3_DROP).is_err() {
  69. return Ok(())
  70. }
  71. }
  72. Ok(())
  73. }