Add message edit records + work on guilds.

This commit is contained in:
Paul Makles
2020-04-06 12:58:55 +01:00
parent 3609b7cf10
commit 8e908ce105
11 changed files with 267 additions and 62 deletions

84
src/routes/guild.rs Normal file
View File

@@ -0,0 +1,84 @@
use crate::database::{ self, user::User };
use bson::{ bson, doc };
use rocket_contrib::json::{ JsonValue, Json };
use serde::{ Serialize, Deserialize };
use ulid::Ulid;
use super::channel::ChannelType;
#[derive(Serialize, Deserialize)]
pub struct CreateGuild {
name: String,
description: Option<String>,
nonce: String,
}
/// send a message to a channel
#[post("/create", data = "<info>")]
pub fn create_guild(user: User, info: Json<CreateGuild>) -> JsonValue {
if !user.email_verification.verified {
return json!({
"success": false,
"error": "Email not verified!",
});
}
let name: String = info.name.chars().take(32).collect();
let description: String = info.description.clone().unwrap_or("No description.".to_string()).chars().take(255).collect();
let nonce: String = info.nonce.chars().take(32).collect();
let channels = database::get_collection("channels");
let col = database::get_collection("guilds");
if let Some(_) = col.find_one(doc! { "nonce": nonce.clone() }, None).unwrap() {
return json!({
"success": false,
"error": "Guild already created!"
})
}
let channel_id = Ulid::new().to_string();
if let Err(_) = channels.insert_one(
doc! {
"_id": channel_id.clone(),
"channel_type": ChannelType::GUILDCHANNEL as u32,
"name": "general",
},
None) {
return json!({
"success": false,
"error": "Failed to create guild channel."
})
}
let id = Ulid::new().to_string();
if col.insert_one(
doc! {
"_id": id.clone(),
"nonce": nonce,
"name": name,
"description": description,
"owner": user.id.clone(),
"channels": [
channel_id.clone()
],
"members": [
user.id
],
"invites": [],
},
None
).is_ok() {
json!({
"success": true,
"id": id,
})
} else {
channels.delete_one(doc! { "_id": channel_id }, None).expect("Failed to delete the channel we just made.");
json!({
"success": false,
"error": "Failed to create guild."
})
}
}