aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-client/src/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'atuin-client/src/event.rs')
-rw-r--r--atuin-client/src/event.rs47
1 files changed, 47 insertions, 0 deletions
diff --git a/atuin-client/src/event.rs b/atuin-client/src/event.rs
new file mode 100644
index 00000000..4e76c077
--- /dev/null
+++ b/atuin-client/src/event.rs
@@ -0,0 +1,47 @@
+use chrono::Utc;
+use serde::{Deserialize, Serialize};
+
+use crate::history::History;
+use atuin_common::utils::uuid_v4;
+
+#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq)]
+pub enum EventType {
+ Create,
+ Delete,
+}
+
+#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, sqlx::FromRow)]
+pub struct Event {
+ pub id: String,
+ pub timestamp: chrono::DateTime<Utc>,
+ pub hostname: String,
+ pub event_type: EventType,
+
+ pub history_id: String,
+}
+
+impl Event {
+ pub fn new_create(history: &History) -> Event {
+ Event {
+ id: uuid_v4(),
+ timestamp: history.timestamp,
+ hostname: history.hostname.clone(),
+ event_type: EventType::Create,
+
+ history_id: history.id.clone(),
+ }
+ }
+
+ pub fn new_delete(history_id: &str) -> Event {
+ let hostname = format!("{}:{}", whoami::hostname(), whoami::username());
+
+ Event {
+ id: uuid_v4(),
+ timestamp: chrono::Utc::now(),
+ hostname,
+ event_type: EventType::Create,
+
+ history_id: history_id.to_string(),
+ }
+ }
+}