rpc.rs 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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::collections::HashSet;
  19. use async_trait::async_trait;
  20. use log::debug;
  21. use smol::lock::MutexGuard;
  22. use tinyjson::JsonValue;
  23. use darkfi::{
  24. rpc::{
  25. jsonrpc::{ErrorCode, JsonError, JsonRequest, JsonResponse, JsonResult},
  26. server::RequestHandler,
  27. },
  28. system::StoppableTaskPtr,
  29. util::time::Timestamp,
  30. };
  31. use crate::Darkfid;
  32. #[async_trait]
  33. impl RequestHandler for Darkfid {
  34. async fn handle_request(&self, req: JsonRequest) -> JsonResult {
  35. debug!(target: "darkfid::rpc", "--> {}", req.stringify().unwrap());
  36. match req.method.as_str() {
  37. // =====================
  38. // Miscellaneous methods
  39. // =====================
  40. "ping" => return self.pong(req.id, req.params).await,
  41. "clock" => return self.clock(req.id, req.params).await,
  42. "sync_dnet_switch" => return self.sync_dnet_switch(req.id, req.params).await,
  43. "consensus_dnet_switch" => return self.consensus_dnet_switch(req.id, req.params).await,
  44. // ==================
  45. // Blockchain methods
  46. // ==================
  47. "blockchain.get_slot" => return self.blockchain_get_slot(req.id, req.params).await,
  48. "blockchain.get_tx" => return self.blockchain_get_tx(req.id, req.params).await,
  49. "blockchain.last_known_slot" => {
  50. return self.blockchain_last_known_slot(req.id, req.params).await
  51. }
  52. "blockchain.lookup_zkas" => {
  53. return self.blockchain_lookup_zkas(req.id, req.params).await
  54. }
  55. "blockchain.subscribe_blocks" => {
  56. return self.blockchain_subscribe_blocks(req.id, req.params).await
  57. }
  58. "blockchain.subscribe_txs" => {
  59. return self.blockchain_subscribe_txs(req.id, req.params).await
  60. }
  61. "blockchain.subscribe_proposals" => {
  62. return self.blockchain_subscribe_proposals(req.id, req.params).await
  63. }
  64. // ===================
  65. // Transaction methods
  66. // ===================
  67. "tx.simulate" => return self.tx_simulate(req.id, req.params).await,
  68. "tx.broadcast" => return self.tx_broadcast(req.id, req.params).await,
  69. "tx.pending" => return self.tx_pending(req.id, req.params).await,
  70. "tx.clean_pending" => return self.tx_pending(req.id, req.params).await,
  71. // ==============
  72. // Invalid method
  73. // ==============
  74. _ => JsonError::new(ErrorCode::MethodNotFound, None, req.id).into(),
  75. }
  76. }
  77. async fn connections_mut(&self) -> MutexGuard<'_, HashSet<StoppableTaskPtr>> {
  78. self.rpc_connections.lock().await
  79. }
  80. }
  81. impl Darkfid {
  82. // RPCAPI:
  83. // Returns current system clock as `u64` (String) timestamp.
  84. //
  85. // --> {"jsonrpc": "2.0", "method": "clock", "params": [], "id": 1}
  86. // <-- {"jsonrpc": "2.0", "result": "1234", "id": 1}
  87. async fn clock(&self, id: u16, _params: JsonValue) -> JsonResult {
  88. JsonResponse::new(JsonValue::String(Timestamp::current_time().0.to_string()), id).into()
  89. }
  90. // RPCAPI:
  91. // Activate or deactivate dnet in the sync P2P stack.
  92. // By sending `true`, dnet will be activated, and by sending `false` dnet
  93. // will be deactivated. Returns `true` on success.
  94. //
  95. // --> {"jsonrpc": "2.0", "method": "sync_dnet_switch", "params": [true], "id": 42}
  96. // <-- {"jsonrpc": "2.0", "result": true, "id": 42}
  97. async fn sync_dnet_switch(&self, id: u16, params: JsonValue) -> JsonResult {
  98. let params = params.get::<Vec<JsonValue>>().unwrap();
  99. if params.len() != 1 || !params[0].is_bool() {
  100. return JsonError::new(ErrorCode::InvalidParams, None, id).into()
  101. }
  102. let switch = params[0].get::<bool>().unwrap();
  103. if *switch {
  104. self.sync_p2p.dnet_enable().await;
  105. } else {
  106. self.sync_p2p.dnet_disable().await;
  107. }
  108. JsonResponse::new(JsonValue::Boolean(true), id).into()
  109. }
  110. // RPCAPI:
  111. // Activate or deactivate dnet in the consensus P2P stack.
  112. // By sending `true`, dnet will be activated, and by sending `false` dnet
  113. // will be deactivated. Returns `true` on success.
  114. //
  115. // --> {"jsonrpc": "2.0", "method": "consensus_dnet_switch", "params": [true], "id": 42}
  116. // <-- {"jsonrpc": "2.0", "result": true, "id": 42}
  117. async fn consensus_dnet_switch(&self, id: u16, params: JsonValue) -> JsonResult {
  118. let params = params.get::<Vec<JsonValue>>().unwrap();
  119. if params.len() != 1 || !params[0].is_bool() {
  120. return JsonError::new(ErrorCode::InvalidParams, None, id).into()
  121. }
  122. if self.consensus_p2p.is_some() {
  123. let switch = params[0].get::<bool>().unwrap();
  124. if *switch {
  125. self.consensus_p2p.clone().unwrap().dnet_enable().await;
  126. } else {
  127. self.consensus_p2p.clone().unwrap().dnet_disable().await;
  128. }
  129. }
  130. JsonResponse::new(JsonValue::Boolean(true), id).into()
  131. }
  132. }