| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* This file is part of DarkFi (https://dark.fi)
- *
- * Copyright (C) 2020-2023 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 async_trait::async_trait;
- use log::debug;
- use tinyjson::JsonValue;
- use url::Url;
- use darkfi::{
- net,
- rpc::{
- jsonrpc::{ErrorCode, JsonError, JsonRequest, JsonResponse, JsonResult, JsonSubscriber},
- server::RequestHandler,
- },
- };
- pub struct JsonRpcInterface {
- pub addr: Url,
- pub p2p: net::P2pPtr,
- pub dnet_sub: JsonSubscriber,
- }
- #[async_trait]
- impl RequestHandler for JsonRpcInterface {
- async fn handle_request(&self, req: JsonRequest) -> JsonResult {
- debug!(target: "darkirc::rpc", "--> {}", req.stringify().unwrap());
- match req.method.as_str() {
- "ping" => self.pong(req.id, req.params).await,
- "dnet.switch" => self.dnet_switch(req.id, req.params).await,
- "dnet.subscribe_events" => self.dnet_subscribe_events(req.id, req.params).await,
- _ => JsonError::new(ErrorCode::MethodNotFound, None, req.id).into(),
- }
- }
- }
- impl JsonRpcInterface {
- // RPCAPI:
- // Activate or deactivate dnet in the P2P stack.
- // By sending `true`, dnet will be activated, and by sending `false` dnet
- // will be deactivated. Returns `true` on success.
- //
- // --> {"jsonrpc": "2.0", "method": "dnet.switch", "params": [true], "id": 42}
- // <-- {"jsonrpc": "2.0", "result": true, "id": 42}
- async fn dnet_switch(&self, id: u16, params: JsonValue) -> JsonResult {
- let params = params.get::<Vec<JsonValue>>().unwrap();
- if params.len() != 1 || !params[0].is_bool() {
- return JsonError::new(ErrorCode::InvalidParams, None, id).into()
- }
- let switch = params[0].get::<bool>().unwrap();
- if *switch {
- self.p2p.dnet_enable().await;
- } else {
- self.p2p.dnet_disable().await;
- }
- JsonResponse::new(JsonValue::Boolean(true), id).into()
- }
- // RPCAPI:
- // Initializes a subscription to p2p dnet events.
- // Once a subscription is established, `darkirc` will send JSON-RPC notifications of
- // new network events to the subscriber.
- //
- // --> {"jsonrpc": "2.0", "method": "dnet.subscribe_events", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "method": "dnet.subscribe_events", "params": [`event`]}
- pub async fn dnet_subscribe_events(&self, id: u16, params: JsonValue) -> JsonResult {
- let params = params.get::<Vec<JsonValue>>().unwrap();
- if !params.is_empty() {
- return JsonError::new(ErrorCode::InvalidParams, None, id).into()
- }
- self.dnet_sub.clone().into()
- }
- }
|