Compare commits

...

3 commits

Author SHA1 Message Date
412ca4e538 cargo fmt 2023-08-12 13:58:28 -07:00
18f64358f0 images: remove /search route prefix 2023-08-12 13:58:11 -07:00
2fb68202a8 utils: remove link to issues page in nothuman error 2023-08-12 13:56:09 -07:00
4 changed files with 16 additions and 18 deletions

View file

@ -10,7 +10,7 @@ pub const BING: &str = "https://www.bing.com/images/search";
#[command(author, version, about, long_about = None)] #[command(author, version, about, long_about = None)]
struct Args { struct Args {
/// The port at which to run. /// The port at which to run.
#[arg(short, long, default_value_t=3002)] #[arg(short, long, default_value_t = 3002)]
port: u16, port: u16,
} }
@ -43,7 +43,7 @@ where
}) })
} }
#[get("/search/{query}/list")] #[get("/{query}/list")]
async fn route_query_list(path: web::Path<String>) -> Result<impl Responder> { async fn route_query_list(path: web::Path<String>) -> Result<impl Responder> {
let query = path.into_inner(); let query = path.into_inner();
let images = get_images(&query).await?; let images = get_images(&query).await?;
@ -52,19 +52,19 @@ async fn route_query_list(path: web::Path<String>) -> Result<impl Responder> {
.body(serde_json::to_string(&images).unwrap_or_else(|_| "[]".to_string()))) .body(serde_json::to_string(&images).unwrap_or_else(|_| "[]".to_string())))
} }
#[get("/search/{query}")] #[get("/{query}")]
async fn route_query(path: web::Path<String>) -> Result<impl Responder> { async fn route_query(path: web::Path<String>) -> Result<impl Responder> {
let query = path.into_inner(); let query = path.into_inner();
route(&query, |images| images.get(0)).await route(&query, |images| images.get(0)).await
} }
#[get("/search/{query}/random")] #[get("/{query}/random")]
async fn route_query_random(path: web::Path<String>) -> Result<impl Responder> { async fn route_query_random(path: web::Path<String>) -> Result<impl Responder> {
let query = path.into_inner(); let query = path.into_inner();
route(&query, |images| images.choose(&mut rand::thread_rng())).await route(&query, |images| images.choose(&mut rand::thread_rng())).await
} }
#[get("/search/{query}/{index}")] #[get("/{query}/{index}")]
async fn route_query_index(path: web::Path<(String, usize)>) -> Result<impl Responder> { async fn route_query_index(path: web::Path<(String, usize)>) -> Result<impl Responder> {
let (query, index) = path.into_inner(); let (query, index) = path.into_inner();
route(&query, move |images| images.get(index % images.len())).await route(&query, move |images| images.get(index % images.len())).await

View file

@ -1,4 +1,7 @@
use utils::{error::{Error, Result}, is_human}; use utils::{
error::{Error, Result},
is_human,
};
use actix_web::{get, http::header, App, HttpRequest, HttpResponse, HttpServer, Responder}; use actix_web::{get, http::header, App, HttpRequest, HttpResponse, HttpServer, Responder};
use clap::Parser; use clap::Parser;
@ -9,7 +12,7 @@ pub const TATOEBA_API: &str = "https://tatoeba.org/en/api_v0/search";
#[command(author, version, about, long_about = None)] #[command(author, version, about, long_about = None)]
struct Args { struct Args {
/// The port at which to run. /// The port at which to run.
#[arg(short, long, default_value_t=3001)] #[arg(short, long, default_value_t = 3001)]
port: u16, port: u16,
} }

View file

@ -11,7 +11,9 @@ pub type Result<T> = std::result::Result<T, Error>;
pub enum Error { pub enum Error {
Reqwest(reqwest::Error), Reqwest(reqwest::Error),
#[cfg(feature = "nothuman")] #[cfg(feature = "nothuman")]
NotHuman { target: String }, NotHuman {
target: String,
},
} }
impl Display for Error { impl Display for Error {
@ -40,11 +42,8 @@ impl ResponseError for Error {
Self::NotHuman { target } => format!( Self::NotHuman { target } => format!(
"It looks like you're accessing the Tatoeba API proxy from a script!\n\ "It looks like you're accessing the Tatoeba API proxy from a script!\n\
Tatoeba CORS restrictions do not apply outside of browsers, so please access the API directly:\n\ Tatoeba CORS restrictions do not apply outside of browsers, so please access the API directly:\n\
{target}\n\ {target}"),
If you feel this is mistake, please open an issue:\n\
https://codeberg.org/ElnuDev/tatoeba-api-rs"),
_ => self.to_string(), _ => self.to_string(),
}) })
} }
} }

View file

@ -12,10 +12,6 @@ pub fn is_human(request: &HttpRequest) -> bool {
.headers() .headers()
.get(header::USER_AGENT) .get(header::USER_AGENT)
.and_then(|header| header.to_str().ok()) .and_then(|header| header.to_str().ok())
.map(|ua| { .map(|ua| HUMANS.iter().any(|&human| ua.contains(human)))
HUMANS
.iter()
.any(|&human| ua.contains(human))
})
.unwrap_or(false) .unwrap_or(false)
} }