86 lines
1.8 KiB
Rust
86 lines
1.8 KiB
Rust
use crate::{forms::LinkForm, ServerError};
|
|
|
|
use super::schema::{links, users};
|
|
use argonautica::Hasher;
|
|
use diesel::{Insertable, Queryable};
|
|
use dotenv::dotenv;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Queryable, Serialize)]
|
|
pub struct User {
|
|
pub id: i32,
|
|
pub username: String,
|
|
pub email: String,
|
|
pub password: String,
|
|
}
|
|
|
|
#[derive(Debug, Deserialize, Insertable)]
|
|
#[table_name = "users"]
|
|
pub struct NewUser {
|
|
pub username: String,
|
|
pub email: String,
|
|
pub password: String,
|
|
}
|
|
|
|
impl NewUser {
|
|
pub(crate) fn new(
|
|
username: String,
|
|
email: String,
|
|
password: String,
|
|
) -> Result<Self, ServerError> {
|
|
dotenv().ok();
|
|
|
|
let secret = std::env::var("SECRET_KEY")?;
|
|
|
|
let hash = Hasher::default()
|
|
.with_password(password)
|
|
.with_secret_key(secret)
|
|
.hash()
|
|
.unwrap();
|
|
|
|
Ok(NewUser {
|
|
username,
|
|
email,
|
|
password: hash,
|
|
})
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Deserialize)]
|
|
pub struct LoginUser {
|
|
pub username: String,
|
|
pub password: String,
|
|
}
|
|
|
|
#[derive(Serialize, Debug, Queryable)]
|
|
pub struct Link {
|
|
pub id: i32,
|
|
pub title: String,
|
|
pub target: String,
|
|
pub code: String,
|
|
pub author: i32,
|
|
pub created_at: chrono::NaiveDateTime,
|
|
}
|
|
|
|
#[derive(Serialize, Insertable)]
|
|
#[table_name = "links"]
|
|
pub struct NewLink {
|
|
pub title: String,
|
|
pub target: String,
|
|
pub code: String,
|
|
pub author: i32,
|
|
pub created_at: chrono::NaiveDateTime,
|
|
}
|
|
|
|
impl NewLink {
|
|
pub(crate) fn from_link_form(form: LinkForm, uid: i32) -> Self {
|
|
Self {
|
|
title: form.title,
|
|
target: form.target,
|
|
code: form.code,
|
|
author: uid,
|
|
created_at: chrono::Local::now().naive_utc(),
|
|
}
|
|
}
|
|
}
|