| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- use async_trait::async_trait;
- use log::error;
- use serde_json::{json, Value};
- use darkfi::{
- rpc::{
- jsonrpc::{ErrorCode, JsonError, JsonRequest, JsonResponse, JsonResult},
- server::RequestHandler,
- },
- Error,
- };
- pub struct JsonRpcInterface {
- sender: async_channel::Sender<(String, bool, Vec<String>)>,
- receiver: async_channel::Receiver<Vec<Vec<(String, String)>>>,
- }
- #[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()
- }
- let params = req.params.as_array().unwrap();
- let rep = match req.method.as_str() {
- Some("update") => self.update(req.id, params).await,
- Some("restore") => self.restore(req.id, params).await,
- Some("log") => self.log(req.id, params).await,
- Some(_) | None => return JsonError::new(ErrorCode::MethodNotFound, None, req.id).into(),
- };
- rep
- }
- }
- impl JsonRpcInterface {
- pub fn new(
- sender: async_channel::Sender<(String, bool, Vec<String>)>,
- receiver: async_channel::Receiver<Vec<Vec<(String, String)>>>,
- ) -> Self {
- Self { sender, receiver }
- }
- // RPCAPI:
- // Update files
- // --> {"jsonrpc": "2.0", "method": "update", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [[(String, String)]], "id": 1}
- async fn update(&self, id: Value, params: &[Value]) -> JsonResult {
- let dry = params[0].as_bool().unwrap();
- let files: Vec<String> =
- params[1].as_array().unwrap().iter().map(|f| f.as_str().unwrap().to_string()).collect();
- let res = self.sender.send(("update".into(), dry, files)).await.map_err(Error::from);
- if let Err(e) = res {
- error!("Failed to update: {}", e);
- return JsonError::new(ErrorCode::InternalError, None, id).into()
- }
- let response = self.receiver.recv().await.unwrap();
- JsonResponse::new(json!(response), id).into()
- }
- // RPCAPI:
- // Undo the local changes
- // --> {"jsonrpc": "2.0", "method": "restore", "params": [dry, files], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [String, ..], "id": 1}
- async fn restore(&self, id: Value, params: &[Value]) -> JsonResult {
- let dry = params[0].as_bool().unwrap();
- let files: Vec<String> =
- params[1].as_array().unwrap().iter().map(|f| f.as_str().unwrap().to_string()).collect();
- let res = self.sender.send(("restore".into(), dry, files)).await.map_err(Error::from);
- if let Err(e) = res {
- error!("Failed to restore: {}", e);
- return JsonError::new(ErrorCode::InternalError, None, id).into()
- }
- let response = self.receiver.recv().await.unwrap();
- JsonResponse::new(json!(response), id).into()
- }
- // RPCAPI:
- // Show all patches
- // --> {"jsonrpc": "2.0", "method": "log", "params": [dry, files], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [[(String, String)]], "id": 1}
- async fn log(&self, id: Value, _params: &[Value]) -> JsonResult {
- JsonResponse::new(json!(true), id).into()
- }
- }
|