mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 12:33:40 +00:00
361 lines
12 KiB
Rust
361 lines
12 KiB
Rust
use std::collections::{BTreeMap, HashMap};
|
|
use std::fmt;
|
|
use std::str::FromStr;
|
|
|
|
use chrono::{DateTime, Utc};
|
|
use color_eyre::eyre::eyre;
|
|
use patch_db::{DbHandle, LockType};
|
|
use rpc_toolkit::command;
|
|
use sqlx::SqlitePool;
|
|
use tokio::sync::Mutex;
|
|
use tracing::instrument;
|
|
|
|
use crate::context::RpcContext;
|
|
use crate::db::util::WithRevision;
|
|
use crate::s9pk::manifest::PackageId;
|
|
use crate::util::{display_none, display_serializable};
|
|
use crate::{Error, ErrorKind};
|
|
|
|
#[command(subcommands(list, delete, delete_before, create))]
|
|
pub async fn notification() -> Result<(), Error> {
|
|
Ok(())
|
|
}
|
|
|
|
#[command(display(display_serializable))]
|
|
#[instrument(skip(ctx))]
|
|
pub async fn list(
|
|
#[context] ctx: RpcContext,
|
|
#[arg] before: Option<u32>,
|
|
#[arg] limit: Option<u32>,
|
|
) -> Result<WithRevision<Vec<Notification>>, Error> {
|
|
let limit = limit.unwrap_or(40);
|
|
let mut handle = ctx.db.handle();
|
|
match before {
|
|
None => {
|
|
let model = crate::db::DatabaseModel::new()
|
|
.server_info()
|
|
.unread_notification_count();
|
|
model.lock(&mut handle, LockType::Write).await;
|
|
let records = sqlx::query!(
|
|
"SELECT id, package_id, created_at, code, level, title, message, data FROM notifications ORDER BY id DESC LIMIT ?",
|
|
limit
|
|
).fetch_all(&ctx.secret_store).await?;
|
|
let notifs = records
|
|
.into_iter()
|
|
.map(|r| {
|
|
Ok(Notification {
|
|
id: r.id as u32,
|
|
package_id: r.package_id.and_then(|p| p.parse().ok()),
|
|
created_at: DateTime::from_utc(r.created_at, Utc),
|
|
code: r.code as u32,
|
|
level: match r.level.parse::<NotificationLevel>() {
|
|
Ok(a) => a,
|
|
Err(e) => return Err(e.into()),
|
|
},
|
|
title: r.title,
|
|
message: r.message,
|
|
data: match r.data {
|
|
None => serde_json::Value::Null,
|
|
Some(v) => match v.parse::<serde_json::Value>() {
|
|
Ok(a) => a,
|
|
Err(e) => {
|
|
return Err(Error::new(
|
|
eyre!("Invalid Notification Data: {}", e),
|
|
ErrorKind::ParseDbField,
|
|
))
|
|
}
|
|
},
|
|
},
|
|
})
|
|
})
|
|
.collect::<Result<Vec<Notification>, Error>>()?;
|
|
// set notification count to zero
|
|
let r = model.put(&mut handle, &0).await?;
|
|
Ok(WithRevision {
|
|
response: notifs,
|
|
revision: r,
|
|
})
|
|
}
|
|
Some(before) => {
|
|
let records = sqlx::query!(
|
|
"SELECT id, package_id, created_at, code, level, title, message, data FROM notifications WHERE id < ? ORDER BY id DESC LIMIT ?",
|
|
before,
|
|
limit
|
|
).fetch_all(&ctx.secret_store).await?;
|
|
let res = records
|
|
.into_iter()
|
|
.map(|r| {
|
|
Ok(Notification {
|
|
id: r.id as u32,
|
|
package_id: r.package_id.and_then(|p| p.parse().ok()),
|
|
created_at: DateTime::from_utc(r.created_at, Utc),
|
|
code: r.code as u32,
|
|
level: match r.level.parse::<NotificationLevel>() {
|
|
Ok(a) => a,
|
|
Err(e) => return Err(e.into()),
|
|
},
|
|
title: r.title,
|
|
message: r.message,
|
|
data: match r.data {
|
|
None => serde_json::Value::Null,
|
|
Some(v) => match v.parse::<serde_json::Value>() {
|
|
Ok(a) => a,
|
|
Err(e) => {
|
|
return Err(Error::new(
|
|
eyre!("Invalid Notification Data: {}", e),
|
|
ErrorKind::ParseDbField,
|
|
))
|
|
}
|
|
},
|
|
},
|
|
})
|
|
})
|
|
.collect::<Result<Vec<Notification>, Error>>()?;
|
|
Ok(WithRevision {
|
|
response: res,
|
|
revision: None,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
#[command(display(display_none))]
|
|
pub async fn delete(#[context] ctx: RpcContext, #[arg] id: u32) -> Result<(), Error> {
|
|
sqlx::query!("DELETE FROM notifications WHERE id = ?", id)
|
|
.execute(&ctx.secret_store)
|
|
.await?;
|
|
Ok(())
|
|
}
|
|
|
|
#[command(rename = "delete-before", display(display_none))]
|
|
pub async fn delete_before(#[context] ctx: RpcContext, #[arg] before: u32) -> Result<(), Error> {
|
|
sqlx::query!("DELETE FROM notifications WHERE id < ?", before)
|
|
.execute(&ctx.secret_store)
|
|
.await?;
|
|
Ok(())
|
|
}
|
|
|
|
#[command(display(display_none))]
|
|
pub async fn create(
|
|
#[context] ctx: RpcContext,
|
|
#[arg] package: Option<PackageId>,
|
|
#[arg] level: NotificationLevel,
|
|
#[arg] title: String,
|
|
#[arg] message: String,
|
|
) -> Result<(), Error> {
|
|
ctx.notification_manager
|
|
.notify(
|
|
&mut ctx.db.handle(),
|
|
package,
|
|
level,
|
|
title,
|
|
message,
|
|
NotificationSubtype::General,
|
|
)
|
|
.await
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, serde::Serialize, serde::Deserialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub enum NotificationLevel {
|
|
Success,
|
|
Info,
|
|
Warning,
|
|
Error,
|
|
}
|
|
impl fmt::Display for NotificationLevel {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
match self {
|
|
NotificationLevel::Success => write!(f, "success"),
|
|
NotificationLevel::Info => write!(f, "info"),
|
|
NotificationLevel::Warning => write!(f, "warning"),
|
|
NotificationLevel::Error => write!(f, "error"),
|
|
}
|
|
}
|
|
}
|
|
pub struct InvalidNotificationLevel(String);
|
|
impl From<InvalidNotificationLevel> for crate::Error {
|
|
fn from(val: InvalidNotificationLevel) -> Self {
|
|
Error::new(
|
|
eyre!("Invalid Notification Level: {}", val.0),
|
|
ErrorKind::ParseDbField,
|
|
)
|
|
}
|
|
}
|
|
impl FromStr for NotificationLevel {
|
|
type Err = InvalidNotificationLevel;
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
|
match s {
|
|
s if s == "success" => Ok(NotificationLevel::Success),
|
|
s if s == "info" => Ok(NotificationLevel::Info),
|
|
s if s == "warning" => Ok(NotificationLevel::Warning),
|
|
s if s == "error" => Ok(NotificationLevel::Error),
|
|
s => Err(InvalidNotificationLevel(s.to_string())),
|
|
}
|
|
}
|
|
}
|
|
impl fmt::Display for InvalidNotificationLevel {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "Invalid Notification Level: {}", self.0)
|
|
}
|
|
}
|
|
#[derive(Debug, serde::Serialize, serde::Deserialize)]
|
|
#[serde(rename_all = "kebab-case")]
|
|
pub struct Notification {
|
|
id: u32,
|
|
package_id: Option<PackageId>, // TODO change for package id newtype
|
|
created_at: DateTime<Utc>,
|
|
code: u32,
|
|
level: NotificationLevel,
|
|
title: String,
|
|
message: String,
|
|
data: serde_json::Value,
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub enum NotificationSubtype {
|
|
General,
|
|
BackupReport {
|
|
server_attempted: bool,
|
|
server_error: Option<String>,
|
|
packages: BTreeMap<String, Option<String>>,
|
|
},
|
|
}
|
|
impl NotificationSubtype {
|
|
fn to_json(&self) -> serde_json::Value {
|
|
match self {
|
|
NotificationSubtype::General => serde_json::Value::Null,
|
|
NotificationSubtype::BackupReport {
|
|
server_attempted,
|
|
server_error,
|
|
packages,
|
|
} => {
|
|
let mut pkgs_map = serde_json::Map::new();
|
|
for (k, v) in packages.iter() {
|
|
pkgs_map.insert(
|
|
k.clone(),
|
|
match v {
|
|
None => serde_json::json!({ "error": serde_json::Value::Null }),
|
|
Some(x) => serde_json::json!({ "error": x }),
|
|
},
|
|
);
|
|
}
|
|
serde_json::json!({
|
|
"server": {
|
|
"attempted": server_attempted,
|
|
"error": server_error,
|
|
},
|
|
"packages": serde_json::Value::Object(pkgs_map)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
fn code(&self) -> u32 {
|
|
match self {
|
|
Self::General => 0,
|
|
Self::BackupReport {
|
|
server_attempted: _,
|
|
server_error: _,
|
|
packages: _,
|
|
} => 1,
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct NotificationManager {
|
|
sqlite: SqlitePool,
|
|
cache: Mutex<HashMap<(Option<PackageId>, NotificationLevel, String), i64>>,
|
|
debounce_interval: u32,
|
|
}
|
|
impl NotificationManager {
|
|
pub fn new(sqlite: SqlitePool, debounce_interval: u32) -> Self {
|
|
NotificationManager {
|
|
sqlite,
|
|
cache: Mutex::new(HashMap::new()),
|
|
debounce_interval,
|
|
}
|
|
}
|
|
#[instrument(skip(self, db))]
|
|
pub async fn notify<Db: DbHandle>(
|
|
&self,
|
|
db: &mut Db,
|
|
package_id: Option<PackageId>,
|
|
level: NotificationLevel,
|
|
title: String,
|
|
message: String,
|
|
subtype: NotificationSubtype,
|
|
) -> Result<(), Error> {
|
|
if !self.should_notify(&package_id, &level, &title).await {
|
|
return Ok(());
|
|
}
|
|
let mut count = crate::db::DatabaseModel::new()
|
|
.server_info()
|
|
.unread_notification_count()
|
|
.get_mut(db)
|
|
.await?;
|
|
let sql_package_id = package_id.map::<String, _>(|p| p.into());
|
|
let sql_code = subtype.code();
|
|
let sql_level = format!("{}", level);
|
|
let sql_data = format!("{}", subtype.to_json());
|
|
sqlx::query!(
|
|
"INSERT INTO notifications (package_id, code, level, title, message, data) VALUES (?, ?, ?, ?, ?, ?)",
|
|
sql_package_id,
|
|
sql_code,
|
|
sql_level,
|
|
title,
|
|
message,
|
|
sql_data
|
|
).execute(&self.sqlite).await?;
|
|
*count += 1;
|
|
count.save(db).await?;
|
|
Ok(())
|
|
}
|
|
async fn gc(&self) {
|
|
let mut guard = self.cache.lock().await;
|
|
let mut temp = HashMap::new();
|
|
for (k, v) in (*guard).drain() {
|
|
if v + self.debounce_interval as i64 > Utc::now().timestamp() {
|
|
temp.insert(k, v);
|
|
}
|
|
}
|
|
*guard = temp
|
|
}
|
|
async fn should_notify(
|
|
&self,
|
|
package_id: &Option<PackageId>,
|
|
level: &NotificationLevel,
|
|
title: &String,
|
|
) -> bool {
|
|
if level == &NotificationLevel::Error {
|
|
return true;
|
|
}
|
|
self.gc().await;
|
|
let mut guard = self.cache.lock().await;
|
|
let k = (package_id.clone(), level.clone(), title.clone());
|
|
let v = (*guard).get(&k);
|
|
match v {
|
|
None => {
|
|
(*guard).insert(k, Utc::now().timestamp());
|
|
true
|
|
}
|
|
Some(t) => {
|
|
if t + self.debounce_interval as i64 > Utc::now().timestamp() {
|
|
false
|
|
} else {
|
|
// this path should be very rare due to gc above
|
|
(*guard).remove(&k);
|
|
true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn serialization() {
|
|
println!(
|
|
"{}",
|
|
serde_json::json!({ "test": "abcdefg", "num": 32, "nested": { "inner": null, "xyz": [0,2,4]}})
|
|
)
|
|
}
|