Compare commits

...

8 Commits

Author SHA1 Message Date
6deecbf3de
fix cargo versioning per cargo docs 2024-12-12 12:48:08 +07:00
1d3008a7e4
Fork version numbering fix 2024-12-12 12:44:29 +07:00
682adfc110
bump version to Fork-1.1 2024-12-12 12:40:04 +07:00
bd6c8e6199
fix: auth::apikey_validate connection instead of AppState 2024-11-23 12:15:17 +07:00
SinTan1729
fdeeffb567 fix: Disable copying to clipboard on WebKit, fixes #36
This disables clipboard copying and lets the user
manually copy the links.
2024-11-23 11:28:25 +07:00
SinTan1729
0d98fc58fb build: Bumped version to 5.4.5 2024-11-23 11:28:25 +07:00
SinTan1729
e3b1e75d4d fix: Do not autocapitalize shorturl on mobile devices 2024-11-23 11:28:09 +07:00
SinTan1729
6006781837 chg: Remove lowercasing of shorturl from the CSS, fixes #35
This makes the behavior more uniform across different banned characters.
2024-11-23 11:26:29 +07:00
7 changed files with 22 additions and 23 deletions

2
actix/Cargo.lock generated
View File

@ -476,7 +476,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chhoto-url"
version = "5.4.4"
version = "1.1.0"
dependencies = [
"actix-files",
"actix-session",

View File

@ -3,14 +3,14 @@
[package]
name = "chhoto-url"
version = "5.4.4"
version = "1.1.0"
edition = "2021"
authors = ["Sayantan Santra <sayantan[dot]santra689[at]gmail[dot]com"]
license = "mit"
description = "A simple selfhosted URL shortener with no unnecessary features."
homepage = "https://github.com/SinTan1729/chhoto-url"
documentation = "https://github.com/SinTan1729/chhoto-url"
repository = "https://github.com/SinTan1729/chhoto-url"
homepage = "https://github.com/minoplhy/chhoto-url"
documentation = "https://github.com/minoplhy/chhoto-url"
repository = "https://github.com/minoplhy/chhoto-url"
readme = "README.md"
keywords = [
"docker",

View File

@ -2,11 +2,11 @@
// SPDX-License-Identifier: MIT
use actix_session::Session;
use actix_web::{web, HttpRequest};
use actix_web::HttpRequest;
use rusqlite::Connection;
use std::{env, time::SystemTime};
use crate::database::get_api_key;
use crate::AppState;
use crate::database;
// Validate a given password
pub fn validate(session: Session) -> bool {
@ -27,11 +27,11 @@ pub fn validate(session: Session) -> bool {
}
// Validate x-api-header to match the key in database
pub fn apikey_validate(httprequest: HttpRequest, data: web::Data<AppState>) -> bool {
pub fn apikey_validate(httprequest: HttpRequest, db: &Connection) -> bool {
httprequest.headers()
.get("x-api-key")
.and_then(|h| h.to_str().ok())
.map(|key| key == get_api_key(&data.db))
.map(|key| key == database::get_api_key(&db))
.unwrap_or(false)
}

View File

@ -8,7 +8,7 @@ use actix_web::{
};
use std::env;
use crate::auth::{self, apikey_validate};
use crate::auth;
use crate::database;
use crate::utils;
use crate::AppState;
@ -26,7 +26,7 @@ pub async fn add_link(
session: Session,
httprequest: HttpRequest)
-> HttpResponse {
if env::var("public_mode") == Ok(String::from("Enable")) || auth::validate(session) || apikey_validate(httprequest, data.clone()) {
if env::var("public_mode") == Ok(String::from("Enable")) || auth::validate(session) || auth::apikey_validate(httprequest, &data.db) {
let out = utils::add_link(req, &data.db);
if out.0 {
HttpResponse::Created().body(out.1)
@ -45,7 +45,7 @@ pub async fn getall(
session: Session,
httprequest: HttpRequest
) -> HttpResponse {
if auth::validate(session) || apikey_validate(httprequest, data.clone()) {
if auth::validate(session) || auth::apikey_validate(httprequest, &data.db) {
HttpResponse::Ok().body(utils::getall(&data.db))
} else {
let body = if env::var("public_mode") == Ok(String::from("Enable")) {
@ -126,7 +126,7 @@ pub async fn login(req: String, session: Session) -> HttpResponse {
// Create API Key
#[post("/api/key")]
pub async fn gen_api_key(session: Session, httprequest: HttpRequest, data: web::Data<AppState>) -> HttpResponse {
if auth::validate(session) || apikey_validate(httprequest, data.clone()) {
if auth::validate(session) || auth::apikey_validate(httprequest, &data.db) {
let key = utils::gen_api_key(&data.db);
if key.0 {
HttpResponse::Ok().body(key.1)
@ -157,7 +157,7 @@ pub async fn edit_link(
session: Session,
httprequest: HttpRequest,
) -> HttpResponse {
if auth::validate(session) || apikey_validate(httprequest, data.clone()) {
if auth::validate(session) || auth::apikey_validate(httprequest, &data.db) {
let out = utils::edit_link(req, shortlink.to_string(), &data.db);
if out.0 {
HttpResponse::Created().body(out.1)
@ -177,7 +177,7 @@ pub async fn delete_link(
session: Session,
httprequest: HttpRequest,
) -> HttpResponse {
if auth::validate(session) || apikey_validate(httprequest, data.clone()) {
if auth::validate(session) || auth::apikey_validate(httprequest, &data.db) {
if utils::delete_link(shortlink.to_string(), &data.db) {
HttpResponse::Ok().body(format!("Deleted {shortlink}"))
} else {

View File

@ -38,7 +38,7 @@
<div class="pure-control-group">
<label for="shortUrl">Short URL (optional)</label>
<input type="text" name="shortUrl" id="shortUrl" placeholder="Only a-z, 0-9, - and _ are allowed"
pattern="[a-z0-9\-_]+" title="Only a-z, 0-9, - and _ are allowed" />
pattern="[a-z0-9\-_]+" title="Only a-z, 0-9, - and _ are allowed" autocapitalize="off"/>
</div>
<div class="pure-controls" id="controls">
<button class="pure-button pure-button-primary">Shorten!</button>
@ -71,7 +71,7 @@
&nbsp;
<a id="api-key-button" href="javascript:fetchApiKey()" hidden>API Key</a>
&nbsp;
<a id="version-number" href="https://github.com/SinTan1729/chhoto-url" target="_blank" rel="noopener noreferrer"
<a id="version-number" href="https://github.com/minoplhy/chhoto-url" target="_blank" rel="noopener noreferrer"
hidden>Source Code</a>
</div>

View File

@ -109,7 +109,10 @@ const TR = (row, site) => {
const tr = document.createElement("tr");
const longTD = TD(A_LONG(row["longlink"]), "Long URL");
var shortTD = null;
if (window.isSecureContext) {
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
// For now, we disable copying on WebKit due to a possible bug. Manual copying is enabled instead.
// Take a look at https://github.com/SinTan1729/chhoto-url/issues/36
if (window.isSecureContext && !(isSafari)) {
shortTD = TD(A_SHORT(row["shortlink"], site), "Short URL");
} else {
shortTD = TD(A_SHORT_INSECURE(row["shortlink"], site), "Short URL");

View File

@ -57,10 +57,6 @@ input {
width: 65%;
}
form input[name="shortUrl"] {
text-transform: lowercase;
}
form input[name="shortUrl"]::placeholder {
text-transform: none;
}