Merge branch 'main' of gitlab.com:PhilippHofer/rot
@ -4,8 +4,9 @@ version = "0.1.0"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["rowing-tera"]
|
default = ["rest", "rowing-tera" ]
|
||||||
rowing-tera = ["rocket_dyn_templates", "tera"]
|
rowing-tera = ["rocket_dyn_templates", "tera"]
|
||||||
|
rest = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rocket = { version = "0.5.0-rc.3", features = ["secrets"]}
|
rocket = { version = "0.5.0-rc.3", features = ["secrets"]}
|
||||||
|
@ -3,6 +3,9 @@ pub mod model;
|
|||||||
#[cfg(feature = "rowing-tera")]
|
#[cfg(feature = "rowing-tera")]
|
||||||
pub mod tera;
|
pub mod tera;
|
||||||
|
|
||||||
|
#[cfg(feature = "rest")]
|
||||||
|
pub mod rest;
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! testdb {
|
macro_rules! testdb {
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
|
|
||||||
|
#[cfg(feature = "rest")]
|
||||||
|
use rot::rest;
|
||||||
#[cfg(feature = "rowing-tera")]
|
#[cfg(feature = "rowing-tera")]
|
||||||
use rot::tera;
|
use rot::tera;
|
||||||
|
|
||||||
use sqlx::{pool::PoolOptions, sqlite::SqliteConnectOptions, ConnectOptions};
|
use sqlx::{pool::PoolOptions, sqlite::SqliteConnectOptions, ConnectOptions};
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate rocket;
|
extern crate rocket;
|
||||||
|
|
||||||
#[cfg(feature = "rowing-tera")]
|
|
||||||
#[launch]
|
#[launch]
|
||||||
async fn rocket() -> _ {
|
async fn rocket() -> _ {
|
||||||
use sqlx::SqlitePool;
|
use sqlx::SqlitePool;
|
||||||
@ -26,5 +28,8 @@ async fn rocket() -> _ {
|
|||||||
#[cfg(feature = "rowing-tera")]
|
#[cfg(feature = "rowing-tera")]
|
||||||
let rocket = tera::config(rocket);
|
let rocket = tera::config(rocket);
|
||||||
|
|
||||||
|
#[cfg(feature = "rest")]
|
||||||
|
let rocket = rest::config(rocket);
|
||||||
|
|
||||||
rocket
|
rocket
|
||||||
}
|
}
|
||||||
|
59
src/rest/mod.rs
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
use rocket::{
|
||||||
|
form::Form, fs::FileServer, http::CookieJar, post, routes, Build, FromForm, Rocket, State,
|
||||||
|
};
|
||||||
|
use serde_json::json;
|
||||||
|
use sqlx::SqlitePool;
|
||||||
|
|
||||||
|
use crate::model::user::{LoginError, User};
|
||||||
|
|
||||||
|
#[derive(FromForm)]
|
||||||
|
struct LoginForm<'r> {
|
||||||
|
name: &'r str,
|
||||||
|
password: &'r str,
|
||||||
|
}
|
||||||
|
|
||||||
|
// curl -X POST localhost:8000/api/login -d "name=rower&password=rower"
|
||||||
|
#[post("/", data = "<login>")]
|
||||||
|
async fn login(login: Form<LoginForm<'_>>, db: &State<SqlitePool>) -> String {
|
||||||
|
match User::login(db, login.name, login.password).await {
|
||||||
|
Ok(user) => serde_json::to_string(&json!({"status": "success", "user": user})).unwrap(),
|
||||||
|
Err(LoginError::NoPasswordSet(_)) => {
|
||||||
|
serde_json::to_string(&json!({"status": "set new pw"})).unwrap()
|
||||||
|
}
|
||||||
|
Err(_) => serde_json::to_string(&json!({"status": "wrong"})).unwrap(),
|
||||||
|
}
|
||||||
|
|
||||||
|
//let user_json: String = format!("{}", json!(user));
|
||||||
|
//cookies.add_private(Cookie::new("loggedin_user", user_json));
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn config(rocket: Rocket<Build>) -> Rocket<Build> {
|
||||||
|
rocket
|
||||||
|
.mount("/", FileServer::from("svelte/build").rank(0))
|
||||||
|
.mount("/api/login", routes![login])
|
||||||
|
}
|
||||||
|
|
||||||
|
//#[cfg(test)]
|
||||||
|
//mod test {
|
||||||
|
// use crate::testdb;
|
||||||
|
//
|
||||||
|
// use super::start;
|
||||||
|
// use rocket::http::Status;
|
||||||
|
// use rocket::local::asynchronous::Client;
|
||||||
|
// use rocket::uri;
|
||||||
|
// use sqlx::SqlitePool;
|
||||||
|
//
|
||||||
|
// #[sqlx::test]
|
||||||
|
// fn test_not_logged_in() {
|
||||||
|
// let pool = testdb!();
|
||||||
|
//
|
||||||
|
// let client = Client::tracked(start(pool))
|
||||||
|
// .await
|
||||||
|
// .expect("valid rocket instance");
|
||||||
|
// let response = client.get(uri!(super::index)).dispatch().await;
|
||||||
|
//
|
||||||
|
// assert_eq!(response.status(), Status::SeeOther);
|
||||||
|
// let location = response.headers().get("Location").next().unwrap();
|
||||||
|
// assert_eq!(location, "/auth");
|
||||||
|
// }
|
||||||
|
//}
|
0
rot_app/.gitignore → svelte/.gitignore
vendored
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 352 KiB After Width: | Height: | Size: 352 KiB |
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
@ -13,8 +13,8 @@ const config = {
|
|||||||
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
||||||
adapter: adapter({
|
adapter: adapter({
|
||||||
fallback: 'app.html',
|
fallback: 'app.html',
|
||||||
})
|
}),
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
export default config;
|
export default config;
|