-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathprotocol.rs
More file actions
139 lines (118 loc) · 3.61 KB
/
protocol.rs
File metadata and controls
139 lines (118 loc) · 3.61 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
//! Definition of Internal Router and Websocket protocol messages
//!
//! This module is a structured definition of several protocol. Both
//! messages received from the client and messages sent from the server are
//! defined here. The `derive(Deserialize)` and `derive(Serialize)` annotations
//! are used to generate the ability to serialize these structures to JSON,
//! using the `serde` crate. More docs for serde can be found at
//! <https://serde.rs>
use std::collections::HashMap;
use std::str::FromStr;
use serde_derive::{Deserialize, Serialize};
use uuid::Uuid;
use autopush_common::notification::Notification;
#[derive(Debug, Eq, PartialEq, Serialize)]
#[serde(untagged)]
pub enum BroadcastValue {
Value(String),
Nested(HashMap<String, BroadcastValue>),
}
#[derive(Debug, Default)]
// Used for the server to flag a webpush client to deliver a Notification or Check storage
pub enum ServerNotification {
CheckStorage,
Notification(Notification),
#[default]
Disconnect,
}
#[derive(Debug, Deserialize)]
#[serde(tag = "messageType", rename_all = "snake_case")]
pub enum ClientMessage {
Hello {
uaid: Option<String>,
#[serde(rename = "channelIDs", skip_serializing_if = "Option::is_none")]
_channel_ids: Option<Vec<Uuid>>,
#[serde(skip_serializing_if = "Option::is_none")]
broadcasts: Option<HashMap<String, String>>,
},
Register {
#[serde(rename = "channelID")]
channel_id: String,
key: Option<String>,
},
Unregister {
#[serde(rename = "channelID")]
channel_id: Uuid,
code: Option<u32>,
},
BroadcastSubscribe {
broadcasts: HashMap<String, String>,
},
Ack {
updates: Vec<ClientAck>,
},
Nack {
code: Option<i32>,
version: String,
},
Ping,
}
impl FromStr for ClientMessage {
type Err = serde_json::error::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
// parse empty object "{}" as a Ping
serde_json::from_str::<HashMap<(), ()>>(s)
.map(|_| ClientMessage::Ping)
.or_else(|_| serde_json::from_str(s))
}
}
/// Returned ACKnowledgement of the received message by the User Agent.
/// This is the payload for the `messageType:ack` packet.
///
#[derive(Debug, Deserialize)]
pub struct ClientAck {
// The channel_id which received messages
#[serde(rename = "channelID")]
pub channel_id: Uuid,
// The corresponding version number for the message.
pub version: String,
pub code: Option<u32>,
}
#[derive(Debug, Serialize)]
#[serde(tag = "messageType", rename_all = "snake_case")]
pub enum ServerMessage {
Hello {
uaid: String,
status: u32,
// This is required for output, but will always be "true"
use_webpush: bool,
broadcasts: HashMap<String, BroadcastValue>,
},
Register {
#[serde(rename = "channelID")]
channel_id: Uuid,
status: u32,
#[serde(rename = "pushEndpoint")]
push_endpoint: String,
},
Unregister {
#[serde(rename = "channelID")]
channel_id: Uuid,
status: u32,
},
Broadcast {
broadcasts: HashMap<String, BroadcastValue>,
},
Notification(Notification),
Ping,
}
impl ServerMessage {
pub fn to_json(&self) -> Result<String, serde_json::error::Error> {
match self {
// clients recognize {"messageType": "ping"} but traditionally both
// client/server send the empty object version
ServerMessage::Ping => Ok("{}".to_owned()),
_ => serde_json::to_string(self),
}
}
}