| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- /* 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 std::{collections::HashMap, fs::create_dir_all, path::PathBuf};
- use async_std::sync::Mutex;
- use async_trait::async_trait;
- use crypto_box::SalsaBox;
- use log::{debug, warn};
- use serde::{Deserialize, Serialize};
- use serde_json::{json, Value};
- use darkfi::{
- net,
- rpc::{
- jsonrpc::{ErrorCode, JsonError, JsonRequest, JsonResult},
- server::RequestHandler,
- },
- util::{path::expand_path, time::Timestamp},
- Error,
- };
- use crate::{
- error::{to_json_result, TaudError, TaudResult},
- month_tasks::MonthTasks,
- task_info::{Comment, TaskInfo},
- util::find_free_id,
- };
- pub struct JsonRpcInterface {
- dataset_path: PathBuf,
- notify_queue_sender: smol::channel::Sender<TaskInfo>,
- nickname: String,
- workspace: Mutex<String>,
- workspaces: HashMap<String, SalsaBox>,
- p2p: net::P2pPtr,
- }
- #[derive(Clone, Debug, Serialize, Deserialize)]
- struct BaseTaskInfo {
- title: String,
- tags: Vec<String>,
- desc: String,
- assign: Vec<String>,
- project: Vec<String>,
- due: Option<Timestamp>,
- rank: Option<f32>,
- }
- #[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("add") => self.add(params).await,
- Some("get_ids") => self.get_ids(params).await,
- Some("update") => self.update(params).await,
- Some("set_state") => self.set_state(params).await,
- Some("set_comment") => self.set_comment(params).await,
- Some("get_task_by_id") => self.get_task_by_id(params).await,
- Some("switch_ws") => self.switch_ws(params).await,
- Some("get_ws") => self.get_ws(params).await,
- Some("export") => self.export_to(params).await,
- Some("import") => self.import_from(params).await,
- Some("get_stop_tasks") => self.get_stop_tasks(params).await,
- Some("ping") => self.pong(params).await,
- Some("get_info") => self.get_info(params).await,
- Some(_) | None => return JsonError::new(ErrorCode::MethodNotFound, None, req.id).into(),
- };
- to_json_result(rep, req.id)
- }
- }
- impl JsonRpcInterface {
- pub fn new(
- dataset_path: PathBuf,
- notify_queue_sender: smol::channel::Sender<TaskInfo>,
- nickname: String,
- workspaces: HashMap<String, SalsaBox>,
- p2p: net::P2pPtr,
- ) -> Self {
- let workspace = Mutex::new(workspaces.iter().last().unwrap().0.clone());
- Self { dataset_path, nickname, workspace, workspaces, notify_queue_sender, 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, _params: &[Value]) -> TaudResult<Value> {
- Ok(json!("pong"))
- }
- // RPCAPI:
- // Retrieves P2P network information.
- // --> {"jsonrpc": "2.0", "method": "get_info", "params": [], "id": 42}
- // <-- {"jsonrpc": "2.0", result": {"nodeID": [], "nodeinfo": [], "id": 42}
- async fn get_info(&self, _params: &[Value]) -> TaudResult<Value> {
- let resp = self.p2p.get_info().await;
- Ok(resp)
- }
- // RPCAPI:
- // Add new task and returns `true` upon success.
- // --> {"jsonrpc": "2.0", "method": "add",
- // "params":
- // [{
- // "title": "..",
- // "desc": "..",
- // assign: [..],
- // project: [..],
- // "due": ..,
- // "rank": ..
- // }],
- // "id": 1
- // }
- // <-- {"jsonrpc": "2.0", "result": true, "id": 1}
- async fn add(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::add() params {:?}", params);
- let task: BaseTaskInfo = serde_json::from_value(params[0].clone())?;
- let mut new_task: TaskInfo = TaskInfo::new(
- self.workspace.lock().await.clone(),
- &task.title,
- &task.desc,
- &self.nickname,
- task.due,
- task.rank,
- &self.dataset_path,
- )?;
- new_task.set_project(&task.project);
- new_task.set_assign(&task.assign);
- new_task.set_tags(&task.tags);
- self.notify_queue_sender.send(new_task).await.map_err(Error::from)?;
- Ok(json!(true))
- }
- // RPCAPI:
- // List tasks
- // --> {"jsonrpc": "2.0", "method": "get_ids", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": [task_id, ...], "id": 1}
- async fn get_ids(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::get_ids() params {:?}", params);
- let ws = self.workspace.lock().await.clone();
- let tasks = MonthTasks::load_current_tasks(&self.dataset_path, ws, false)?;
- let task_ids: Vec<u32> = tasks.iter().map(|task| task.get_id()).collect();
- Ok(json!(task_ids))
- }
- // RPCAPI:
- // Update task and returns `true` upon success.
- // --> {"jsonrpc": "2.0", "method": "update", "params": [task_id, {"title": "new title"} ], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": true, "id": 1}
- async fn update(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::update() params {:?}", params);
- if params.len() != 2 {
- return Err(TaudError::InvalidData("len of params should be 2".into()))
- }
- let ws = self.workspace.lock().await.clone();
- let task = self.check_params_for_update(¶ms[0], ¶ms[1], ws)?;
- self.notify_queue_sender.send(task).await.map_err(Error::from)?;
- Ok(json!(true))
- }
- // RPCAPI:
- // Set state for a task and returns `true` upon success.
- // --> {"jsonrpc": "2.0", "method": "set_state", "params": [task_id, state], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": true, "id": 1}
- async fn set_state(&self, params: &[Value]) -> TaudResult<Value> {
- // Allowed states for a task
- let states = ["stop", "start", "open", "pause"];
- debug!(target: "tau", "JsonRpc::set_state() params {:?}", params);
- if params.len() != 2 {
- return Err(TaudError::InvalidData("len of params should be 2".into()))
- }
- let state: String = serde_json::from_value(params[1].clone())?;
- let ws = self.workspace.lock().await.clone();
- let mut task: TaskInfo = self.load_task_by_id(¶ms[0], ws)?;
- if states.contains(&state.as_str()) {
- task.set_state(&state);
- }
- self.notify_queue_sender.send(task).await.map_err(Error::from)?;
- Ok(json!(true))
- }
- // RPCAPI:
- // Set comment for a task and returns `true` upon success.
- // --> {"jsonrpc": "2.0", "method": "set_comment", "params": [task_id, comment_content], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": true, "id": 1}
- async fn set_comment(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::set_comment() params {:?}", params);
- if params.len() != 2 {
- return Err(TaudError::InvalidData("len of params should be 3".into()))
- }
- let comment_content: String = serde_json::from_value(params[1].clone())?;
- let ws = self.workspace.lock().await.clone();
- let mut task: TaskInfo = self.load_task_by_id(¶ms[0], ws)?;
- task.set_comment(Comment::new(&comment_content, &self.nickname));
- self.notify_queue_sender.send(task).await.map_err(Error::from)?;
- Ok(json!(true))
- }
- // RPCAPI:
- // Get a task by id.
- // --> {"jsonrpc": "2.0", "method": "get_task_by_id", "params": [task_id], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "task", "id": 1}
- async fn get_task_by_id(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::get_task_by_id() params {:?}", params);
- if params.len() != 1 {
- return Err(TaudError::InvalidData("len of params should be 1".into()))
- }
- let ws = self.workspace.lock().await.clone();
- let task: TaskInfo = self.load_task_by_id(¶ms[0], ws)?;
- Ok(json!(task))
- }
- // RPCAPI:
- // Get all tasks.
- // --> {"jsonrpc": "2.0", "method": "get_stop_tasks", "params": [task_id], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "task", "id": 1}
- async fn get_stop_tasks(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::get_stop_tasks() params {:?}", params);
- if params.len() != 1 {
- return Err(TaudError::InvalidData("len of params should be 1".into()))
- }
- let month = params[0].as_i64().map(Timestamp);
- let ws = self.workspace.lock().await.clone();
- let tasks = MonthTasks::load_stop_tasks(&self.dataset_path, ws, month.as_ref())?;
- Ok(json!(tasks))
- }
- // RPCAPI:
- // Switch tasks workspace.
- // --> {"jsonrpc": "2.0", "method": "switch_ws", "params": [workspace], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "true", "id": 1}
- async fn switch_ws(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::switch_ws() params {:?}", params);
- if params.len() != 1 {
- return Err(TaudError::InvalidData("len of params should be 1".into()))
- }
- if !params[0].is_string() {
- return Err(TaudError::InvalidData("Invalid workspace".into()))
- }
- let ws = params[0].as_str().unwrap().to_string();
- let mut s = self.workspace.lock().await;
- if self.workspaces.contains_key(&ws) {
- *s = ws
- } else {
- warn!("Workspace \"{}\" is not configured", ws);
- }
- Ok(json!(true))
- }
- // RPCAPI:
- // Get workspace.
- // --> {"jsonrpc": "2.0", "method": "get_ws", "params": [], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "workspace", "id": 1}
- async fn get_ws(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::switch_ws() params {:?}", params);
- let ws = self.workspace.lock().await.clone();
- Ok(json!(ws))
- }
- // RPCAPI:
- // Export tasks.
- // --> {"jsonrpc": "2.0", "method": "export_to", "params": [path], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "true", "id": 1}
- async fn export_to(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::export_to() params {:?}", params);
- if params.len() != 1 {
- return Err(TaudError::InvalidData("len of params should be 1".into()))
- }
- if !params[0].is_string() {
- return Err(TaudError::InvalidData("Invalid path".into()))
- }
- // mkdir datastore_path if not exists
- let path = expand_path(params[0].as_str().unwrap())?.join("exported_tasks");
- create_dir_all(path.join("month")).map_err(Error::from)?;
- create_dir_all(path.join("task")).map_err(Error::from)?;
- let ws = self.workspace.lock().await.clone();
- let tasks = MonthTasks::load_current_tasks(&self.dataset_path, ws, true)?;
- for task in tasks {
- task.save(&path)?;
- }
- Ok(json!(true))
- }
- // RPCAPI:
- // Import tasks.
- // --> {"jsonrpc": "2.0", "method": "import_from", "params": [path], "id": 1}
- // <-- {"jsonrpc": "2.0", "result": "true", "id": 1}
- async fn import_from(&self, params: &[Value]) -> TaudResult<Value> {
- debug!(target: "tau", "JsonRpc::import_from() params {:?}", params);
- if params.len() != 1 {
- return Err(TaudError::InvalidData("len of params should be 1".into()))
- }
- if !params[0].is_string() {
- return Err(TaudError::InvalidData("Invalid path".into()))
- }
- let path = expand_path(params[0].as_str().unwrap())?.join("exported_tasks");
- let ws = self.workspace.lock().await.clone();
- let mut task_ids: Vec<u32> =
- MonthTasks::load_current_tasks(&self.dataset_path, ws.clone(), false)?
- .into_iter()
- .map(|t| t.id)
- .collect();
- let imported_tasks = MonthTasks::load_current_tasks(&path, ws.clone(), true)?;
- for mut task in imported_tasks {
- if MonthTasks::load_current_tasks(&self.dataset_path, ws.clone(), false)?
- .into_iter()
- .map(|t| t.ref_id)
- .any(|x| x == task.ref_id)
- {
- continue
- }
- task.id = find_free_id(&task_ids);
- task_ids.push(task.id);
- self.notify_queue_sender.send(task).await.map_err(Error::from)?;
- }
- Ok(json!(true))
- }
- fn load_task_by_id(&self, task_id: &Value, ws: String) -> TaudResult<TaskInfo> {
- let task_id: u64 = serde_json::from_value(task_id.clone())?;
- let tasks = MonthTasks::load_current_tasks(&self.dataset_path, ws, false)?;
- let task = tasks.into_iter().find(|t| (t.get_id() as u64) == task_id);
- task.ok_or(TaudError::InvalidId)
- }
- fn check_params_for_update(
- &self,
- task_id: &Value,
- fields: &Value,
- ws: String,
- ) -> TaudResult<TaskInfo> {
- let mut task: TaskInfo = self.load_task_by_id(task_id, ws)?;
- if !fields.is_object() {
- return Err(TaudError::InvalidData("Invalid task's data".into()))
- }
- let fields = fields.as_object().unwrap();
- if fields.contains_key("title") {
- let title = fields.get("title").unwrap().clone();
- let title: String = serde_json::from_value(title)?;
- if !title.is_empty() {
- task.set_title(&title);
- }
- }
- if fields.contains_key("desc") {
- let description = fields.get("desc");
- if let Some(description) = description {
- let description: Option<String> = serde_json::from_value(description.clone())?;
- if let Some(desc) = description {
- task.set_desc(&desc);
- }
- }
- }
- if fields.contains_key("rank") {
- let rank_opt = fields.get("rank");
- if let Some(rank) = rank_opt {
- let rank: Option<f32> = serde_json::from_value(rank.clone())?;
- if let Some(rank) = rank {
- task.set_rank(Some(rank));
- }
- }
- }
- if fields.contains_key("due") {
- let due = fields.get("due").unwrap().clone();
- let due: Option<Option<Timestamp>> = serde_json::from_value(due)?;
- if let Some(d) = due {
- task.set_due(d);
- }
- }
- if fields.contains_key("assign") {
- let assign = fields.get("assign").unwrap().clone();
- let assign: Vec<String> = serde_json::from_value(assign)?;
- if !assign.is_empty() {
- task.set_assign(&assign);
- }
- }
- if fields.contains_key("project") {
- let project = fields.get("project").unwrap().clone();
- let project: Vec<String> = serde_json::from_value(project)?;
- if !project.is_empty() {
- task.set_project(&project);
- }
- }
- if fields.contains_key("tags") {
- let tags = fields.get("tags").unwrap().clone();
- let tags: Vec<String> = serde_json::from_value(tags)?;
- if !tags.is_empty() {
- task.set_tags(&tags);
- }
- }
- Ok(task)
- }
- }
|