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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
|
use std::str::FromStr;
use chrono::Utc;
use lampada::{Connected, SupervisorSender};
use stanza::{
client::{
Stanza,
iq::{self, Iq, IqType},
},
stanza_error::Error as StanzaError,
xep_0030,
};
use tracing::{debug, error, info, warn};
use uuid::Uuid;
use crate::{
UpdateMessage,
chat::{Body, Message},
error::{DatabaseError, Error, IqError, MessageRecvError, PresenceError, RosterError},
presence::{Offline, Online, Presence, PresenceType, Show},
roster::Contact,
};
use super::ClientLogic;
pub async fn handle_stanza(logic: ClientLogic, stanza: Stanza, connection: Connected) {
let result = process_stanza(logic.clone(), stanza, connection).await;
match result {
Ok(u) => match u {
_ => {
if let Some(u) = u {
logic.handle_update(u).await
}
}
},
Err(e) => logic.handle_error(e).await,
}
}
pub async fn recv_message(
logic: ClientLogic,
stanza_message: stanza::client::message::Message,
) -> Result<Option<UpdateMessage>, MessageRecvError> {
if let Some(mut from) = stanza_message.from {
// TODO: don't ignore delay from. xep says SHOULD send error if incorrect.
let timestamp = stanza_message
.delay
.map(|delay| delay.stamp)
.unwrap_or_else(|| Utc::now());
// TODO: group chat messages
let mut message = Message {
id: stanza_message
.id
// TODO: proper id storage
.map(|id| Uuid::from_str(&id).unwrap_or_else(|_| Uuid::new_v4()))
.unwrap_or_else(|| Uuid::new_v4()),
from: from.clone(),
timestamp,
body: Body {
// TODO: should this be an option?
body: stanza_message
.body
.map(|body| body.body)
.unwrap_or_default()
.unwrap_or_default(),
},
};
// TODO: can this be more efficient?
logic
.db()
.create_message_with_user_resource_and_chat(message.clone(), from.clone())
.await
.map_err(|e| DatabaseError(e.into()))?;
message.from = message.from.as_bare();
from = from.as_bare();
Ok(Some(UpdateMessage::Message { to: from, message }))
} else {
Err(MessageRecvError::MissingFrom)
}
}
pub async fn recv_presence(
presence: stanza::client::presence::Presence,
) -> Result<Option<UpdateMessage>, PresenceError> {
if let Some(from) = presence.from {
match presence.r#type {
Some(r#type) => match r#type {
// error processing a presence from somebody
stanza::client::presence::PresenceType::Error => {
// TODO: is there any other information that should go with the error? also MUST have an error, otherwise it's a different error. maybe it shoulnd't be an option.
// TODO: ughhhhhhhhhhhhh these stanza errors should probably just have an option, and custom display
Err(PresenceError::StanzaError(
presence
.errors
.first()
.cloned()
.expect("error MUST have error"),
))
}
// should not happen (error to server)
stanza::client::presence::PresenceType::Probe => {
// TODO: should probably write an error and restart stream
Err(PresenceError::Unsupported)
}
stanza::client::presence::PresenceType::Subscribe => {
// may get a subscription request from somebody who is not a contact!!! therefore should be its own kind of event
Ok(Some(UpdateMessage::SubscriptionRequest(from)))
}
stanza::client::presence::PresenceType::Unavailable => {
let offline = Offline {
status: presence.status.map(|status| status.status.0),
};
let timestamp = presence
.delay
.map(|delay| delay.stamp)
.unwrap_or_else(|| Utc::now());
Ok(Some(UpdateMessage::Presence {
from,
presence: Presence {
timestamp,
presence: PresenceType::Offline(offline),
},
}))
}
// for now, do nothing, as these are simply informational. will receive roster push from the server regarding the changes to do with them.
stanza::client::presence::PresenceType::Subscribed => Ok(None),
stanza::client::presence::PresenceType::Unsubscribe => Ok(None),
stanza::client::presence::PresenceType::Unsubscribed => Ok(None),
},
None => {
let online = Online {
show: presence.show.map(|show| match show {
stanza::client::presence::Show::Away => Show::Away,
stanza::client::presence::Show::Chat => Show::Chat,
stanza::client::presence::Show::Dnd => Show::DoNotDisturb,
stanza::client::presence::Show::Xa => Show::ExtendedAway,
}),
status: presence.status.map(|status| status.status.0),
priority: presence.priority.map(|priority| priority.0),
};
let timestamp = presence
.delay
.map(|delay| delay.stamp)
.unwrap_or_else(|| Utc::now());
Ok(Some(UpdateMessage::Presence {
from,
presence: Presence {
timestamp,
presence: PresenceType::Online(online),
},
}))
}
}
} else {
Err(PresenceError::MissingFrom)
}
}
pub async fn recv_iq(
logic: ClientLogic,
connection: Connected,
iq: Iq,
) -> Result<Option<UpdateMessage>, IqError> {
if let Some(to) = &iq.to {
if *to == *connection.jid() {
} else {
return Err(IqError::IncorrectAddressee(to.clone()));
}
}
match iq.r#type {
stanza::client::iq::IqType::Error | stanza::client::iq::IqType::Result => {
let send;
{
send = logic.pending().lock().await.remove(&iq.id);
}
let from = iq
.from
.clone()
.unwrap_or_else(|| connection.server().clone());
if let Some(send) = send {
debug!("received iq result from {}", from);
let _ = send.send(Ok(Stanza::Iq(iq)));
Ok(None)
} else {
Err(IqError::NoMatchingId(iq.id))
}
}
stanza::client::iq::IqType::Get => {
let from = iq
.from
.clone()
.unwrap_or_else(|| connection.server().clone());
if let Some(query) = iq.query {
match query {
stanza::client::iq::Query::DiscoInfo(_query) => {
// TODO: should this only be replied to server?
info!("received disco#info request from {}", from);
let disco = xep_0030::info::Query {
node: None,
features: vec![xep_0030::info::Feature {
var: "http://jabber.org/protocol/disco#info".to_string(),
}],
identities: vec![xep_0030::info::Identity {
category: "client".to_string(),
name: Some("filamento".to_string()),
r#type: "pc".to_string(),
}],
};
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Result,
lang: None,
query: Some(iq::Query::DiscoInfo(disco)),
errors: vec![],
};
connection.write_handle().write(Stanza::Iq(iq)).await?;
info!("replied to disco#info request from {}", from);
Ok(None)
}
_ => {
warn!("received unsupported iq get from {}", from);
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Error,
lang: None,
query: None,
errors: vec![StanzaError::ServiceUnavailable.into()],
};
connection.write_handle().write(Stanza::Iq(iq)).await?;
warn!("replied to unsupported iq get from {}", from);
Ok(None)
} // stanza::client::iq::Query::Bind(bind) => todo!(),
// stanza::client::iq::Query::DiscoItems(query) => todo!(),
// stanza::client::iq::Query::Ping(ping) => todo!(),
// stanza::client::iq::Query::Roster(query) => todo!(),
// stanza::client::iq::Query::Unsupported => todo!(),
}
} else {
info!("received malformed iq query from {}", from);
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Error,
lang: None,
query: None,
errors: vec![StanzaError::BadRequest.into()],
};
connection.write_handle().write(Stanza::Iq(iq)).await?;
info!("replied to malformed iq query from {}", from);
Ok(None)
}
}
stanza::client::iq::IqType::Set => {
let from = iq
.from
.clone()
.unwrap_or_else(|| connection.server().clone());
if let Some(query) = iq.query {
match query {
stanza::client::iq::Query::Roster(mut query) => {
// TODO: should only have one, otherwise send error
// if let Some(item) = query.items.pop() && query.items.len() == 1 {
if let Some(item) = query.items.pop() {
match item.subscription {
Some(stanza::roster::Subscription::Remove) => {
if let Err(e) =
logic.db().delete_contact(item.jid.clone()).await
{
error!("{}", RosterError::Cache(e.into()));
}
Ok(Some(UpdateMessage::RosterDelete(item.jid)))
}
_ => {
let contact: Contact = item.into();
if let Err(e) = logic.db().upsert_contact(contact.clone()).await
{
error!("{}", RosterError::Cache(e.into()));
}
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Result,
lang: None,
query: None,
errors: vec![],
};
if let Err(e) =
connection.write_handle().write(Stanza::Iq(iq)).await
{
error!("could not reply to roster set: {}", e);
}
Ok(Some(UpdateMessage::RosterUpdate(contact)))
}
}
} else {
warn!("received malformed roster push");
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Error,
lang: None,
query: None,
errors: vec![StanzaError::NotAcceptable.into()],
};
connection.write_handle().write(Stanza::Iq(iq)).await?;
Ok(None)
}
}
// TODO: send unsupported to server
_ => {
warn!("received unsupported iq set from {}", from);
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Error,
lang: None,
query: None,
errors: vec![StanzaError::ServiceUnavailable.into()],
};
connection.write_handle().write(Stanza::Iq(iq)).await?;
warn!("replied to unsupported iq set from {}", from);
Ok(None)
}
}
} else {
warn!("received malformed iq set from {}", from);
let iq = Iq {
from: Some(connection.jid().clone()),
id: iq.id,
to: iq.from,
r#type: IqType::Error,
lang: None,
query: None,
errors: vec![StanzaError::NotAcceptable.into()],
};
connection.write_handle().write(Stanza::Iq(iq)).await?;
Ok(None)
}
}
}
}
pub async fn process_stanza(
logic: ClientLogic,
stanza: Stanza,
connection: Connected,
) -> Result<Option<UpdateMessage>, Error> {
let update = match stanza {
Stanza::Message(stanza_message) => Ok(recv_message(logic, stanza_message).await?),
Stanza::Presence(presence) => Ok(recv_presence(presence).await?),
Stanza::Iq(iq) => Ok(recv_iq(logic, connection.clone(), iq).await?),
// unreachable, always caught by lampada
// TODO: make cleaner than this in some way
Stanza::Error(error) => {
unreachable!()
}
// should this cause a stream restart?
Stanza::OtherContent(content) => {
Err(Error::UnrecognizedContent)
// TODO: send error to write_thread
}
};
update
}
|