Compare commits
No commits in common. "9a94efd29b98ee00ea39124214769c4a50bf17a6" and "8f9b7b413c1f62d737d18775b2fa417aa9c89219" have entirely different histories.
9a94efd29b
...
8f9b7b413c
20 changed files with 469 additions and 590 deletions
2
.env
2
.env
|
@ -1 +1 @@
|
||||||
DATABASE_URL=sqlite://${HOME}/.local/share/what2watch/what2watch.db
|
DATABASE_URL=sqlite://${HOME}/.what2watch.db
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
||||||
/target
|
/target
|
||||||
/libjulid.so
|
/libjulid.so
|
||||||
ww-style
|
ww-style
|
||||||
*.db
|
|
||||||
|
|
687
Cargo.lock
generated
687
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
16
Cargo.toml
16
Cargo.toml
|
@ -14,28 +14,26 @@ askama = { version = "0.12", features = ["with-axum"] }
|
||||||
askama_axum = "0.4"
|
askama_axum = "0.4"
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
axum = { version = "0.7", features = ["macros"] }
|
axum = { version = "0.7", features = ["macros"] }
|
||||||
axum-login = "0.14"
|
axum-login = "0.11"
|
||||||
axum-macros = "0.4"
|
axum-macros = "0.4"
|
||||||
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
|
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
|
||||||
clap = { version = "4", features = ["derive", "env", "unicode", "suggestions", "usage"] }
|
clap = { version = "4", features = ["derive", "env", "unicode", "suggestions", "usage"] }
|
||||||
confy = "0.6"
|
figment = { version = "0.10", default-features = false, features = ["toml", "env"] }
|
||||||
dirs = "5"
|
http = "1.0.0"
|
||||||
http = "1"
|
|
||||||
julid-rs = "1"
|
julid-rs = "1"
|
||||||
justerror = "1"
|
justerror = "1"
|
||||||
parse_duration = "2"
|
parse_duration = "2.1.1"
|
||||||
password-auth = "1"
|
password-auth = "1"
|
||||||
password-hash = { version = "0.5", features = ["std", "getrandom"] }
|
password-hash = { version = "0.5", features = ["std", "getrandom"] }
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
sha256 = { version = "1", default-features = false }
|
sha256 = { version = "1.4.0", default-features = false }
|
||||||
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio", "sqlite", "tls-none", "migrate"] }
|
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio", "sqlite", "tls-none", "migrate"] }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
tokio = { version = "1", features = ["rt-multi-thread", "signal", "tracing"], default-features = false }
|
tokio = { version = "1", features = ["full", "tracing"], default-features = false }
|
||||||
tower = { version = "0.4", features = ["util", "timeout"], default-features = false }
|
tower = { version = "0.4", features = ["util", "timeout"], default-features = false }
|
||||||
tower-http = { version = "0.5", features = ["add-extension", "trace", "tracing", "fs"], default-features = false }
|
tower-http = { version = "0.5", features = ["add-extension", "trace", "tracing", "fs"], default-features = false }
|
||||||
tower-sessions = { version = "0.11", default-features = false }
|
tower-sessions = { version = "0.8", default-features = false, features = ["sqlite-store"] }
|
||||||
tower-sessions-sqlx-store = { version = "0.11.0", default-features = false, features = ["sqlite"] }
|
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||||
unicode-segmentation = "1"
|
unicode-segmentation = "1"
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
drop table if exists star_search;
|
|
||||||
drop table if exists watch_search;
|
|
|
@ -1,16 +0,0 @@
|
||||||
create virtual table if not exists star_search using fts5 (name, id UNINDEXED, tokenize = 'trigram', content = 'stars', content_rowid=rowid);
|
|
||||||
create trigger if not exists stars_update_search after insert on stars begin
|
|
||||||
insert into star_search (rowid, name, id) values (new.rowid, new.name, new.id);
|
|
||||||
end;
|
|
||||||
create trigger if not exists stars_delete_search after delete on stars begin
|
|
||||||
insert into star_search (star_search, rowid, name, id) values ('delete', old.rowid, old.name, old.id);
|
|
||||||
end;
|
|
||||||
|
|
||||||
create virtual table if not exists watch_search using fts5 (title, id UNINDEXED, tokenize = 'trigram', content = 'watches', content_rowid=rowid);
|
|
||||||
create trigger if not exists watches_update_search after insert on watches begin
|
|
||||||
insert into watch_search (rowid, title, id) values (new.rowid, new.title, new.id);
|
|
||||||
end;
|
|
||||||
create trigger if not exists watches_delete_search after delete on watches begin
|
|
||||||
insert into watch_search (watch_search, rowid, title, id) values ('delete', old.rowid, old.title, old.id);
|
|
||||||
end;
|
|
||||||
|
|
|
@ -1,12 +1,9 @@
|
||||||
use async_trait::async_trait;
|
use async_trait::async_trait;
|
||||||
use axum_login::{
|
use axum_login::{AuthUser, AuthnBackend, UserId};
|
||||||
tower_sessions::{cookie::time::Duration, Expiry, SessionManagerLayer},
|
|
||||||
AuthUser, AuthnBackend, UserId,
|
|
||||||
};
|
|
||||||
use julid::Julid;
|
use julid::Julid;
|
||||||
use password_auth::verify_password;
|
use password_auth::verify_password;
|
||||||
use sqlx::SqlitePool;
|
use sqlx::SqlitePool;
|
||||||
use tower_sessions_sqlx_store::SqliteStore;
|
use tower_sessions::{cookie::time::Duration, Expiry, SessionManagerLayer, SqliteStore};
|
||||||
|
|
||||||
use crate::User;
|
use crate::User;
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,8 @@ use std::time::Duration;
|
||||||
use clap::Parser;
|
use clap::Parser;
|
||||||
use julid::Julid;
|
use julid::Julid;
|
||||||
use parse_duration::parse;
|
use parse_duration::parse;
|
||||||
use serde::Serialize;
|
|
||||||
use sqlx::SqlitePool;
|
use sqlx::SqlitePool;
|
||||||
use what2watch::{conf::Config, get_db_pool, Invitation, User};
|
use what2watch::{get_db_pool, Invitation, User};
|
||||||
|
|
||||||
#[derive(Debug, Parser)]
|
#[derive(Debug, Parser)]
|
||||||
struct Cli {
|
struct Cli {
|
||||||
|
@ -19,7 +18,7 @@ struct Cli {
|
||||||
pub number: u8,
|
pub number: u8,
|
||||||
}
|
}
|
||||||
|
|
||||||
struct InvitationQuest {
|
struct Iq {
|
||||||
owner: Julid,
|
owner: Julid,
|
||||||
expires: Option<Duration>,
|
expires: Option<Duration>,
|
||||||
uses: Option<u8>,
|
uses: Option<u8>,
|
||||||
|
@ -33,7 +32,7 @@ fn main() {
|
||||||
.expires_in
|
.expires_in
|
||||||
.map(|e| parse(&e).expect("Could not parse {e} as a duration"));
|
.map(|e| parse(&e).expect("Could not parse {e} as a duration"));
|
||||||
let uses = cli.uses;
|
let uses = cli.uses;
|
||||||
let quest = InvitationQuest {
|
let quest = Iq {
|
||||||
owner,
|
owner,
|
||||||
expires,
|
expires,
|
||||||
uses,
|
uses,
|
||||||
|
@ -41,9 +40,6 @@ fn main() {
|
||||||
|
|
||||||
let pool = get_db_pool();
|
let pool = get_db_pool();
|
||||||
|
|
||||||
let conf = Config::get();
|
|
||||||
let base_url = &conf.base_url;
|
|
||||||
|
|
||||||
let rt = tokio::runtime::Builder::new_multi_thread()
|
let rt = tokio::runtime::Builder::new_multi_thread()
|
||||||
.enable_all()
|
.enable_all()
|
||||||
.build()
|
.build()
|
||||||
|
@ -51,12 +47,10 @@ fn main() {
|
||||||
|
|
||||||
let invites = rt.block_on(async {
|
let invites = rt.block_on(async {
|
||||||
ensure_omega(&pool).await;
|
ensure_omega(&pool).await;
|
||||||
let invites = generate_invites(quest, num, &pool).await;
|
generate_invites(quest, num, &pool).await
|
||||||
pool.close().await;
|
|
||||||
invites
|
|
||||||
});
|
});
|
||||||
for invite in invites {
|
for invite in invites {
|
||||||
println!("{base_url}/signup/{invite}");
|
println!("{invite}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,7 +64,7 @@ async fn ensure_omega(pool: &SqlitePool) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn generate_invites(quest: InvitationQuest, number: u8, pool: &SqlitePool) -> Vec<Julid> {
|
async fn generate_invites(quest: Iq, number: u8, pool: &SqlitePool) -> Vec<Julid> {
|
||||||
let mut invites = Vec::with_capacity(number as usize);
|
let mut invites = Vec::with_capacity(number as usize);
|
||||||
for _ in 0..number {
|
for _ in 0..number {
|
||||||
let mut invite = Invitation::new(quest.owner);
|
let mut invite = Invitation::new(quest.owner);
|
||||||
|
@ -80,8 +74,7 @@ async fn generate_invites(quest: InvitationQuest, number: u8, pool: &SqlitePool)
|
||||||
if let Some(expires) = quest.expires {
|
if let Some(expires) = quest.expires {
|
||||||
invite = invite.with_expires_in(expires);
|
invite = invite.with_expires_in(expires);
|
||||||
}
|
}
|
||||||
let invite = invite
|
let invite = Invitation::commit(&invite, pool)
|
||||||
.commit(pool)
|
|
||||||
.await
|
.await
|
||||||
.expect("Error inserting invite into DB");
|
.expect("Error inserting invite into DB");
|
||||||
invites.push(invite);
|
invites.push(invite);
|
||||||
|
|
42
src/conf.rs
42
src/conf.rs
|
@ -1,42 +0,0 @@
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
|
|
||||||
pub const APP_NAME: &str = "what2watch";
|
|
||||||
const CONFIG_NAME: Option<&str> = Some("config");
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Deserialize, Serialize)]
|
|
||||||
pub struct Config {
|
|
||||||
pub base_url: String,
|
|
||||||
pub db_file: String,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Default for Config {
|
|
||||||
fn default() -> Self {
|
|
||||||
let mut datadir = dirs::data_dir().unwrap();
|
|
||||||
datadir.push(APP_NAME);
|
|
||||||
datadir.push("what2watch.db");
|
|
||||||
Self {
|
|
||||||
base_url: "http://localhost:3000".into(),
|
|
||||||
db_file: datadir.as_os_str().to_string_lossy().to_string(),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Config {
|
|
||||||
pub fn get() -> Self {
|
|
||||||
let config: Config = confy::load(APP_NAME, CONFIG_NAME).unwrap_or_else(|e| {
|
|
||||||
tracing::debug!("Could not load {APP_NAME} config, got error {e}");
|
|
||||||
Default::default()
|
|
||||||
});
|
|
||||||
confy::store(APP_NAME, CONFIG_NAME, config.clone()).unwrap_or_else(|e| {
|
|
||||||
tracing::debug!("Could not store {APP_NAME} config, got error {e}");
|
|
||||||
});
|
|
||||||
tracing::info!("Loading config from {}", cpath());
|
|
||||||
config
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn cpath() -> String {
|
|
||||||
confy::get_configuration_file_path(APP_NAME, CONFIG_NAME)
|
|
||||||
.map(|p| p.as_os_str().to_str().unwrap().to_string())
|
|
||||||
.expect("couldn't get the path to the configuration file")
|
|
||||||
}
|
|
10
src/db.rs
10
src/db.rs
|
@ -15,11 +15,9 @@ pub fn get_db_pool() -> SqlitePool {
|
||||||
std::env::var("DATABASE_FILE").unwrap_or_else(|_| {
|
std::env::var("DATABASE_FILE").unwrap_or_else(|_| {
|
||||||
#[cfg(not(test))]
|
#[cfg(not(test))]
|
||||||
{
|
{
|
||||||
let f = crate::conf::Config::get().db_file;
|
let home =
|
||||||
let p = std::path::Path::new(&f);
|
std::env::var("HOME").expect("Could not determine $HOME for finding db file");
|
||||||
let p = p.parent().unwrap();
|
format!("{home}/.what2watch.db")
|
||||||
std::fs::create_dir_all(p).expect("couldn't create data dir");
|
|
||||||
f
|
|
||||||
}
|
}
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
{
|
{
|
||||||
|
@ -38,6 +36,7 @@ pub fn get_db_pool() -> SqlitePool {
|
||||||
|
|
||||||
let conn_opts = SqliteConnectOptions::new()
|
let conn_opts = SqliteConnectOptions::new()
|
||||||
.foreign_keys(true)
|
.foreign_keys(true)
|
||||||
|
.auto_vacuum(sqlx::sqlite::SqliteAutoVacuum::Incremental)
|
||||||
.journal_mode(SqliteJournalMode::Wal)
|
.journal_mode(SqliteJournalMode::Wal)
|
||||||
.synchronous(sqlx::sqlite::SqliteSynchronous::Normal)
|
.synchronous(sqlx::sqlite::SqliteSynchronous::Normal)
|
||||||
.filename(&db_filename)
|
.filename(&db_filename)
|
||||||
|
@ -45,7 +44,6 @@ pub fn get_db_pool() -> SqlitePool {
|
||||||
.extension("./libjulid")
|
.extension("./libjulid")
|
||||||
.busy_timeout(Duration::from_secs(TIMEOUT))
|
.busy_timeout(Duration::from_secs(TIMEOUT))
|
||||||
.create_if_missing(true)
|
.create_if_missing(true)
|
||||||
.optimize_on_close(true, None)
|
|
||||||
.pragma("mmap_size", "3000000000");
|
.pragma("mmap_size", "3000000000");
|
||||||
|
|
||||||
let pool = SqlitePoolOptions::new()
|
let pool = SqlitePoolOptions::new()
|
||||||
|
|
|
@ -82,7 +82,7 @@ pub async fn import_imdb_data(w2w_db: &SqlitePool, imdb: &SqlitePool, ids: &mut
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
for batch in iwatches.chunks(5_000) {
|
for batch in iwatches.chunks(2_000) {
|
||||||
let mut tx = w2w_db.acquire().await.unwrap();
|
let mut tx = w2w_db.acquire().await.unwrap();
|
||||||
let mut tx = tx.begin().await.unwrap();
|
let mut tx = tx.begin().await.unwrap();
|
||||||
for iwatch in batch {
|
for iwatch in batch {
|
||||||
|
@ -114,9 +114,6 @@ async fn add_imdb_stars(
|
||||||
|
|
||||||
for row in principals {
|
for row in principals {
|
||||||
let (name_id, cat) = row;
|
let (name_id, cat) = row;
|
||||||
let star = if let Some(id) = ids.get(&name_id) {
|
|
||||||
*id
|
|
||||||
} else {
|
|
||||||
let name_query =
|
let name_query =
|
||||||
"select nconst, primaryName, birthYear, deathYear from names where nconst = ?";
|
"select nconst, primaryName, birthYear, deathYear from names where nconst = ?";
|
||||||
let istar: Option<ImdbStar> = sqlx::query_as(name_query)
|
let istar: Option<ImdbStar> = sqlx::query_as(name_query)
|
||||||
|
@ -128,19 +125,14 @@ async fn add_imdb_stars(
|
||||||
let star = (&star).into();
|
let star = (&star).into();
|
||||||
let star_id = insert_star(&star, w2w_db).await;
|
let star_id = insert_star(&star, w2w_db).await;
|
||||||
ids.insert(name_id, star_id);
|
ids.insert(name_id, star_id);
|
||||||
star_id
|
|
||||||
} else {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
let credit = Credit {
|
let credit = Credit {
|
||||||
star,
|
star: star_id,
|
||||||
watch,
|
watch,
|
||||||
credit: Some(cat.to_string()),
|
credit: Some(cat.to_string()),
|
||||||
};
|
};
|
||||||
insert_credit(&credit, w2w_db).await;
|
insert_credit(&credit, w2w_db).await;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn show_kind(kind: &str) -> ShowKind {
|
fn show_kind(kind: &str) -> ShowKind {
|
||||||
|
|
|
@ -47,19 +47,6 @@ pub async fn insert_credit(credit: &Credit, db: &mut SqliteConnection) {
|
||||||
.bind(credit.credit.as_deref())
|
.bind(credit.credit.as_deref())
|
||||||
.execute(db)
|
.execute(db)
|
||||||
.await
|
.await
|
||||||
.map(|_| ())
|
|
||||||
.or_else(|e| match e {
|
|
||||||
sqlx::Error::Database(ref db) => {
|
|
||||||
let exit = db.code().unwrap_or_default().parse().unwrap_or(0u32);
|
|
||||||
// https://www.sqlite.org/rescode.html codes for unique constraint violations:
|
|
||||||
if exit == 2067 || exit == 1555 {
|
|
||||||
Ok(())
|
|
||||||
} else {
|
|
||||||
Err(e)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
_ => Err(e),
|
|
||||||
})
|
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
19
src/lib.rs
19
src/lib.rs
|
@ -1,8 +1,9 @@
|
||||||
use axum::{
|
use axum::{
|
||||||
|
error_handling::HandleErrorLayer,
|
||||||
middleware,
|
middleware,
|
||||||
routing::{get, post, IntoMakeService},
|
routing::{get, post, IntoMakeService},
|
||||||
|
BoxError,
|
||||||
};
|
};
|
||||||
use axum_login::AuthManagerLayerBuilder;
|
|
||||||
use sqlx::SqlitePool;
|
use sqlx::SqlitePool;
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate justerror;
|
extern crate justerror;
|
||||||
|
@ -10,12 +11,10 @@ extern crate justerror;
|
||||||
/// Some public interfaces for interacting with the database outside of the web
|
/// Some public interfaces for interacting with the database outside of the web
|
||||||
/// app
|
/// app
|
||||||
pub use db::get_db_pool;
|
pub use db::get_db_pool;
|
||||||
pub mod conf;
|
|
||||||
pub mod imdb_utils;
|
pub mod imdb_utils;
|
||||||
pub mod import_utils;
|
pub mod import_utils;
|
||||||
pub mod misc_util;
|
pub mod misc_util;
|
||||||
|
|
||||||
pub use conf::*;
|
|
||||||
pub use signup::Invitation;
|
pub use signup::Invitation;
|
||||||
pub use stars::*;
|
pub use stars::*;
|
||||||
pub use users::User;
|
pub use users::User;
|
||||||
|
@ -28,7 +27,6 @@ mod auth;
|
||||||
mod db;
|
mod db;
|
||||||
mod generic_handlers;
|
mod generic_handlers;
|
||||||
mod login;
|
mod login;
|
||||||
mod search;
|
|
||||||
mod signup;
|
mod signup;
|
||||||
mod stars;
|
mod stars;
|
||||||
mod templates;
|
mod templates;
|
||||||
|
@ -47,18 +45,21 @@ pub async fn app(db_pool: sqlx::SqlitePool) -> IntoMakeService<axum::Router> {
|
||||||
use auth::*;
|
use auth::*;
|
||||||
use generic_handlers::{handle_slash, handle_slash_redir};
|
use generic_handlers::{handle_slash, handle_slash_redir};
|
||||||
use login::{get_login, get_logout, post_login, post_logout};
|
use login::{get_login, get_logout, post_login, post_logout};
|
||||||
use search::get_search_watch;
|
|
||||||
use signup::handlers::{get_create_user, get_signup_success, post_create_user};
|
use signup::handlers::{get_create_user, get_signup_success, post_create_user};
|
||||||
use tower_http::services::ServeDir;
|
use tower_http::services::ServeDir;
|
||||||
use watches::handlers::{
|
use watches::handlers::{
|
||||||
get_add_new_watch, get_watch, get_watch_status, get_watches, post_add_new_watch,
|
get_add_new_watch, get_search_watch, get_watch, get_watch_status, get_watches,
|
||||||
post_add_watch_quest,
|
post_add_new_watch, post_add_watch_quest,
|
||||||
};
|
};
|
||||||
|
|
||||||
let auth_layer = {
|
let auth_layer = {
|
||||||
let session_layer = session_layer(db_pool.clone()).await;
|
let sessions = session_layer(db_pool.clone()).await;
|
||||||
let store = AuthStore::new(db_pool.clone());
|
let store = AuthStore::new(db_pool.clone());
|
||||||
AuthManagerLayerBuilder::new(store, session_layer).build()
|
tower::ServiceBuilder::new()
|
||||||
|
.layer(HandleErrorLayer::new(|_: BoxError| async {
|
||||||
|
http::StatusCode::BAD_REQUEST
|
||||||
|
}))
|
||||||
|
.layer(axum_login::AuthManagerLayerBuilder::new(store, sessions).build())
|
||||||
};
|
};
|
||||||
|
|
||||||
let assets_dir = std::env::current_dir().unwrap().join("assets");
|
let assets_dir = std::env::current_dir().unwrap().join("assets");
|
||||||
|
|
30
src/main.rs
30
src/main.rs
|
@ -27,36 +27,8 @@ fn main() {
|
||||||
let addr: SocketAddr = ([0, 0, 0, 0], 3000).into();
|
let addr: SocketAddr = ([0, 0, 0, 0], 3000).into();
|
||||||
tracing::debug!("binding to {addr:?}");
|
tracing::debug!("binding to {addr:?}");
|
||||||
let listener = tokio::net::TcpListener::bind(&addr).await.unwrap();
|
let listener = tokio::net::TcpListener::bind(&addr).await.unwrap();
|
||||||
axum::serve(listener, app)
|
axum::serve(listener, app).await.unwrap();
|
||||||
.with_graceful_shutdown(graceful_shutdown())
|
|
||||||
.await
|
|
||||||
.unwrap()
|
|
||||||
});
|
});
|
||||||
|
|
||||||
rt.block_on(pool.close());
|
rt.block_on(pool.close());
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn graceful_shutdown() {
|
|
||||||
use tokio::signal;
|
|
||||||
let ctrl_c = async {
|
|
||||||
signal::ctrl_c()
|
|
||||||
.await
|
|
||||||
.expect("failed to install Ctrl+C handler");
|
|
||||||
};
|
|
||||||
|
|
||||||
#[cfg(unix)]
|
|
||||||
let terminate = async {
|
|
||||||
signal::unix::signal(signal::unix::SignalKind::terminate())
|
|
||||||
.expect("failed to install signal handler")
|
|
||||||
.recv()
|
|
||||||
.await;
|
|
||||||
};
|
|
||||||
|
|
||||||
#[cfg(not(unix))]
|
|
||||||
let terminate = std::future::pending::<()>();
|
|
||||||
|
|
||||||
tokio::select! {
|
|
||||||
_ = ctrl_c => {tracing::info!("shutting down")},
|
|
||||||
_ = terminate => {},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,70 +0,0 @@
|
||||||
use askama::Template;
|
|
||||||
use axum::{
|
|
||||||
extract::{Query, State},
|
|
||||||
response::IntoResponse,
|
|
||||||
};
|
|
||||||
use serde::{Deserialize, Serialize};
|
|
||||||
use sqlx::{query_as, SqlitePool};
|
|
||||||
|
|
||||||
use crate::{
|
|
||||||
misc_util::empty_string_as_none, AuthSession, OptionalOptionalUser, Star, User, Watch,
|
|
||||||
};
|
|
||||||
|
|
||||||
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
|
||||||
#[template(path = "search_watches_page.html")]
|
|
||||||
pub struct SearchPage {
|
|
||||||
pub results: Vec<Watch>,
|
|
||||||
pub user: Option<User>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Clone, Deserialize, PartialEq, Eq)]
|
|
||||||
pub enum SearchResult {
|
|
||||||
Star(Star),
|
|
||||||
Watch(Watch),
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Debug, Default, Clone, Deserialize, PartialEq, Eq)]
|
|
||||||
pub struct SearchQuery {
|
|
||||||
#[serde(default, deserialize_with = "empty_string_as_none")]
|
|
||||||
pub search: Option<String>,
|
|
||||||
#[serde(default, deserialize_with = "empty_string_as_none")]
|
|
||||||
pub title: Option<String>,
|
|
||||||
#[serde(default, deserialize_with = "empty_string_as_none")]
|
|
||||||
pub kind: Option<String>,
|
|
||||||
#[serde(default, deserialize_with = "empty_string_as_none")]
|
|
||||||
pub year: Option<i64>,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub async fn get_search_watch(
|
|
||||||
auth: AuthSession,
|
|
||||||
State(pool): State<SqlitePool>,
|
|
||||||
search: Query<SearchQuery>,
|
|
||||||
) -> impl IntoResponse {
|
|
||||||
const DEFAULT_WATCHES_QUERY: &str =
|
|
||||||
"select * from (select * from watches order by random() limit 50) order by release_date asc";
|
|
||||||
|
|
||||||
let user = auth.user;
|
|
||||||
let search_query = search.0;
|
|
||||||
|
|
||||||
let query = if search_query == SearchQuery::default() {
|
|
||||||
query_as(DEFAULT_WATCHES_QUERY)
|
|
||||||
} else if let Some(title) = search_query.title {
|
|
||||||
query_as(
|
|
||||||
"select * from watches where id in (select id from watch_search where title match ? order by rank)",
|
|
||||||
)
|
|
||||||
.bind(title)
|
|
||||||
} else if let Some(ref search) = search_query.search {
|
|
||||||
query_as("select * from watches where id in (select id from watch_search where title match ?) outer join (select * from stars where id in (select id from star_search where name match ?)) s")
|
|
||||||
.bind(search).bind(search)
|
|
||||||
} else {
|
|
||||||
query_as(DEFAULT_WATCHES_QUERY)
|
|
||||||
};
|
|
||||||
|
|
||||||
// until tantivy search
|
|
||||||
let watches: Vec<Watch> = query.fetch_all(&pool).await.unwrap();
|
|
||||||
|
|
||||||
SearchPage {
|
|
||||||
results: watches,
|
|
||||||
user,
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -42,14 +42,13 @@ impl Default for Invitation {
|
||||||
|
|
||||||
impl Invitation {
|
impl Invitation {
|
||||||
pub async fn commit(&self, db: &SqlitePool) -> Result<Julid, CreateInviteError> {
|
pub async fn commit(&self, db: &SqlitePool) -> Result<Julid, CreateInviteError> {
|
||||||
let mut tx = db.begin().await.unwrap();
|
sqlx::query_scalar(
|
||||||
let id = sqlx::query_scalar(
|
|
||||||
"insert into invites (owner, expires_at, remaining) values (?, ?, ?) returning id",
|
"insert into invites (owner, expires_at, remaining) values (?, ?, ?) returning id",
|
||||||
)
|
)
|
||||||
.bind(self.owner)
|
.bind(self.owner)
|
||||||
.bind(self.expires_at)
|
.bind(self.expires_at)
|
||||||
.bind(self.remaining)
|
.bind(self.remaining)
|
||||||
.fetch_optional(&mut *tx)
|
.fetch_optional(db)
|
||||||
.await
|
.await
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
tracing::debug!("Got error creating invite: {e}");
|
tracing::debug!("Got error creating invite: {e}");
|
||||||
|
@ -65,9 +64,7 @@ impl Invitation {
|
||||||
CreateInviteErrorKind::Unknown
|
CreateInviteErrorKind::Unknown
|
||||||
}
|
}
|
||||||
})?
|
})?
|
||||||
.ok_or(CreateInviteErrorKind::Unknown.into());
|
.ok_or(CreateInviteErrorKind::Unknown.into())
|
||||||
tx.commit().await.unwrap();
|
|
||||||
id
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new(owner: Julid) -> Self {
|
pub fn new(owner: Julid) -> Self {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
use axum::{
|
use axum::{
|
||||||
extract::{Form, Path, State},
|
extract::{Form, Path, Query, State},
|
||||||
http::StatusCode,
|
http::StatusCode,
|
||||||
response::{IntoResponse, Redirect, Response},
|
response::{IntoResponse, Redirect, Response},
|
||||||
};
|
};
|
||||||
|
@ -8,7 +8,7 @@ use julid::Julid;
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use sqlx::{query, query_as, query_scalar, SqlitePool};
|
use sqlx::{query, query_as, query_scalar, SqlitePool};
|
||||||
|
|
||||||
use super::templates::{AddNewWatchPage, AddWatchButton, GetWatchPage};
|
use super::templates::{AddNewWatchPage, AddWatchButton, GetWatchPage, SearchWatchesPage};
|
||||||
use crate::{
|
use crate::{
|
||||||
misc_util::{empty_string_as_none, year_to_epoch},
|
misc_util::{empty_string_as_none, year_to_epoch},
|
||||||
AuthSession, MyWatchesPage, ShowKind, Watch, WatchQuest,
|
AuthSession, MyWatchesPage, ShowKind, Watch, WatchQuest,
|
||||||
|
@ -23,6 +23,9 @@ const GET_QUEST_QUERY: &str = "select * from watch_quests where user = ? and wat
|
||||||
|
|
||||||
const GET_WATCH_QUERY: &str = "select * from watches where id = $1";
|
const GET_WATCH_QUERY: &str = "select * from watches where id = $1";
|
||||||
|
|
||||||
|
const DEFAULT_WATCHES_QUERY: &str =
|
||||||
|
"select * from (select * from watches order by random() limit 50) order by release_date asc";
|
||||||
|
|
||||||
const ADD_WATCH_QUERY: &str = "insert into watches (title, kind, release_date, metadata_url, added_by, length) values ($1, $2, $3, $4, $5, $6) returning id";
|
const ADD_WATCH_QUERY: &str = "insert into watches (title, kind, release_date, metadata_url, added_by, length) values ($1, $2, $3, $4, $5, $6) returning id";
|
||||||
const ADD_WATCH_QUEST_QUERY: &str =
|
const ADD_WATCH_QUEST_QUERY: &str =
|
||||||
"insert into watch_quests (user, watch, public, watched) values ($1, $2, $3, $4)";
|
"insert into watch_quests (user, watch, public, watched) values ($1, $2, $3, $4)";
|
||||||
|
@ -62,6 +65,18 @@ impl IntoResponse for AddError {
|
||||||
// Types for receiving arguments from forms
|
// Types for receiving arguments from forms
|
||||||
//-************************************************************************
|
//-************************************************************************
|
||||||
|
|
||||||
|
#[derive(Debug, Default, Clone, Deserialize, PartialEq, Eq)]
|
||||||
|
pub struct SearchQuery {
|
||||||
|
#[serde(default, deserialize_with = "empty_string_as_none")]
|
||||||
|
pub search: Option<String>,
|
||||||
|
#[serde(default, deserialize_with = "empty_string_as_none")]
|
||||||
|
pub title: Option<String>,
|
||||||
|
#[serde(default, deserialize_with = "empty_string_as_none")]
|
||||||
|
pub kind: Option<String>,
|
||||||
|
#[serde(default, deserialize_with = "empty_string_as_none")]
|
||||||
|
pub year: Option<i64>,
|
||||||
|
}
|
||||||
|
|
||||||
// kinda the main form?
|
// kinda the main form?
|
||||||
#[derive(Debug, Default, Deserialize, PartialEq, Eq)]
|
#[derive(Debug, Default, Deserialize, PartialEq, Eq)]
|
||||||
pub struct PostAddNewWatch {
|
pub struct PostAddNewWatch {
|
||||||
|
@ -224,6 +239,32 @@ pub async fn get_watches(auth: AuthSession, State(pool): State<SqlitePool>) -> i
|
||||||
MyWatchesPage { watches, user }
|
MyWatchesPage { watches, user }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub async fn get_search_watch(
|
||||||
|
auth: AuthSession,
|
||||||
|
State(pool): State<SqlitePool>,
|
||||||
|
search: Query<SearchQuery>,
|
||||||
|
) -> impl IntoResponse {
|
||||||
|
let user = auth.user;
|
||||||
|
let search_query = search.0;
|
||||||
|
|
||||||
|
let query = if search_query == SearchQuery::default() {
|
||||||
|
query_as(DEFAULT_WATCHES_QUERY)
|
||||||
|
} else if let Some(title) = search_query.title {
|
||||||
|
let q = format!("%{title}%");
|
||||||
|
query_as("select * from watches where title like ?").bind(q)
|
||||||
|
} else if let Some(search) = search_query.search {
|
||||||
|
let q = format!("%{search}");
|
||||||
|
query_as("select * from watches where title like ?").bind(q)
|
||||||
|
} else {
|
||||||
|
query_as(DEFAULT_WATCHES_QUERY)
|
||||||
|
};
|
||||||
|
|
||||||
|
// until tantivy search
|
||||||
|
let watches: Vec<Watch> = query.fetch_all(&pool).await.unwrap();
|
||||||
|
|
||||||
|
SearchWatchesPage { watches, user }
|
||||||
|
}
|
||||||
|
|
||||||
pub async fn get_watch_status(
|
pub async fn get_watch_status(
|
||||||
auth: AuthSession,
|
auth: AuthSession,
|
||||||
State(pool): State<SqlitePool>,
|
State(pool): State<SqlitePool>,
|
||||||
|
|
|
@ -11,6 +11,13 @@ pub struct MyWatchesPage {
|
||||||
pub user: Option<User>,
|
pub user: Option<User>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
||||||
|
#[template(path = "search_watches_page.html")]
|
||||||
|
pub struct SearchWatchesPage {
|
||||||
|
pub watches: Vec<Watch>,
|
||||||
|
pub user: Option<User>,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
#[derive(Debug, Default, Template, Deserialize, Serialize, PartialEq, Eq, OptionalOptionalUser)]
|
||||||
#[template(path = "get_watch_page.html")]
|
#[template(path = "get_watch_page.html")]
|
||||||
pub struct GetWatchPage {
|
pub struct GetWatchPage {
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{% for res in results %}
|
{% for watch in watches %}
|
||||||
{% include "watch-search-result.html" %}
|
{% include "watch-search-result.html" %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
<tr id="watchlist-item-{{res.id}}">
|
<tr id="watchlist-item-{{watch.id}}">
|
||||||
<td><span class="watchtitle"><a href="/watch/{{res.id}}">{{res.title}}</a></span></td>
|
<td><span class="watchtitle"><a href="/watch/{{watch.id}}">{{watch.title}}</a></span></td>
|
||||||
<td><span>
|
<td><span>
|
||||||
{% match res.metadata_url %}
|
{% match watch.metadata_url %}
|
||||||
{% when Some with (mdurl) %}
|
{% when Some with (mdurl) %}
|
||||||
<a href="{{ mdurl }}">{{ mdurl }}</a>
|
<a href="{{ mdurl }}">{{ mdurl }}</a>
|
||||||
{% when None %}
|
{% when None %}
|
||||||
{% endmatch %}
|
{% endmatch %}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>{{res.kind}}</td>
|
<td>{{watch.kind}}</td>
|
||||||
<td> {% call m::get_or_default(res.year(), "when??") -%}</td>
|
<td> {% call m::get_or_default(watch.year(), "when??") -%}</td>
|
||||||
<td>
|
<td>
|
||||||
<span id="add-watch-{{res.id}}">
|
<span id="add-watch-{{watch.id}}">
|
||||||
<span hx-get="/watch/status/{{res.id}}" hx-target="this" hx-trigger="load, reveal"
|
<span hx-get="/watch/status/{{watch.id}}" hx-target="this" hx-trigger="load, reveal"
|
||||||
hx-swap="outerHTML">???</span>
|
hx-swap="outerHTML">???</span>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in a new issue