2023-07-14 08:17:36 +00:00
|
|
|
use mastodon_async::entities::visibility::Visibility;
|
|
|
|
use mastodon_async::helpers::toml as masto_toml;
|
|
|
|
use mastodon_async::prelude::*;
|
2023-03-09 21:34:14 +00:00
|
|
|
use mastodon_async::{helpers::cli, Result};
|
2023-02-22 18:33:39 +00:00
|
|
|
use reqwest;
|
2023-07-14 08:17:36 +00:00
|
|
|
use serde::Deserialize;
|
|
|
|
use std::collections::HashSet;
|
2023-02-22 18:33:39 +00:00
|
|
|
use std::io::Cursor;
|
|
|
|
use std::io::Write;
|
2023-07-14 08:17:36 +00:00
|
|
|
use std::process::Command;
|
|
|
|
use toml;
|
|
|
|
|
|
|
|
const CONFIG_FILENAME: &str = "config.toml";
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct Config {
|
|
|
|
bot: Bot,
|
|
|
|
files: Files,
|
|
|
|
errors: Errors,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct Bot {
|
|
|
|
name: String,
|
|
|
|
instance: String,
|
|
|
|
bio: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct Files {
|
|
|
|
posted: String,
|
|
|
|
urls: String,
|
|
|
|
tempfile: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct Errors {
|
|
|
|
out_of_images: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parses the given filename to a config struct
|
|
|
|
fn parse_config(filename: &str) -> Config {
|
|
|
|
let toml_file = std::fs::read_to_string(filename)
|
|
|
|
.expect("No config file, consider getting the original one and modifing it");
|
|
|
|
toml::from_str(&toml_file).expect("Malformed config file, check the original one for reference")
|
|
|
|
}
|
2023-02-22 18:33:39 +00:00
|
|
|
|
|
|
|
#[tokio::main] // requires `features = ["mt"]
|
|
|
|
async fn main() -> Result<()> {
|
2023-07-14 08:17:36 +00:00
|
|
|
let config: Config = parse_config(CONFIG_FILENAME);
|
|
|
|
let mastodon = if let Ok(data) = masto_toml::from_file("mastodon-data.toml") {
|
|
|
|
Mastodon::from(data)
|
|
|
|
} else {
|
|
|
|
register(&config).await?
|
|
|
|
};
|
2023-02-22 18:33:39 +00:00
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
match get_next_url(&config) {
|
|
|
|
Some(url) => {
|
|
|
|
post_image(&mastodon, &url, &config).await;
|
|
|
|
update_bio(&mastodon, &config).await;
|
2023-02-22 18:33:39 +00:00
|
|
|
}
|
2023-07-14 08:17:36 +00:00
|
|
|
None => post(&mastodon, &config.errors.out_of_images).await,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
2023-02-22 18:33:39 +00:00
|
|
|
}
|
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
fn get_next_url(config: &Config) -> Option<String> {
|
|
|
|
let binding = std::fs::read_to_string(&config.files.posted).expect("Posted file not found");
|
|
|
|
let posted = binding.lines().collect::<HashSet<&str>>();
|
|
|
|
let binding = std::fs::read_to_string(&config.files.urls).expect("Urls file not found");
|
|
|
|
let urls = binding.lines().collect::<HashSet<&str>>();
|
|
|
|
let urls = urls.difference(&posted).collect::<Vec<_>>();
|
|
|
|
if urls.is_empty() {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
let mut file = std::fs::OpenOptions::new()
|
|
|
|
.write(true)
|
|
|
|
.append(true) // This is needed to append to file
|
|
|
|
.open(&config.files.posted)
|
2023-07-14 09:03:28 +00:00
|
|
|
.expect("Cannot open posted file"); // Maybe we should retry just in case
|
|
|
|
write!(file, "{}\n", urls[0]).expect("Cannot write to posted file"); // maybe we should retry tbh
|
2023-07-14 08:17:36 +00:00
|
|
|
Some(urls[0].to_string().clone())
|
|
|
|
}
|
|
|
|
}
|
2023-03-09 19:23:56 +00:00
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
async fn post_image(account: &Mastodon, url: &String, config: &Config) {
|
|
|
|
fetch_url(url.to_string(), &config.files.tempfile)
|
|
|
|
.await
|
2023-07-14 08:57:53 +00:00
|
|
|
.expect("Error fetching url");
|
2023-07-14 08:17:36 +00:00
|
|
|
let attachment = account
|
|
|
|
.media(&config.files.tempfile, Some(url.to_string()))
|
|
|
|
.await
|
|
|
|
.expect("Attachment upload error");
|
|
|
|
let attachment = account
|
|
|
|
.wait_for_processing(attachment, Default::default())
|
|
|
|
.await
|
|
|
|
.expect("Attachment processing error");
|
|
|
|
let status = StatusBuilder::new()
|
|
|
|
.media_ids(&[attachment.id])
|
|
|
|
.visibility(Visibility::Unlisted)
|
|
|
|
.sensitive(true)
|
|
|
|
.build()
|
2023-07-14 09:03:28 +00:00
|
|
|
.expect("Could not build status"); // we should retry
|
|
|
|
account.new_status(status).await.expect("Error generating status"); // we should retry or delete last url in posted
|
2023-07-14 08:57:53 +00:00
|
|
|
println!("Status posted")
|
2023-03-09 19:23:56 +00:00
|
|
|
}
|
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
async fn update_bio(account: &Mastodon, config: &Config) {
|
|
|
|
let binding = std::fs::read_to_string(&config.files.posted).expect("Posted file not found");
|
|
|
|
let posted = binding.lines().collect::<HashSet<&str>>();
|
|
|
|
let binding = std::fs::read_to_string(&config.files.urls).expect("Url file not found");
|
|
|
|
let urls = binding.lines().collect::<HashSet<&str>>();
|
|
|
|
let remaining = urls.difference(&posted).count();
|
|
|
|
|
|
|
|
Command::new("curl")
|
|
|
|
.args([
|
|
|
|
"-X",
|
|
|
|
"PATCH",
|
|
|
|
&format!("{}/api/v1/accounts/update_credentials", config.bot.instance),
|
|
|
|
"-H",
|
|
|
|
&format!("Authorization:Bearer {}", account.data.token),
|
|
|
|
"-d",
|
|
|
|
&format!(
|
|
|
|
"note={}\n\n{} new images remaining",
|
|
|
|
config.bot.bio, remaining
|
|
|
|
),
|
|
|
|
])
|
|
|
|
.spawn()
|
2023-07-14 09:03:28 +00:00
|
|
|
.expect("Could not spawn curl")
|
2023-07-14 08:17:36 +00:00
|
|
|
.wait()
|
2023-07-14 09:03:28 +00:00
|
|
|
.expect("Curl failed");
|
2023-02-22 18:33:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn post(account: &Mastodon, msg: &str) {
|
2023-07-14 08:17:36 +00:00
|
|
|
let status = StatusBuilder::new()
|
2023-02-22 18:33:39 +00:00
|
|
|
.visibility(Visibility::Direct)
|
|
|
|
.status(msg)
|
|
|
|
.build()
|
2023-07-14 08:57:53 +00:00
|
|
|
.expect("Error building error status");
|
|
|
|
account.new_status(status).await.expect("Error posting error status");
|
|
|
|
println!("Error status posted")
|
2023-02-22 18:33:39 +00:00
|
|
|
}
|
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
async fn fetch_url(url: String, file_name: &String) -> Result<()> {
|
|
|
|
let response = reqwest::get(url).await?;
|
|
|
|
let mut file = std::fs::File::create(file_name)?;
|
|
|
|
let mut content = Cursor::new(response.bytes().await?);
|
|
|
|
std::io::copy(&mut content, &mut file)?;
|
|
|
|
Ok(())
|
2023-02-22 18:33:39 +00:00
|
|
|
}
|
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
async fn register(config: &Config) -> Result<Mastodon> {
|
|
|
|
let registration = Registration::new(&config.bot.instance)
|
|
|
|
.client_name(&config.bot.name)
|
|
|
|
.scopes(Scopes::write_all())
|
|
|
|
.build()
|
|
|
|
.await?;
|
|
|
|
let mastodon = cli::authenticate(registration).await?;
|
2023-02-22 18:33:39 +00:00
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
// Save app data for using on the next run.
|
|
|
|
masto_toml::to_file(&mastodon.data, "mastodon-data.toml")?;
|
2023-02-22 18:33:39 +00:00
|
|
|
|
2023-07-14 08:17:36 +00:00
|
|
|
Ok(mastodon)
|
2023-02-22 18:33:39 +00:00
|
|
|
}
|