mithril_aggregator/event_store/
event.rs1use chrono::{DateTime, Utc};
2use mithril_common::entities::SignerWithStake;
3use serde::Serialize;
4
5use std::collections::HashMap;
6
7#[derive(Debug, Clone, PartialEq)]
9pub struct EventMessage {
10 pub source: String,
15
16 pub action: String,
19
20 pub content: serde_json::Value,
22
23 pub headers: HashMap<String, String>,
25}
26
27impl EventMessage {
28 pub fn new<T>(source: &str, action: &str, content: &T, headers: Vec<(&str, &str)>) -> Self
30 where
31 T: Serialize,
32 {
33 let content = serde_json::json!(content);
34
35 EventMessage {
36 source: source.to_string(),
37 action: action.to_string(),
38 content,
39 headers: headers
40 .into_iter()
41 .map(|(h, v)| (h.to_string(), v.to_string()))
42 .collect(),
43 }
44 }
45
46 pub fn signer_registration(
48 source: &str,
49 signer_with_stake: &SignerWithStake,
50 signer_node_version: Option<String>,
51 epoch_str: &str,
52 ) -> Self {
53 let mut headers: Vec<(&str, &str)> = match signer_node_version.as_ref() {
54 Some(version) => vec![("signer-node-version", version)],
55 None => Vec::new(),
56 };
57
58 if !epoch_str.is_empty() {
59 headers.push(("epoch", epoch_str));
60 }
61
62 Self::new::<SignerWithStake>(source, "register_signer", signer_with_stake, headers)
63 }
64}
65
66pub struct Event {
68 pub event_id: i64,
70
71 pub created_at: DateTime<Utc>,
73
74 pub source: String,
76
77 pub action: String,
79
80 pub content: String,
82}