DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: d499b279928e0a6d00f6519fda8673f61e14e4e0 deck-builder/client/src/api/user/login.rs -rw-r--r-- 707 bytes
d499b279Jonni Liljamo feat(client): "good" details ui in-game 2 years ago
                                                                                
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
/*
 * This file is part of laurelin_client
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use serde::Serialize;

use crate::{post_request, NetworkingOptions};

use super::UserToken;

pub type LoginResponse = Result<UserToken, ()>;

#[derive(Serialize)]
struct LoginPost {
    email: String,
    password: String,
}

pub fn login(no: &NetworkingOptions, email: &str, password: &str) -> LoginResponse {
    let res = post_request!(
        no,
        "/user/token",
        &LoginPost {
            email: email.to_string(),
            password: password.to_string(),
        }
    );

    Ok(res.json().unwrap())
}