57 lines
1.5 KiB
Rust
57 lines
1.5 KiB
Rust
use axum::{
|
|
extract::{Query, State},
|
|
Json,
|
|
};
|
|
use revolt_database::User;
|
|
use revolt_result::{create_error, Result};
|
|
use serde::Deserialize;
|
|
use utoipa::IntoParams;
|
|
|
|
use crate::{tenor, types};
|
|
|
|
#[derive(Deserialize, IntoParams)]
|
|
pub struct SearchQueryParams {
|
|
/// Search query
|
|
#[param(example = "Wave")]
|
|
pub query: String,
|
|
/// Users locale
|
|
#[param(example = "en_US")]
|
|
pub locale: String,
|
|
/// Amount of results to respond with
|
|
pub limit: Option<u32>,
|
|
/// Flag for if searching in a gif category
|
|
pub is_category: Option<bool>,
|
|
/// Value of `next` for getting the next page of results with the current search query
|
|
pub position: Option<String>,
|
|
}
|
|
|
|
/// Searches for GIFs with a query
|
|
#[utoipa::path(
|
|
get,
|
|
path = "/search",
|
|
tag = "GIFs",
|
|
security(("User Token" = []), ("Bot Token" = [])),
|
|
params(SearchQueryParams),
|
|
responses(
|
|
(status = 200, description = "Search results", body = inline(types::PaginatedMediaResponse))
|
|
)
|
|
)]
|
|
pub async fn search(
|
|
_user: User,
|
|
Query(params): Query<SearchQueryParams>,
|
|
State(tenor): State<tenor::Tenor>,
|
|
) -> Result<Json<types::PaginatedMediaResponse>> {
|
|
tenor
|
|
.search(
|
|
¶ms.query,
|
|
¶ms.locale,
|
|
params.limit.unwrap_or(50),
|
|
params.is_category.unwrap_or_default(),
|
|
params.position.as_deref().unwrap_or_default(),
|
|
)
|
|
.await
|
|
.map_err(|_| create_error!(InternalError))
|
|
.map(|results| results.as_ref().clone().into())
|
|
.map(Json)
|
|
}
|