| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2026 Dyne.org foundation
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
- use std::collections::HashSet;
- use async_trait::async_trait;
- use smol::lock::MutexGuard;
- use tracing::debug;
- use darkfi::{
- rpc::{
- jsonrpc::{ErrorCode, JsonError, JsonRequest, JsonResult},
- server::RequestHandler,
- },
- system::StoppableTaskPtr,
- };
- use crate::DarkfiNode;
- /// Blockchain related methods
- mod blockchain;
- /// Transactions related methods
- mod tx;
- /// Stratum JSON-RPC related methods for native mining
- pub mod stratum;
- /// HTTP JSON-RPC related methods for merge mining
- pub mod xmr;
- /// Misc JSON-RPC methods
- pub mod misc;
- /// Node management JSON-RPC methods
- pub mod management;
- /// Default JSON-RPC `RequestHandler`
- pub struct DefaultRpcHandler;
- #[async_trait]
- #[rustfmt::skip]
- impl RequestHandler<DefaultRpcHandler> for DarkfiNode {
- async fn handle_request(&self, req: JsonRequest) -> JsonResult {
- debug!(target: "darkfid::rpc", "--> {}", req.stringify().unwrap());
- match req.method.as_str() {
- // =====================
- // Miscellaneous methods
- // =====================
- "ping" => <DarkfiNode as RequestHandler<DefaultRpcHandler>>::pong(self, req.id, req.params).await,
- "clock" => self.clock(req.id, req.params).await,
- // ==================
- // Blockchain methods
- // ==================
- "blockchain.get_block" => self.blockchain_get_block(req.id, req.params).await,
- "blockchain.get_tx" => self.blockchain_get_tx(req.id, req.params).await,
- "blockchain.get_difficulty" => self.blockchain_get_difficulty(req.id, req.params).await,
- "blockchain.last_confirmed_block" => self.blockchain_last_confirmed_block(req.id, req.params).await,
- "blockchain.best_fork_next_block_height" => self.blockchain_best_fork_next_block_height(req.id, req.params).await,
- "blockchain.block_target" => self.blockchain_block_target(req.id, req.params).await,
- "blockchain.lookup_wasm" => self.blockchain_lookup_wasm(req.id, req.params).await,
- "blockchain.lookup_zkas" => self.blockchain_lookup_zkas(req.id, req.params).await,
- "blockchain.get_contract_state" => self.blockchain_get_contract_state(req.id, req.params).await,
- "blockchain.get_contract_state_key" => self.blockchain_get_contract_state_key(req.id, req.params).await,
- "blockchain.subscribe_blocks" => self.blockchain_subscribe_blocks(req.id, req.params).await,
- "blockchain.subscribe_txs" => self.blockchain_subscribe_txs(req.id, req.params).await,
- "blockchain.subscribe_proposals" => self.blockchain_subscribe_proposals(req.id, req.params).await,
- // ===================
- // Transaction methods
- // ===================
- "tx.simulate" => self.tx_simulate(req.id, req.params).await,
- "tx.broadcast" => self.tx_broadcast(req.id, req.params).await,
- "tx.pending" => self.tx_pending(req.id, req.params).await,
- "tx.rebroadcast_pending" => self.tx_rebroadcast_pending(req.id, req.params).await,
- "tx.clean_pending" => self.tx_clean_pending(req.id, req.params).await,
- "tx.calculate_fee" => self.tx_calculate_fee(req.id, req.params).await,
- // ==============
- // Invalid method
- // ==============
- _ => JsonError::new(ErrorCode::MethodNotFound, None, req.id).into(),
- }
- }
- async fn connections_mut(&self) -> MutexGuard<'life0, HashSet<StoppableTaskPtr>> {
- self.rpc_connections.lock().await
- }
- }
|