summaryrefslogtreecommitdiffstats
path: root/src/remote/models.rs
blob: 058b2f0bd78e7a2db4acb1b90b82ef8f9c055134 (plain)
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
use chrono::naive::NaiveDateTime;

use crate::schema::{history, sessions, users};

#[derive(Identifiable, Queryable, Associations)]
#[table_name = "history"]
#[belongs_to(User)]
pub struct History {
    pub id: i64,
    pub client_id: String,
    pub user_id: i64,
    pub mac: String,
    pub timestamp: NaiveDateTime,

    pub data: String,
}

#[derive(Identifiable, Queryable, Associations)]
pub struct User {
    pub id: i64,
    pub email: String,
    pub password: String,
}

#[derive(Queryable, Identifiable, Associations)]
#[belongs_to(User)]
pub struct Session {
    pub id: i64,
    pub user_id: i64,
    pub token: String,
}

#[derive(Insertable)]
#[table_name = "history"]
pub struct NewHistory<'a> {
    pub client_id: &'a str,
    pub user_id: i64,
    pub mac: &'a str,
    pub timestamp: NaiveDateTime,

    pub data: &'a str,
}

#[derive(Insertable)]
#[table_name = "users"]
pub struct NewUser<'a> {
    pub email: &'a str,
    pub password: &'a str,
}

#[derive(Insertable)]
#[table_name = "sessions"]
pub struct NewSession<'a> {
    pub user_id: i64,
    pub token: &'a str,
}