You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hydrus-utils/src/operations/find_and_send_reddit_posts.rs

23 lines
701 B
Rust

use hydrus_api::Hydrus;
use crate::error::Result;
use crate::utils::reddit::get_post_images;
#[tracing::instrument(level = "debug", skip(hydrus))]
pub async fn find_and_send_reddit_posts(hydrus: &Hydrus, post_urls: Vec<String>) -> Result<()> {
let total_posts = post_urls.len();
for (index, post) in post_urls.into_iter().enumerate() {
tracing::info!("Importing post {} of {}", index + 1, total_posts);
tracing::debug!("Post {}", post);
let images = get_post_images(&post).await?;
tracing::info!("Found {} images for post {}", images.len(), post);
for url in images {
hydrus.import().url(url).run().await?;
}
}
Ok(())
}