aboutsummaryrefslogtreecommitdiff
path: root/src/services/ping.rs
blob: 9b164c857ac42a7433ba833de1e8c7b0f914bc71 (plain) (blame)
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
use std::str::FromStr;
use std::net::IpAddr;
use std::sync::Arc;

use axum::extract::ws::WebSocket;
use axum::extract::ws::Message;
use dashmap::DashMap;
use sqlx::PgPool;
use time::{Duration, Instant};
use tokio::sync::broadcast::Sender;
use tracing::{debug, error, trace};
use crate::AppState;
use crate::config::Config;
use crate::db::Device;

pub type StatusMap = DashMap<String, Value>;

#[derive(Debug, Clone)]
pub struct Value {
    pub ip: String,
    pub online: bool
}

pub async fn spawn(tx: Sender<BroadcastCommands>, config: &Config, device: Device, uuid: String, ping_map: &StatusMap, db: &PgPool) {
    let timer = Instant::now();
    let payload = [0; 8];

    let ping_ip = IpAddr::from_str(&device.ip).expect("bad ip");

    let mut msg: Option<BroadcastCommands> = None;
    while msg.is_none() {
        let ping = surge_ping::ping(
            ping_ip,
            &payload
        ).await;

        if let Err(ping) = ping {
            let ping_timeout = matches!(ping, surge_ping::SurgeError::Timeout { .. });
            if !ping_timeout {
                error!("{}", ping.to_string());
                msg = Some(BroadcastCommands::Error(uuid.clone()));
            }
            if timer.elapsed() >= Duration::minutes(config.pingtimeout) {
                msg = Some(BroadcastCommands::Timeout(uuid.clone()));
            }
        } else {
            let (_, duration) = ping.map_err(|err| error!("{}", err.to_string())).expect("fatal error");
            debug!("ping took {:?}", duration);
            msg = Some(BroadcastCommands::Success(uuid.clone()));
        };
    }

    let msg = msg.expect("fatal error");

    let _ = tx.send(msg.clone());
    if let BroadcastCommands::Success(..) = msg {
        sqlx::query!(
            r#"
            UPDATE devices
            SET times = array_append(times, $1)
            WHERE id = $2;
            "#,
            timer.elapsed().whole_seconds(),
            device.id
        ).execute(db).await.unwrap();
        ping_map.insert(uuid.clone(), Value { ip: device.ip.clone(), online: true });
        tokio::time::sleep(tokio::time::Duration::from_secs(60)).await;
    }
    trace!("remove {} from ping_map", uuid);
    ping_map.remove(&uuid);
}

#[derive(Clone, Debug, PartialEq)]
pub enum BroadcastCommands {
    Success(String),
    Timeout(String),
    Error(String),
}

pub async fn status_websocket(mut socket: WebSocket, state: Arc<AppState>) {
    trace!("wait for ws message (uuid)");
    let msg = socket.recv().await;
    let uuid = msg.unwrap().unwrap().into_text().unwrap();

    trace!("Search for uuid: {}", uuid);

    let eta = get_eta(&state.db).await;
    let _ = socket.send(Message::Text(format!("eta_{eta}_{uuid}"))).await;

    let device_exists = state.ping_map.contains_key(&uuid);
    if device_exists {
        let _ = socket.send(process_device(state.clone(), uuid).await).await;
    } else {
        debug!("didn't find any device");
        let _ = socket.send(Message::Text(format!("notfound_{uuid}"))).await;
    };

    let _ = socket.close().await;
}

async fn get_eta(db: &PgPool) -> i64 {
    let query = sqlx::query!(
        r#"SELECT times FROM devices;"#
    ).fetch_one(db).await.unwrap();

    let times = match query.times {
        None => { vec![0] },
        Some(t) => t,
    };
    times.iter().sum::<i64>() / i64::try_from(times.len()).unwrap()

}

async fn process_device(state: Arc<AppState>, uuid: String) -> Message {
    let pm = state.ping_map.clone().into_read_only();
    let device = pm.get(&uuid).expect("fatal error");
    debug!("got device: {} (online: {})", device.ip, device.online);
    if device.online {
        debug!("already started");
        Message::Text(format!("start_{uuid}"))
    } else {
        loop {
            trace!("wait for tx message");
            let message = state.ping_send.subscribe().recv().await.expect("fatal error");
            trace!("got message {:?}", message);
            return match message {
                BroadcastCommands::Success(msg_uuid) => {
                    if msg_uuid != uuid { continue; }
                    trace!("message == uuid success");
                    Message::Text(format!("start_{uuid}"))
                },
                BroadcastCommands::Timeout(msg_uuid) => {
                    if msg_uuid != uuid { continue; }
                    trace!("message == uuid timeout");
                    Message::Text(format!("timeout_{uuid}"))
                },
                BroadcastCommands::Error(msg_uuid) => {
                    if msg_uuid != uuid { continue; }
                    trace!("message == uuid error");
                    Message::Text(format!("error_{uuid}"))
                }
            }
        }
    }
}