forked from jmug/stoatchat
feat: trending and categories routes
This commit is contained in:
committed by
Angelo Kontaxis
parent
a92152d86d
commit
5885e067a6
45
crates/services/gifbox/src/routes/trending.rs
Normal file
45
crates/services/gifbox/src/routes/trending.rs
Normal file
@@ -0,0 +1,45 @@
|
||||
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 TrendingQueryParams {
|
||||
#[param(example = "en_US")]
|
||||
pub locale: String,
|
||||
pub limit: Option<u32>,
|
||||
pub position: Option<String>
|
||||
}
|
||||
|
||||
/// Trending GIFs
|
||||
#[utoipa::path(
|
||||
get,
|
||||
path = "/featured",
|
||||
tag = "GIFs",
|
||||
security(("User Token" = []), ("Bot Token" = [])),
|
||||
params(TrendingQueryParams),
|
||||
responses(
|
||||
(status = 200, description = "Trending results", body = inline(types::PaginatedMediaResponse))
|
||||
)
|
||||
)]
|
||||
pub async fn trending(
|
||||
_user: User,
|
||||
Query(params): Query<TrendingQueryParams>,
|
||||
State(tenor): State<tenor::Tenor>,
|
||||
) -> Result<Json<types::PaginatedMediaResponse>> {
|
||||
tenor
|
||||
.featured(¶ms.locale, params.limit.unwrap_or(50), params.position.as_deref().unwrap_or_default())
|
||||
.await
|
||||
.map_err(|_| create_error!(InternalError))
|
||||
.map(|results| results.as_ref().clone().into())
|
||||
.map(Json)
|
||||
}
|
||||
Reference in New Issue
Block a user