-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlogs.rs
41 lines (36 loc) · 1.12 KB
/
logs.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
use actix_web::web;
use anyhow::Result;
use mongodb::{Client, Collection};
use serde::{Deserialize, Serialize};
use std::sync::Mutex;
use crate::core::common::get_collection;
const COLLECTION_NAME: &str = "logs";
#[derive(Debug, Serialize, Deserialize)]
pub struct Log {
pub timestamp: String,
pub message: String,
}
pub async fn find(state: web::Data<Mutex<Client>>) -> Result<Vec<Log>> {
let logs_collection: Collection<Log> = get_collection(state, COLLECTION_NAME).await?;
let mut cursor = logs_collection.find(None, None).await?;
let mut ret = vec![];
while let Ok(result) = cursor.advance().await {
if result {
let d = match cursor.deserialize_current() {
Ok(d) => d,
Err(_) => {
continue;
}
};
ret.push(d);
} else {
break;
}
}
Ok(ret)
}
pub async fn insert(state: web::Data<Mutex<Client>>, log: Log) -> Result<()> {
let log_collection: Collection<Log> = get_collection(state, COLLECTION_NAME).await?;
log_collection.insert_one(log, None).await?;
Ok(())
}