| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- /* 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_std::sync::{Arc, Mutex};
- use async_trait::async_trait;
- use log::debug;
- use serde_json::{json, Value};
- use darkfi::{
- event_graph::{
- model::{Event, EventId, ModelPtr},
- protocol_event::SeenPtr,
- },
- net,
- rpc::{
- jsonrpc::{ErrorCode, JsonError, JsonRequest, JsonResponse, JsonResult},
- server::RequestHandler,
- },
- util::time::Timestamp,
- };
- use crate::genevent::GenEvent;
- pub struct JsonRpcInterface {
- _nickname: String,
- missed_events: Arc<Mutex<Vec<Event<GenEvent>>>>,
- model: ModelPtr<GenEvent>,
- seen: SeenPtr<EventId>,
- p2p: net::P2pPtr,
- }
- #[async_trait]
- impl RequestHandler for JsonRpcInterface {
- async fn handle_request(&self, req: JsonRequest) -> JsonResult {
- if !req.params.is_array() {
- return JsonError::new(ErrorCode::InvalidParams, None, req.id).into()
- }
- match req.method.as_str() {
- Some("add") => self.add(req.id, req.params).await,
- Some("list") => self.list(req.id, req.params).await,
- Some("ping") => self.pong(req.id, req.params).await,
- Some("dnet_switch") => self.dnet_switch(req.id, req.params).await,
- Some("dnet_info") => self.dnet_info(req.id, req.params).await,
- Some(_) | None => return JsonError::new(ErrorCode::MethodNotFound, None, req.id).into(),
- }
- }
- }
- impl JsonRpcInterface {
- pub fn new(
- _nickname: String,
- missed_events: Arc<Mutex<Vec<Event<GenEvent>>>>,
- model: ModelPtr<GenEvent>,
- seen: SeenPtr<EventId>,
- p2p: net::P2pPtr,
- ) -> Self {
- Self { _nickname, missed_events, model, seen, p2p }
- }
- // RPCAPI:
- // Replies to a ping method.
- // --> {"jsonrpc": "2.0", "method": "ping", "params": [], "id": 42}
- // <-- {"jsonrpc": "2.0", "result": "pong", "id": 42}
- async fn pong(&self, id: Value, _params: Value) -> JsonResult {
- JsonResponse::new(json!("pong"), id).into()
- }
- // 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: Value, params: Value) -> JsonResult {
- let params = params.as_array().unwrap();
- if params.len() != 1 && params[0].as_bool().is_none() {
- return JsonError::new(ErrorCode::InvalidParams, None, id).into()
- }
- if params[0].as_bool().unwrap() {
- self.p2p.dnet_enable().await;
- } else {
- self.p2p.dnet_disable().await;
- }
- JsonResponse::new(json!(true), id).into()
- }
- // RPCAPI:
- // Retrieves P2P network information.
- // --> {"jsonrpc": "2.0", "method": "dnet_info", "params": [], "id": 42}
- // <-- {"jsonrpc": "2.0", result": {"nodeID": [], "nodeinfo": [], "id": 42}
- async fn dnet_info(&self, id: Value, _params: Value) -> JsonResult {
- let dnet_info = self.p2p.dnet_info().await;
- JsonResponse::new(net::P2p::map_dnet_info(dnet_info), id).into()
- }
- // RPCAPI:
- // Add a new event
- // --> {"jsonrpc": "2.0", "method": "add", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [nickname, ...], "id": 1}
- async fn add(&self, id: Value, params: Value) -> JsonResult {
- let genevent = GenEvent {
- nick: params[0].get("nick").unwrap().to_string(),
- title: params[0].get("title").unwrap().to_string(),
- text: params[0].get("text").unwrap().to_string(),
- };
- let event = Event {
- previous_event_hash: self.model.lock().await.get_head_hash(),
- action: genevent,
- timestamp: Timestamp::current_time(),
- };
- if !self.seen.push(&event.hash()).await {
- let json = json!(false);
- return JsonResponse::new(json, id).into()
- }
- self.p2p.broadcast(&event).await;
- let json = json!(true);
- JsonResponse::new(json, id).into()
- }
- // RPCAPI:
- // List events
- // --> {"jsonrpc": "2.0", "method": "list", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [task_id, ...], "id": 1}
- async fn list(&self, id: Value, _params: Value) -> JsonResult {
- debug!("fetching all events");
- let msd = self.missed_events.lock().await.clone();
- let ser = darkfi_serial::serialize(&msd);
- let json = json!(ser);
- JsonResponse::new(json, id).into()
- }
- }
|