panorama/crates/panorama-daemon/src/node.rs

358 lines
8.3 KiB
Rust
Raw Normal View History

2024-06-02 23:12:03 +00:00
use std::{
collections::{BTreeMap, HashMap},
result,
};
2024-05-25 15:11:34 +00:00
2024-05-25 10:04:05 +00:00
use axum::{
2024-05-27 05:43:09 +00:00
extract::{Path, Query, State},
2024-05-25 11:45:23 +00:00
http::StatusCode,
2024-06-02 23:12:03 +00:00
routing::get,
Json, Router,
2024-05-25 10:04:05 +00:00
};
2024-05-27 06:27:17 +00:00
use cozo::{DataValue, DbInstance, MultiTransaction, ScriptMutability, Vector};
use itertools::Itertools;
2024-05-25 10:04:05 +00:00
use serde_json::Value;
2024-06-02 21:37:36 +00:00
use utoipa::{OpenApi, ToSchema};
2024-05-27 06:27:17 +00:00
use uuid::Uuid;
2024-05-25 10:04:05 +00:00
use crate::{error::AppResult, AppState};
2024-06-02 23:12:03 +00:00
/// Node API
2024-06-02 21:37:36 +00:00
#[derive(OpenApi)]
#[openapi(paths(get_node), components(schemas(GetNodeResult)))]
pub(super) struct NodeApi;
2024-06-02 23:12:03 +00:00
pub(super) fn router() -> Router<AppState> {
Router::new().route("/:id", get(get_node))
}
2024-06-02 21:37:36 +00:00
#[derive(Serialize, Deserialize, ToSchema, Clone)]
struct GetNodeResult {
node: String,
extra_data: Value,
content: String,
day: Option<String>,
created_at: f64,
updated_at: f64,
r#type: String,
title: String,
}
2024-06-02 23:12:03 +00:00
/// Get all info about a single node
2024-06-02 21:37:36 +00:00
#[utoipa::path(
get,
path = "/{id}",
responses(
2024-06-02 23:12:03 +00:00
(status = 200, body = [GetNodeResult])
),
params(
("id" = String, Path, description = "Node ID"),
),
2024-06-02 21:37:36 +00:00
)]
2024-05-25 10:04:05 +00:00
pub async fn get_node(
State(state): State<AppState>,
Path(node_id): Path<String>,
2024-05-25 11:45:23 +00:00
) -> AppResult<(StatusCode, Json<Value>)> {
2024-05-25 10:04:05 +00:00
let result = state.db.run_script(
"
2024-05-25 11:45:23 +00:00
j[content] := *journal{ node_id, content }, node_id = $node_id
j[content] := not *journal{ node_id }, node_id = $node_id, content = null
2024-05-25 10:37:25 +00:00
2024-05-25 16:13:07 +00:00
jd[day] := *journal_day{ node_id, day }, node_id = $node_id
jd[day] := not *journal_day{ node_id }, node_id = $node_id, day = null
2024-05-25 10:37:25 +00:00
2024-05-25 11:45:23 +00:00
?[
2024-05-25 16:13:07 +00:00
extra_data, content, day, created_at, updated_at, type, title
] := *node{ id, type, title, created_at, updated_at, extra_data },
2024-05-25 11:45:23 +00:00
j[content],
2024-05-25 10:37:25 +00:00
jd[day],
id = $node_id
:limit 1
2024-05-25 10:04:05 +00:00
",
btmap! {"node_id".to_owned() => node_id.clone().into()},
ScriptMutability::Immutable,
)?;
2024-05-25 11:45:23 +00:00
if result.rows.len() == 0 {
return Ok((StatusCode::NOT_FOUND, Json(json!(null))));
}
2024-05-25 10:37:25 +00:00
let row = &result.rows[0];
let extra_data = row[0].get_str();
let day = row[2].get_str();
2024-05-25 10:04:05 +00:00
2024-05-25 11:45:23 +00:00
Ok((
StatusCode::OK,
Json(json!({
"node": node_id,
"extra_data": extra_data,
"content": row[1].get_str(),
"day": day,
"created_at": row[3].get_float(),
"updated_at": row[4].get_float(),
"type": row[5].get_str(),
2024-05-25 16:13:07 +00:00
"title": row[6].get_str(),
2024-05-25 11:45:23 +00:00
})),
))
}
2024-05-25 15:11:34 +00:00
#[derive(Deserialize, Debug)]
pub struct UpdateData {
title: Option<String>,
2024-05-27 06:27:17 +00:00
extra_data: Option<ExtraData>,
2024-05-25 15:11:34 +00:00
}
2024-05-25 11:45:23 +00:00
2024-06-02 23:12:03 +00:00
#[utoipa::path(
post,
path = "/{id}",
responses(
(status = 200)
),
params(
("id" = String, Path, description = "Node ID"),
)
)]
2024-05-25 11:45:23 +00:00
pub async fn update_node(
State(state): State<AppState>,
Path(node_id): Path<String>,
2024-05-25 15:11:34 +00:00
Json(update_data): Json<UpdateData>,
2024-05-25 11:45:23 +00:00
) -> AppResult<Json<Value>> {
2024-05-27 04:07:02 +00:00
let node_id_data = DataValue::from(node_id.clone());
// TODO: Combine these into the same script
2024-05-25 15:11:34 +00:00
2024-05-27 02:56:12 +00:00
let tx = state.db.multi_transaction(true);
2024-05-27 04:35:18 +00:00
if let Some(title) = update_data.title {
let title = DataValue::from(title);
tx.run_script(
"
# Always update the time
?[ id, title ] <- [[ $node_id, $title ]]
:update node { id, title }
",
btmap! {
"node_id".to_owned() => node_id_data.clone(),
"title".to_owned() => title,
},
)?;
}
2024-05-27 02:56:12 +00:00
if let Some(extra_data) = update_data.extra_data {
2024-05-27 06:27:17 +00:00
let result = get_rows_for_extra_keys(&tx, &extra_data)?;
2024-05-27 04:07:02 +00:00
for (key, (relation, field_name, ty)) in result.iter() {
let new_value = extra_data.get(key).unwrap();
// TODO: Make this more generic
let new_value = DataValue::from(new_value.as_str().unwrap());
let query = format!(
"
?[ node_id, {field_name} ] <- [[$node_id, $input_data]]
:update {relation} {{ node_id, {field_name} }}
"
);
2024-05-27 06:27:17 +00:00
2024-05-27 04:07:02 +00:00
let result = tx.run_script(
&query,
btmap! {
"node_id".to_owned() => node_id_data.clone(),
"input_data".to_owned() => new_value,
},
)?;
}
2024-05-27 02:56:12 +00:00
}
2024-05-27 04:07:02 +00:00
tx.run_script(
"
# Always update the time
?[ id, updated_at ] <- [[ $node_id, now() ]]
:update node { id, updated_at }
",
btmap! {
"node_id".to_owned() => node_id_data,
},
2024-05-27 04:35:18 +00:00
)?;
2024-05-27 04:07:02 +00:00
2024-05-27 02:56:12 +00:00
tx.commit()?;
2024-05-25 11:45:23 +00:00
Ok(Json(json!({})))
2024-05-25 10:04:05 +00:00
}
2024-05-25 15:11:34 +00:00
pub async fn node_types() -> AppResult<Json<Value>> {
Ok(Json(json!({
"types": [
{ "id": "panorama/journal/page", "display": "Journal Entry" },
]
})))
}
2024-05-27 05:43:09 +00:00
2024-05-27 06:27:17 +00:00
#[derive(Debug, Deserialize)]
pub struct CreateNodeOpts {
// TODO: Allow submitting a string
// id: Option<String>,
#[serde(rename = "type")]
ty: String,
extra_data: Option<ExtraData>,
}
pub async fn create_node(
State(state): State<AppState>,
Json(opts): Json<CreateNodeOpts>,
) -> AppResult<Json<Value>> {
let node_id = Uuid::now_v7();
let node_id = node_id.to_string();
let tx = state.db.multi_transaction(true);
let result = tx.run_script(
"
?[id, type] <- [[$node_id, $type]]
:put node { id, type }
",
btmap! {
"node_id".to_owned() => DataValue::from(node_id.clone()),
"type".to_owned() => DataValue::from(opts.ty),
},
);
if let Some(extra_data) = opts.extra_data {
let result = get_rows_for_extra_keys(&tx, &extra_data)?;
let result_by_relation = result
.iter()
.into_group_map_by(|(key, (relation, field_name, ty))| relation);
for (relation, fields) in result_by_relation.iter() {
let fields_mapping = fields
.into_iter()
2024-05-27 19:44:24 +00:00
.map(|(key, (_, field_name, ty))| {
2024-05-27 06:27:17 +00:00
let new_value = extra_data.get(*key).unwrap();
// TODO: Make this more generic
2024-05-27 19:44:24 +00:00
let new_value = match ty.as_str() {
"int" => DataValue::from(new_value.as_i64().unwrap()),
_ => DataValue::from(new_value.as_str().unwrap()),
};
2024-05-27 06:27:17 +00:00
(field_name.to_owned(), new_value)
})
.collect::<BTreeMap<_, _>>();
let keys = fields_mapping.keys().collect::<Vec<_>>();
let keys_joined = keys.iter().join(", ");
let query = format!(
"
?[ node_id, {keys_joined} ] <- [$input_data]
:insert {relation} {{ node_id, {keys_joined} }}
"
);
let mut params = vec![];
params.push(DataValue::from(node_id.clone()));
for key in keys {
params.push(fields_mapping[key].clone());
}
let result = tx.run_script(
&query,
btmap! {
"input_data".to_owned() => DataValue::List(params),
},
)?;
}
}
tx.commit()?;
Ok(Json(json!({
"node_id": node_id,
})))
2024-05-27 05:43:09 +00:00
}
#[derive(Deserialize)]
pub struct SearchQuery {
query: String,
}
pub async fn search_nodes(
State(state): State<AppState>,
Query(query): Query<SearchQuery>,
) -> AppResult<Json<Value>> {
2024-05-27 07:02:19 +00:00
// TODO: This is temporary, there may be more ways to search so tacking on *
// at the end may destroy some queries
let query = format!("{}*", query.query);
2024-05-27 05:43:09 +00:00
let results = state.db.run_script(
"
2024-05-27 06:27:17 +00:00
results[node_id, content, score] := ~journal:text_index {node_id, content, |
query: $q,
k: 10,
score_kind: 'tf_idf',
bind_score: score
}
?[node_id, content, title, score] :=
results[node_id, content, score],
*node{ id: node_id, title }
:order -score
2024-05-27 05:43:09 +00:00
",
btmap! {
2024-05-27 07:02:19 +00:00
"q".to_owned() => DataValue::from(query),
2024-05-27 05:43:09 +00:00
},
ScriptMutability::Immutable,
)?;
let results = results
.rows
.into_iter()
.map(|row| {
json!({
"node_id": row[0].get_str().unwrap(),
"content": row[1].get_str().unwrap(),
2024-05-27 06:27:17 +00:00
"title": row[2].get_str().unwrap(),
"score": row[3].get_float().unwrap(),
2024-05-27 05:43:09 +00:00
})
})
.collect::<Vec<_>>();
Ok(Json(json!({
"results": results
})))
}
2024-05-27 06:27:17 +00:00
type ExtraData = HashMap<String, Value>;
fn get_rows_for_extra_keys(
tx: &MultiTransaction,
extra_data: &ExtraData,
) -> AppResult<HashMap<String, (String, String, String)>> {
let result = tx.run_script(
"
?[key, relation, field_name, type] :=
*fqkey_to_dbkey{key, relation, field_name, type},
is_in(key, $keys)
",
btmap! {
"keys".to_owned() => DataValue::List(
extra_data
.keys()
.map(|s| DataValue::from(s.as_str()))
.collect::<Vec<_>>()
),
},
)?;
let s = |s: &DataValue| s.get_str().unwrap().to_owned();
Ok(
result
.rows
.into_iter()
.map(|row| (s(&row[0]), (s(&row[1]), s(&row[2]), s(&row[3]))))
.collect::<HashMap<_, _>>(),
)
}