Scrapping the APi because rocket is not mature enough for this project

This commit is contained in:
shockrah 2025-03-11 20:24:54 -07:00
parent 1c9d0a6207
commit 44530ff327
8 changed files with 1509 additions and 1899 deletions

1678
Cargo.lock generated

File diff suppressed because it is too large Load Diff

1602
api/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +0,0 @@
[package]
name = "api"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = [ "full" ] }
serde = "1.0.213"
rocket = { version = "0.5.1", features = [ "json" ] }
clap = { version = "4.5.20", features = ["derive"] }

View File

@ -1,41 +0,0 @@
use serde::Serialize;
use rocket::serde::json::Json;
#[derive(Serialize)]
enum Type {
Voice,
Text,
Video
}
#[derive(Serialize)]
struct Channel {
id: i64,
name: String,
desc: Option<String>,
r#type: Type
}
#[get("/list")]
pub async fn list() -> Json<Vec<Channel>> {
// TODO
Json(vec![])
}
#[post("/create")]
pub async fn create() -> Json<Option<Channel>> {
// TODO
Json(None)
}
#[delete("/delete")]
pub async fn delete() -> Json<Option<i64>> {
// TODO
Json(None)
}
#[post("/update")]
pub async fn update() -> Json<Option<Channel>> {
// TODO
Json(None)
}

View File

@ -1,14 +0,0 @@
use rocket::serde::json::Json;
use serde::Serialize;
#[derive(Serialize)]
pub struct User {
id: i64,
name: String,
}
#[get("/<id>")]
pub async fn invite_user(id: i64) -> Json<Option<User>> {
// First we check to see if the id is present in the invites table
Json(None)
}

View File

@ -1,48 +0,0 @@
#[macro_use] extern crate rocket;
use std::env;
use clap::Parser;
mod invites;
mod channels;
struct Config {
postgres_user: String,
postgrse_pass: String
}
#[derive(Parser)]
#[command(version, about, long_about = None)]
struct Args {
/// Set the postgres username to use for the API ( default is bubble_admin )
#[arg(short, long, default_value = "bubble_admin")]
psql_user: String,
/// Set the postgres password to use for the API ( Uses POSTGRES_PASSWORD
/// environment variable by default )
psql_pass: Option<String>,
}
#[rocket::main]
async fn main() -> Result<(), rocket::Error> {
let args = Args::parse();
let psql_pass = match args.psql_pass {
Some(pass) => pass,
None => match env::var("PSQL_PASS") {
Ok(pass) => pass,
Err(_) => panic!("PSQL_PASS is not set!")
}
};
let _ = rocket::build()
.mount("/channels", routes![
channels::list,
channels::create,
channels::delete
])
.mount("/invite", routes![invites::invite_user])
.ignite().await?
.launch().await?;
Ok(())
}

View File

@ -16,3 +16,10 @@ CREATE TABLE IF NOT EXISTS invites (
expires INTEGER,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS channels (
id BIGINT,
name varchar(256),
description varchar(256),
PRIMARY KEY (id)
);

8
dev.py
View File

@ -23,6 +23,12 @@ if __name__ == '__main__':
'--check-container',
help='Execs into the given container with bash for debugging'
)
parser.add_argument(
'-a',
'--api-run',
help='Runs the debug version of the api',
action='store_true'
)
args = parser.parse_args()
os.environ['DB_CONNECTION_STRING'] = args.db_url
if args.init_db:
@ -33,3 +39,5 @@ if __name__ == '__main__':
)
if args.check_container:
run(f'docker exec -it {args.check_container} bash'.split())
if args.api_run:
run( f'cargo run --bin api -- -p {args.db_url}'.split())