mirror of
https://github.com/SinTan1729/chhoto-url
synced 2025-02-05 22:02:32 -06:00
148 lines
4.2 KiB
Rust
148 lines
4.2 KiB
Rust
|
// SPDX-FileCopyrightText: 2023 Sayantan Santra <sayantan.santra689@gmail.com>
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
use actix_files::NamedFile;
|
||
|
use actix_session::Session;
|
||
|
use actix_web::{
|
||
|
delete, get,
|
||
|
http::StatusCode,
|
||
|
post,
|
||
|
web::{self, Redirect},
|
||
|
Either, HttpResponse, Responder,
|
||
|
};
|
||
|
use std::env;
|
||
|
|
||
|
use crate::auth;
|
||
|
use crate::database;
|
||
|
use crate::utils;
|
||
|
use crate::AppState;
|
||
|
|
||
|
// Store the version number
|
||
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||
|
|
||
|
// Define the routes
|
||
|
|
||
|
// Add new links
|
||
|
#[post("/api/new")]
|
||
|
pub async fn add_link(req: String, data: web::Data<AppState>, session: Session) -> HttpResponse {
|
||
|
if env::var("public_mode") == Ok(String::from("Enable")) || auth::validate(session) {
|
||
|
let out = utils::add_link(req, &data.db);
|
||
|
if out.0 {
|
||
|
HttpResponse::Created().body(out.1)
|
||
|
} else {
|
||
|
HttpResponse::Conflict().body(out.1)
|
||
|
}
|
||
|
} else {
|
||
|
HttpResponse::Unauthorized().body("Not logged in!")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Return all active links
|
||
|
#[get("/api/all")]
|
||
|
pub async fn getall(data: web::Data<AppState>, session: Session) -> HttpResponse {
|
||
|
if auth::validate(session) {
|
||
|
HttpResponse::Ok().body(utils::getall(&data.db))
|
||
|
} else {
|
||
|
let body = if env::var("public_mode") == Ok(String::from("Enable")) {
|
||
|
"Using public mode."
|
||
|
} else {
|
||
|
"Not logged in!"
|
||
|
};
|
||
|
HttpResponse::Unauthorized().body(body)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Get the site URL
|
||
|
#[get("/api/siteurl")]
|
||
|
pub async fn siteurl() -> HttpResponse {
|
||
|
let site_url = env::var("site_url")
|
||
|
.ok()
|
||
|
.filter(|s| !s.trim().is_empty())
|
||
|
.unwrap_or(String::from("unset"));
|
||
|
HttpResponse::Ok().body(site_url)
|
||
|
}
|
||
|
|
||
|
// Get the version number
|
||
|
#[get("/api/version")]
|
||
|
pub async fn version() -> HttpResponse {
|
||
|
HttpResponse::Ok().body(VERSION)
|
||
|
}
|
||
|
|
||
|
// 404 error page
|
||
|
pub async fn error404() -> impl Responder {
|
||
|
NamedFile::open_async("./resources/static/404.html")
|
||
|
.await
|
||
|
.customize()
|
||
|
.with_status(StatusCode::NOT_FOUND)
|
||
|
}
|
||
|
|
||
|
// Handle a given shortlink
|
||
|
#[get("/{shortlink}")]
|
||
|
pub async fn link_handler(
|
||
|
shortlink: web::Path<String>,
|
||
|
data: web::Data<AppState>,
|
||
|
) -> impl Responder {
|
||
|
let shortlink_str = shortlink.to_string();
|
||
|
if let Some(longlink) = utils::get_longurl(shortlink_str, &data.db) {
|
||
|
let redirect_method = env::var("redirect_method").unwrap_or(String::from("PERMANENT"));
|
||
|
database::add_hit(shortlink.as_str(), &data.db);
|
||
|
if redirect_method == "TEMPORARY" {
|
||
|
Either::Left(Redirect::to(longlink))
|
||
|
} else {
|
||
|
// Defaults to permanent redirection
|
||
|
Either::Left(Redirect::to(longlink).permanent())
|
||
|
}
|
||
|
} else {
|
||
|
Either::Right(
|
||
|
NamedFile::open_async("./resources/static/404.html")
|
||
|
.await
|
||
|
.customize()
|
||
|
.with_status(StatusCode::NOT_FOUND),
|
||
|
)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Handle login
|
||
|
#[post("/api/login")]
|
||
|
pub async fn login(req: String, session: Session) -> HttpResponse {
|
||
|
if let Ok(password) = env::var("password") {
|
||
|
if password != req {
|
||
|
eprintln!("Failed login attempt!");
|
||
|
return HttpResponse::Unauthorized().body("Wrong password!");
|
||
|
}
|
||
|
}
|
||
|
// Return Ok if no password was set on the server side
|
||
|
session
|
||
|
.insert("chhoto-url-auth", auth::gen_token())
|
||
|
.expect("Error inserting auth token.");
|
||
|
HttpResponse::Ok().body("Correct password!")
|
||
|
}
|
||
|
|
||
|
// Handle logout
|
||
|
#[delete("/api/logout")]
|
||
|
pub async fn logout(session: Session) -> HttpResponse {
|
||
|
if session.remove("chhoto-url-auth").is_some() {
|
||
|
HttpResponse::Ok().body("Logged out!")
|
||
|
} else {
|
||
|
HttpResponse::Unauthorized().body("You don't seem to be logged in.")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Delete a given shortlink
|
||
|
#[delete("/api/del/{shortlink}")]
|
||
|
pub async fn delete_link(
|
||
|
shortlink: web::Path<String>,
|
||
|
data: web::Data<AppState>,
|
||
|
session: Session,
|
||
|
) -> HttpResponse {
|
||
|
if auth::validate(session) {
|
||
|
if utils::delete_link(shortlink.to_string(), &data.db) {
|
||
|
HttpResponse::Ok().body(format!("Deleted {shortlink}"))
|
||
|
} else {
|
||
|
HttpResponse::NotFound().body("Not found!")
|
||
|
}
|
||
|
} else {
|
||
|
HttpResponse::Unauthorized().body("Not logged in!")
|
||
|
}
|
||
|
}
|