chore(thanos): strip down codebase to just API routes
This commit is contained in:
@@ -1,28 +1,8 @@
|
||||
use crate::database::*;
|
||||
use crate::util::result::{Error, Result};
|
||||
use revolt_quark::Result;
|
||||
|
||||
use serde_json::Value;
|
||||
|
||||
#[get("/<target>/invite")]
|
||||
pub async fn fetch_public_bot(user: User, target: Ref) -> Result<Value> {
|
||||
if user.bot.is_some() {
|
||||
return Err(Error::IsBot)
|
||||
}
|
||||
|
||||
let bot = target.fetch_bot().await?;
|
||||
|
||||
if !bot.public {
|
||||
if bot.owner != user.id {
|
||||
return Err(Error::BotIsPrivate);
|
||||
}
|
||||
}
|
||||
|
||||
let user = Ref::from_unchecked(bot.id.clone()).fetch_user().await?;
|
||||
|
||||
Ok(json!({
|
||||
"_id": bot.id,
|
||||
"username": user.username,
|
||||
"avatar": user.avatar,
|
||||
"description": user.profile.map(|p| p.content)
|
||||
}))
|
||||
pub async fn fetch_public_bot(/*user: UserRef, target: Ref*/ target: String) -> Result<Value> {
|
||||
todo!()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user