use clap::Parser; use jacquard::CowStr; use jacquard::api::app_bsky::actor::{AdultContentPref, PreferencesItem}; use jacquard::client::AgentSessionExt; use jacquard::client::vec_update::PreferencesUpdate; use jacquard::client::{Agent, FileAuthStore}; use jacquard::oauth::client::OAuthClient; use jacquard::oauth::loopback::LoopbackConfig; #[derive(Parser, Debug)] #[command(author, version, about = "Update Bluesky preferences")] struct Args { /// Handle (e.g., alice.bsky.social), DID, or PDS URL input: CowStr<'static>, /// Enable adult content #[arg(long)] enable_adult_content: bool, /// Path to auth store file (will be created if missing) #[arg(long, default_value = "/tmp/jacquard-oauth-session.json")] store: String, } #[tokio::main] async fn main() -> miette::Result<()> { let args = Args::parse(); let oauth = OAuthClient::with_default_config(FileAuthStore::new(&args.store)); let session = oauth .login_with_local_server(args.input, Default::default(), LoopbackConfig::default()) .await?; let agent: Agent<_> = Agent::from(session); // Create the adult content preference let adult_pref = AdultContentPref { enabled: args.enable_adult_content, extra_data: Default::default(), }; // Update preferences using update_vec_item // This will replace existing AdultContentPref or add it if not present agent .update_vec_item::(PreferencesItem::AdultContentPref(Box::new( adult_pref, ))) .await?; println!( "✓ Updated adult content preference: {}", if args.enable_adult_content { "enabled" } else { "disabled" } ); Ok(()) }