2021-04-13 12:14:07 -06:00
|
|
|
use chrono::prelude::*;
|
2021-03-21 14:04:39 -06:00
|
|
|
|
|
|
|
use crate::schema::{history, sessions, users};
|
|
|
|
|
2021-04-13 12:14:07 -06:00
|
|
|
#[derive(Deserialize, Serialize, Identifiable, Queryable, Associations)]
|
2021-03-21 14:04:39 -06:00
|
|
|
#[table_name = "history"]
|
|
|
|
#[belongs_to(User)]
|
|
|
|
pub struct History {
|
|
|
|
pub id: i64,
|
2021-04-13 12:14:07 -06:00
|
|
|
pub client_id: String, // a client generated ID
|
2021-03-21 14:04:39 -06:00
|
|
|
pub user_id: i64,
|
2021-04-13 12:14:07 -06:00
|
|
|
pub hostname: String,
|
2021-03-21 14:04:39 -06:00
|
|
|
pub timestamp: NaiveDateTime,
|
|
|
|
|
|
|
|
pub data: String,
|
2021-04-13 12:14:07 -06:00
|
|
|
|
|
|
|
pub created_at: NaiveDateTime,
|
2021-03-21 14:04:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations)]
|
|
|
|
pub struct User {
|
|
|
|
pub id: i64,
|
2021-04-13 12:14:07 -06:00
|
|
|
pub username: String,
|
2021-03-21 14:04:39 -06:00
|
|
|
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,
|
2021-04-13 12:14:07 -06:00
|
|
|
pub hostname: String,
|
|
|
|
pub timestamp: chrono::NaiveDateTime,
|
2021-03-21 14:04:39 -06:00
|
|
|
|
|
|
|
pub data: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable)]
|
|
|
|
#[table_name = "users"]
|
|
|
|
pub struct NewUser<'a> {
|
2021-04-13 12:14:07 -06:00
|
|
|
pub username: &'a str,
|
2021-03-21 14:04:39 -06:00
|
|
|
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,
|
|
|
|
}
|