aboutsummaryrefslogtreecommitdiff
path: root/src/routes/device.rs
blob: 025c7d0ebb87b87da32f9f61d67f7905fe246a6b (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
use std::sync::Arc;
use axum::extract::State;
use axum::headers::HeaderMap;
use axum::Json;
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use tracing::info;
use crate::auth::auth;
use crate::db::Device;
use crate::error::WebolError;

pub async fn get_device(State(state): State<Arc<crate::AppState>>, headers: HeaderMap, Json(payload): Json<GetDevicePayload>) -> Result<Json<Value>, WebolError> {
    info!("GET request");
    let secret = headers.get("authorization");
    if auth(secret).map_err(WebolError::Auth)? {
        let device = sqlx::query_as!(
            Device,
            r#"
            SELECT id, mac, broadcast_addr
            FROM devices
            WHERE id = $1;
            "#,
            payload.id
        ).fetch_one(&state.db).await.map_err(|err| WebolError::Server(Box::new(err)))?;

        Ok(Json(json!(device)))
    } else {
        Err(WebolError::Generic)
    }
}

#[derive(Deserialize)]
pub struct GetDevicePayload {
    id: String,
}

pub async fn put_device(State(state): State<Arc<crate::AppState>>, headers: HeaderMap, Json(payload): Json<PutDevicePayload>) -> Result<Json<Value>, WebolError> {
    info!("PUT request");
    let secret = headers.get("authorization");
    if auth(secret).map_err(WebolError::Auth)? {
        sqlx::query!(
            r#"
            INSERT INTO devices (id, mac, broadcast_addr)
            VALUES ($1, $2, $3);
            "#,
            payload.id,
            payload.mac,
            payload.broadcast_addr
        ).execute(&state.db).await.map_err(|err| WebolError::Server(Box::new(err)))?;

        Ok(Json(json!(PutDeviceResponse { success: true })))
    } else {
        Err(WebolError::Generic)
    }
}

#[derive(Deserialize)]
pub struct PutDevicePayload {
    id: String,
    mac: String,
    broadcast_addr: String,
}

#[derive(Serialize)]
pub struct PutDeviceResponse {
    success: bool
}

pub async fn post_device(State(state): State<Arc<crate::AppState>>, headers: HeaderMap, Json(payload): Json<PostDevicePayload>) -> Result<Json<Value>, WebolError> {
    info!("POST request");
    let secret = headers.get("authorization");
    if auth(secret).map_err(WebolError::Auth)? {
        let device = sqlx::query_as!(
            Device,
            r#"
            UPDATE devices
            SET mac = $1, broadcast_addr = $2 WHERE id = $3
            RETURNING id, mac, broadcast_addr;
            "#,
            payload.mac,
            payload.broadcast_addr,
            payload.id
        ).fetch_one(&state.db).await.map_err(|err| WebolError::Server(Box::new(err)))?;

        Ok(Json(json!(device)))
    } else {
        Err(WebolError::Generic)
    }
}

#[derive(Deserialize)]
pub struct PostDevicePayload {
    id: String,
    mac: String,
    broadcast_addr: String,
}