Compare commits
No commits in common. "d4bb9c20b5bc763cd5351441074872c4b6cee4a5" and "0e9692a8efafe8137879ad39d3f750a6059caf58" have entirely different histories.
d4bb9c20b5
...
0e9692a8ef
3 changed files with 25 additions and 49 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "frogbot"
|
name = "frogbot"
|
||||||
version = "0.1.1"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
|
@ -15,7 +15,6 @@ use regex::Regex;
|
||||||
use scraper::{Html, Selector};
|
use scraper::{Html, Selector};
|
||||||
|
|
||||||
/// Represents an Embed in the chat
|
/// Represents an Embed in the chat
|
||||||
#[derive(Default)]
|
|
||||||
pub struct Embed {
|
pub struct Embed {
|
||||||
/// The title of the embed
|
/// The title of the embed
|
||||||
pub title: String,
|
pub title: String,
|
||||||
|
@ -31,7 +30,7 @@ impl Embed {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Scrapes the HTML of a webpage and generates an [`Embed`] with the scraped information.
|
/// Scrapes the HTML of a webpage and generates an [`Embed`] with the scraped information.
|
||||||
pub fn parse_metadata(page: &str) -> Option<Embed> {
|
pub fn parse_metadata(page: &str) -> Embed {
|
||||||
let doc_body = Html::parse_document(page);
|
let doc_body = Html::parse_document(page);
|
||||||
|
|
||||||
// Selectors used to get metadata are defined here
|
// Selectors used to get metadata are defined here
|
||||||
|
@ -45,11 +44,6 @@ pub fn parse_metadata(page: &str) -> Option<Embed> {
|
||||||
let mut meta_title = String::default();
|
let mut meta_title = String::default();
|
||||||
let mut meta_description = String::default();
|
let mut meta_description = String::default();
|
||||||
|
|
||||||
if let (None, None) = (title, desc) {
|
|
||||||
warn!("Couldn't parse any metadata for URL");
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Some(title) = title {
|
if let Some(title) = title {
|
||||||
meta_title = title.text().collect();
|
meta_title = title.text().collect();
|
||||||
} else {
|
} else {
|
||||||
|
@ -62,7 +56,7 @@ pub fn parse_metadata(page: &str) -> Option<Embed> {
|
||||||
warn!("Failed to parse description HTML");
|
warn!("Failed to parse description HTML");
|
||||||
}
|
}
|
||||||
|
|
||||||
Some(Embed::new(meta_title, meta_description))
|
Embed::new(meta_title, meta_description)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check if the message has any urls in it and get them if it does
|
/// Check if the message has any urls in it and get them if it does
|
||||||
|
@ -125,52 +119,40 @@ pub async fn embed_handler(event: OriginalSyncRoomMessageEvent, room: Room, clie
|
||||||
|
|
||||||
let urls = get_urls_from_message(&text_content.body);
|
let urls = get_urls_from_message(&text_content.body);
|
||||||
|
|
||||||
let reqwest_client = reqwest::Client::builder().user_agent("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36").build().unwrap();
|
let reqwest_client = reqwest::Client::builder().user_agent("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36").build().unwrap();
|
||||||
|
|
||||||
for url in urls {
|
for url in urls {
|
||||||
if let Ok(req) = reqwest_client.get(url).send().await {
|
if let Ok(req) = reqwest_client.get(url).send().await {
|
||||||
if let Ok(res) = req.text().await {
|
if let Ok(res) = req.text().await {
|
||||||
// beware, dirty HTML parsing code
|
// beware, dirty HTML parsing code
|
||||||
let metadata = parse_metadata(&res);
|
let embed = parse_metadata(&res);
|
||||||
|
|
||||||
// Build and send our message reply
|
// Build our message reply
|
||||||
if metadata.is_some() {
|
let bot_reply = RoomMessageEventContent::text_html(
|
||||||
let embed = metadata.unwrap();
|
&embed.title,
|
||||||
let bot_reply = RoomMessageEventContent::text_html(
|
format!(
|
||||||
&embed.title,
|
r#"
|
||||||
format!(
|
<blockquote>
|
||||||
"<blockquote>
|
<h6><a href="{}">{}</a></h6>
|
||||||
<h4>{}</h4>
|
<h3><strong>{}</strong></h3>
|
||||||
<p>{}</p>
|
<p>{}</p>
|
||||||
</blockquote>",
|
</blockquote>
|
||||||
&embed.title, &embed.description
|
"#,
|
||||||
),
|
&url, &url, &embed.title, &embed.description
|
||||||
)
|
),
|
||||||
.make_reply_to(&full_reply_event);
|
)
|
||||||
|
.make_reply_to(&full_reply_event);
|
||||||
|
|
||||||
// Finally send the reply to the room
|
// Finally send the reply to the room
|
||||||
warn!("Sending embed for URL: '{}'", &url);
|
warn!("Sending embed for URL: '{}'", &url);
|
||||||
if room.send(bot_reply, None).await.is_err() {
|
if room.send(bot_reply, None).await.is_err() {
|
||||||
warn!("Failed to send embed for URL: '{}'", &url);
|
warn!("Failed to send embed for URL: '{}'", &url);
|
||||||
}
|
|
||||||
// If we didn't get any metadata send a generic "No metadata" response
|
|
||||||
} else {
|
|
||||||
let bot_reply = RoomMessageEventContent::text_html(
|
|
||||||
"Couldn't parse metadata for URL",
|
|
||||||
"<blockquote><h5>Couldn't parse metadata for URL</h5></blockquote>",
|
|
||||||
)
|
|
||||||
.make_reply_to(&full_reply_event);
|
|
||||||
// Send the reply to the room
|
|
||||||
warn!("Sending 'No metadata' embed for URL: '{}'", &url);
|
|
||||||
if room.send(bot_reply, None).await.is_err() {
|
|
||||||
warn!("Failed to send embed for URL: '{}'", &url);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
warn!("Failed to parse HTML for URL: '{}'", &url);
|
warn!("Failed to parse HTML for URL: '{}'", &url);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
warn!("Failed to fetch metadata for '{}'", &url);
|
warn!("Failed to get metadata for '{}'", &url);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -141,12 +141,6 @@ pub async fn run(config: Config) -> anyhow::Result<()> {
|
||||||
.await
|
.await
|
||||||
.expect("frogbot couldn't log into it's account.");
|
.expect("frogbot couldn't log into it's account.");
|
||||||
|
|
||||||
// Set the bot account's display name according to config
|
|
||||||
client
|
|
||||||
.account()
|
|
||||||
.set_display_name(Some(&config.display_name))
|
|
||||||
.await?;
|
|
||||||
|
|
||||||
warn!("Logged in successfully!");
|
warn!("Logged in successfully!");
|
||||||
warn!(
|
warn!(
|
||||||
"server: '{}', username: '{}', display name: '{}'",
|
"server: '{}', username: '{}', display name: '{}'",
|
||||||
|
|
Loading…
Reference in a new issue