megalodon 1.0.1

Mastodon and Pleroma API client library for Rust.
Documentation
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
use std::fmt;
use std::future::Future;
use std::pin::Pin;
use std::thread;
use std::time::Duration;

use super::entities;
use crate::default::DEFAULT_UA;
use crate::error::{Error, Kind};
use crate::streaming::{Message, Streaming};
use async_trait::async_trait;
use futures_util::{SinkExt, StreamExt};
use serde::Deserialize;
use serde_json::json;
use tokio::net::TcpStream;
use tokio_tungstenite::{
    connect_async,
    tungstenite::{
        client::IntoClientRequest,
        http::StatusCode,
        protocol::{frame::coding::CloseCode, Message as WebSocketMessage},
        Error as WebSocketError,
    },
    MaybeTlsStream, WebSocketStream,
};
use tracing::{debug, error, info, warn};
use url::Url;
use uuid::Uuid;

const RECONNECT_INTERVAL: u64 = 5000;
const READ_MESSAGE_TIMEOUT_SECONDS: u64 = 60;

#[derive(Debug, Clone)]
pub struct WebSocket {
    url: String,
    channel: String,
    list_id: Option<String>,
    access_token: Option<String>,
    user_agent: String,
    channel_id: String,
}

#[derive(Deserialize)]
struct RawMessage {
    r#type: String,
    body: MessageBody,
}

#[derive(Deserialize)]
struct MessageBody {
    id: String,
    r#type: String,
    body: serde_json::Value,
}

impl WebSocket {
    pub fn new(
        url: String,
        channel: String,
        list_id: Option<String>,
        access_token: Option<String>,
        user_agent: Option<String>,
    ) -> Self {
        let ua: String;
        match user_agent {
            Some(agent) => ua = agent,
            None => ua = DEFAULT_UA.to_string(),
        }
        Self {
            url,
            channel,
            list_id,
            access_token,
            user_agent: ua,
            channel_id: Uuid::new_v4().to_string(),
        }
    }

    fn parse(&self, message: WebSocketMessage) -> Result<Message, Error> {
        if message.is_ping() || message.is_pong() {
            Ok(Message::Heartbeat())
        } else if message.is_text() {
            let text = message.to_text()?;
            let Ok(mes) = serde_json::from_str::<RawMessage>(text) else {
                return Ok(Message::Heartbeat());
            };
            if mes.r#type != "channel" || mes.body.id != self.channel_id {
                return Ok(Message::Heartbeat());
            }
            match &*mes.body.r#type {
                "note" => {
                    let res = serde_json::from_value::<entities::Note>(mes.body.body.clone())
                        .map_err(|e| {
                            error!(
                                "failed to parse note: {}\n{}",
                                e.to_string(),
                                &mes.body.body
                            );
                            e
                        })?;
                    Ok(Message::Update(res.into()))
                }
                "notification" => {
                    let res =
                        serde_json::from_value::<entities::Notification>(mes.body.body.clone())
                            .map_err(|e| {
                                error!(
                                    "failed to parse notification: {}\n{}",
                                    e.to_string(),
                                    &mes.body.body
                                );
                                e
                            })?;
                    Ok(Message::Notification(res.into()))
                }
                "mention" => {
                    let res = serde_json::from_value::<entities::Note>(mes.body.body.clone())
                        .map_err(|e| {
                            error!(
                                "failed to parse note: {}\n{}",
                                e.to_string(),
                                &mes.body.body
                            );
                            e
                        })?;
                    Ok(Message::Conversation(res.into()))
                }
                unknown => {
                    warn!("Unknown body type message is received: {}", unknown);
                    Ok(Message::Heartbeat())
                }
            }
        } else {
            Err(Error::new_own(
                String::from("Receiving message is not ping, pong or text"),
                Kind::ParseError,
                None,
                None,
                None,
            ))
        }
    }

    async fn connect(
        &self,
        url: &str,
        callback: Box<
            dyn Fn(Message) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync + '_,
        >,
    ) {
        loop {
            match self.do_connect(url, &callback).await {
                Ok(()) => {
                    info!("connection for {} is  closed", url);
                    return;
                }
                Err(err) => match err.kind {
                    InnerKind::ConnectionError
                    | InnerKind::SocketReadError
                    | InnerKind::UnusualSocketCloseError
                    | InnerKind::TimeoutError => {
                        thread::sleep(Duration::from_millis(RECONNECT_INTERVAL));
                        info!("Reconnecting to {}", url);
                        continue;
                    }
                    InnerKind::UnauthorizedError => {
                        info!("Unauthorized so give up");
                        return;
                    }
                },
            }
        }
    }

    async fn do_connect(
        &self,
        url: &str,
        callback: &Box<
            dyn Fn(Message) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync + '_,
        >,
    ) -> Result<(), InnerError> {
        let mut req = Url::parse(url)
            .unwrap()
            .into_client_request()
            .map_err(|e| {
                error!("Failed to parse url: {}", e);
                InnerError::new(InnerKind::ConnectionError)
            })?;
        req.headers_mut()
            .insert("User-Agent", self.user_agent.parse().unwrap());
        let (socket, response) = connect_async(req).await.map_err(|e| {
            error!("Failed to connect: {}", e);
            match e {
                WebSocketError::Http(response) => match response.status() {
                    StatusCode::UNAUTHORIZED => InnerError::new(InnerKind::UnauthorizedError),
                    _ => InnerError::new(InnerKind::ConnectionError),
                },
                _ => InnerError::new(InnerKind::ConnectionError),
            }
        })?;

        debug!("Connected to {}", url);
        debug!("Response HTTP code: {}", response.status());
        debug!("Response contains the following headers:");
        for (ref header, _value) in response.headers() {
            debug!("* {}", header);
        }

        let mut socket = self.connect_channel(socket).await;

        loop {
            let res = tokio::time::timeout(
                Duration::from_secs(READ_MESSAGE_TIMEOUT_SECONDS),
                socket.next(),
            )
            .await
            .map_err(|e| {
                error!("Timeout reading message: {}", e);
                InnerError::new(InnerKind::TimeoutError)
            })?;
            let Some(r) = res else {
                warn!("Response is empty");
                continue;
            };
            let msg = r.map_err(|e| {
                error!("Failed to read message: {}", e);
                InnerError::new(InnerKind::SocketReadError)
            })?;
            if msg.is_ping() {
                let _ = socket
                    .send(WebSocketMessage::Pong(Vec::<u8>::new()))
                    .await
                    .map_err(|e| {
                        error!("{:#?}", e);
                        e
                    });
            }
            if msg.is_close() {
                let _ = socket.close(None).await.map_err(|e| {
                    error!("{:#?}", e);
                    e
                });
                if let WebSocketMessage::Close(Some(close)) = msg {
                    warn!("Connection to {} is closed because {}", url, close.code);
                    if close.code != CloseCode::Normal {
                        return Err(InnerError::new(InnerKind::UnusualSocketCloseError));
                    }
                }
                return Ok(());
            }
            match self.parse(msg) {
                Ok(message) => {
                    callback(message).await;
                }
                Err(err) => {
                    warn!("{}", err);
                }
            }
        }
    }

    async fn connect_channel(
        &self,
        mut socket: WebSocketStream<MaybeTlsStream<TcpStream>>,
    ) -> WebSocketStream<MaybeTlsStream<TcpStream>> {
        match self.channel.as_ref() {
            "conversation" => {
                let data = json!({
                    "type": "connect",
                    "body": {
                        "channel": "main",
                        "id": self.channel_id,
                    },
                });
                let _ = socket
                    .send(WebSocketMessage::Text(data.to_string()))
                    .await
                    .map_err(|e| {
                        error!("{:#?}", e);
                        e
                    });
            }
            "user" => {
                let data = json!({
                    "type": "connect",
                    "body": {
                        "channel": "main",
                        "id": self.channel_id,
                    },
                });
                let _ = socket
                    .send(WebSocketMessage::Text(data.to_string()))
                    .await
                    .map_err(|e| {
                        error!("{:#?}", e);
                        e
                    });
                let home = json!({
                    "type": "connect",
                    "body": {
                        "channel": "homeTimeline",
                        "id": self.channel_id,
                        "params": {
                            "withReplies": false
                        }
                    },
                });
                debug!("Sending {:?}", &home);
                let _ = socket
                    .send(WebSocketMessage::Text(home.to_string()))
                    .await
                    .map_err(|e| {
                        error!("{:#?}", e);
                        e
                    });
            }
            "list" => {
                let data = json!({
                    "type": "connect",
                    "body": {
                        "channel": "userList",
                        "id": self.channel_id,
                        "params": {
                            "listId": self.list_id,
                            "withReplies": false
                        }
                    },
                });
                debug!("Sending {:?}", &data);
                let _ = socket
                    .send(WebSocketMessage::Text(data.to_string()))
                    .await
                    .map_err(|e| {
                        error!("{:#?}", e);
                        e
                    });
            }
            channel => {
                let data = json!({
                    "type": "connect",
                    "body": {
                        "channel": channel,
                        "id": self.channel_id,
                        "params": {
                            "withReplies": false
                        }
                    },
                });
                debug!("Sending {:?}", &data);
                let _ = socket
                    .send(WebSocketMessage::Text(data.to_string()))
                    .await
                    .map_err(|e| {
                        error!("{:#?}", e);
                        e
                    });
            }
        }
        socket
    }
}

#[async_trait]
impl Streaming for WebSocket {
    async fn listen(
        &self,
        callback: Box<
            dyn Fn(Message) -> Pin<Box<dyn Future<Output = ()> + Send>>
                + Send
                + Sync
                + 'async_trait,
        >,
    ) {
        let mut parameter = Vec::<String>::new();
        if let Some(access_token) = &self.access_token {
            parameter.push(format!("i={}", access_token));
        }
        let mut url = self.url.clone();
        url = url + "?" + parameter.join("&").as_str();

        self.connect(url.as_str(), callback).await;
    }
}

#[derive(thiserror::Error)]
#[error("{kind}")]
struct InnerError {
    kind: InnerKind,
}

#[derive(Debug, thiserror::Error)]
enum InnerKind {
    #[error("connection error")]
    ConnectionError,
    #[error("socket read error")]
    SocketReadError,
    #[error("unusual socket close error")]
    UnusualSocketCloseError,
    #[error("timeout error")]
    TimeoutError,
    #[error("unauthorized error")]
    UnauthorizedError,
}

impl InnerError {
    pub fn new(kind: InnerKind) -> Self {
        Self { kind }
    }
}

impl fmt::Debug for InnerError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let mut builder = f.debug_struct("megalodon::mastodon::web_socket::InnerError");

        builder.field("kind", &self.kind);
        builder.finish()
    }
}