Improve webhook embeds

This commit is contained in:
Elnu 2023-03-30 22:03:31 -07:00
parent 3758a16f8d
commit 072c7c4b8b

View file

@ -130,55 +130,70 @@ async fn _post_comment(
} }
None => return Err(Error::InvalidUrl), // e.g. 404 None => return Err(Error::InvalidUrl), // e.g. 404
}; };
// TODO: Clean up webhook integration // TODO: Use web::block
{ // Create comment in database
let database = data.get_db(&origin)?; let database = data.get_db(&origin)?;
if let Some(webhook) = &database.settings.webhook { if comment.author.is_none() && database.settings.name_required {
let client = WebhookClient::new(&webhook); return Err(Error::NameRequired);
client.send(|message| { }
let author = match &comment.author { if comment.email.is_none() && database.settings.email_required {
Some(author) => &author, return Err(Error::EmailRequired);
None => "Annonymous", }
}; if let Some(parent) = comment.parent {
message 'outer2: loop {
.username(&author) let comments = database.get_comments(&comment.content_id)?;
.avatar_url(&format!( for other_comment in comments.iter() {
"https://www.gravatar.com/avatar/{}?d=mp", if other_comment.id.unwrap() == parent {
get_gravatar(&comment.email) if other_comment.parent.is_none() {
)) break 'outer2;
.embed(|embed| embed }
.title(&format!("New comment on {}", page_data.content_id)) break;
.description(&comment.text)
)
} }
).await.unwrap(); }
return Err(Error::InvalidParent);
} }
} }
web::block(move || { database.create_comment(&comment)?;
let database = data.get_db(&origin)?; // Send notification webhook
if comment.author.is_none() && database.settings.name_required { if let Some(webhook) = &database.settings.webhook {
return Err(Error::NameRequired); let client = WebhookClient::new(&webhook);
} client.send(|message| {
if comment.email.is_none() && database.settings.email_required { let author = match &comment.author {
return Err(Error::EmailRequired); Some(author) => &author,
} None => "Annonymous",
if let Some(parent) = comment.parent { };
'outer2: loop { message
let comments = database.get_comments(&comment.content_id)?; .username(&author)
for other_comment in comments.iter() { .avatar_url(&format!(
if other_comment.id.unwrap() == parent { "https://www.gravatar.com/avatar/{}?d=mp",
if other_comment.parent.is_none() { get_gravatar(&comment.email)
break 'outer2; ))
} .embed(|embed| embed
break; .title(&format!("New comment on {}", page_data.content_id))
} .description(&comment.text)
} .field("Link", &format!("{}#{}",
return Err(Error::InvalidParent); &url // Remove any trailing hash from URL
.split("#")
.next()
.unwrap(),
&database // Get ID of just created comment
.get_comments(&page_data.content_id)
.unwrap()
.first() // returned in reverse chronological order
.unwrap()
.id
.unwrap()
), true)
.field("Content ID", &page_data.content_id, true)
.field("Email", match &comment.email {
Some(email) => email,
None => "None",
}, false)
)
} }
} ).await.unwrap();
database.create_comment(&comment)?; }
Ok(())
}).await?.unwrap();
Ok(()) Ok(())
} }