Browse Source

added support for akkoma

main
Marta 4 weeks ago
parent
commit
6d22c44eb6
  1. 25
      src/fetcher.rs
  2. 3
      src/misc.rs

25
src/fetcher.rs

@ -114,6 +114,7 @@ impl EmojiFetcher {
self.needs_interactive("logging into gotosocial", self.try_fetch_gts()) self.needs_interactive("logging into gotosocial", self.try_fetch_gts())
.await .await
} }
FediSoftware::Akkoma => self.try_fetch_akkoma().await,
FediSoftware::Other(other) => { FediSoftware::Other(other) => {
error!("unsupported fedi software: `{other}`"); error!("unsupported fedi software: `{other}`");
Ok(()) Ok(())
@ -166,11 +167,35 @@ impl EmojiFetcher {
Ok(()) Ok(())
} }
async fn try_fetch_akkoma(&self) -> Result<()> {
info!("trying to fetch emojis from akkoma");
info!("trying without authentication");
let unauth_res = self.do_fetch(|rb| rb).await;
if unauth_res.is_ok() {
info!("successfully fetched from akkoma without authentication");
return Ok(());
}
info!("seems like authentication is needed; asking necessary info");
let access_token = self
.needs_interactive(
"logging into akkoma",
mastodon::auth_interactive(&self.client),
)
.await?;
mastodon::verify_login(&self.client, &access_token).await?;
self.do_fetch(|rb| rb.bearer_auth(&access_token)).await?;
mastodon::invalidate_token(&self.client, &access_token).await
}
async fn ask_target_and_try_fetch(&self) -> Result<()> { async fn ask_target_and_try_fetch(&self) -> Result<()> {
info!("Could not auto-detect which software the instance uses."); info!("Could not auto-detect which software the instance uses.");
let options = vec![ let options = vec![
FediSoftware::Mastodon, FediSoftware::Mastodon,
FediSoftware::Gotosocial, FediSoftware::Gotosocial,
FediSoftware::Akkoma,
FediSoftware::Other("".into()), FediSoftware::Other("".into()),
]; ];
let answer = inquire::Select::new("Please select the instance software:", options) let answer = inquire::Select::new("Please select the instance software:", options)

3
src/misc.rs

@ -7,6 +7,7 @@ use serde::Deserialize;
pub enum FediSoftware { pub enum FediSoftware {
Mastodon, Mastodon,
Gotosocial, Gotosocial,
Akkoma,
Other(String), Other(String),
#[default] #[default]
Unknown, Unknown,
@ -20,6 +21,7 @@ where
match value.as_ref() { match value.as_ref() {
"mastodon" => FediSoftware::Mastodon, "mastodon" => FediSoftware::Mastodon,
"gotosocial" => FediSoftware::Gotosocial, "gotosocial" => FediSoftware::Gotosocial,
"akkoma" => FediSoftware::Akkoma,
"" => FediSoftware::Unknown, "" => FediSoftware::Unknown,
other => FediSoftware::Other(other.to_owned()), other => FediSoftware::Other(other.to_owned()),
} }
@ -31,6 +33,7 @@ impl Display for FediSoftware {
match self { match self {
FediSoftware::Mastodon => write!(f, "Mastodon"), FediSoftware::Mastodon => write!(f, "Mastodon"),
FediSoftware::Gotosocial => write!(f, "Gotosocial"), FediSoftware::Gotosocial => write!(f, "Gotosocial"),
FediSoftware::Akkoma => write!(f, "Akkoma"),
FediSoftware::Other(_) => write!(f, "Other Software"), FediSoftware::Other(_) => write!(f, "Other Software"),
FediSoftware::Unknown => write!(f, "Unknown Software"), FediSoftware::Unknown => write!(f, "Unknown Software"),
} }

Loading…
Cancel
Save