Go to file
D. Scott Boggs 2ec3bd42ec Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
.github/workflows Create github actions workflow 2022-12-22 09:25:57 -05:00
.vscode initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00
examples Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
src Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
tests initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00
.cargo_vcs_info.json initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00
.env.sample Update Rust Edition; Update dependencies 2022-11-29 18:50:29 -05:00
.gitignore initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00
CHANGELOG.md Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
Cargo.toml Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
LICENCE-APACHE Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
LICENCE-MIT Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
Makefile initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00
README.md Rename elefren to mastodon-async 2022-12-23 12:18:03 -05:00
build.rs initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00
rustfmt.toml initial state; elefren 0.22.0 2022-11-27 09:44:43 -05:00

README.md

Async Mastodon client library

[Build Status] crates.io Docs MIT/APACHE-2.0

Documentation

A wrapper around the API for Mastodon

Installation

To add mastodon-async to your project, add the following to the [dependencies] section of your Cargo.toml

mastodon-async = "1.0"

Alternatively, run the following command:

$ cargo add mastodon-async

Example

In your Cargo.toml, make sure you enable the toml feature:

[dependencies]
mastodon-async = { version = "0.22", features = ["toml"] }
// src/main.rs

use std::error::Error;

use mastodon_async::prelude::*;
use mastodon_async::helpers::toml; // requires `features = ["toml"]`
use mastodon_async::helpers::cli;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let mastodon = if let Ok(data) = toml::from_file("mastodon-data.toml") {
        Mastodon::from(data)
    } else {
        register()?
    };

    let you = mastodon.verify_credentials().await?;

    println!("{:#?}", you);

    Ok(())
}

fn register() -> Result<Mastodon, Box<dyn Error>> {
    let registration = Registration::new("https://botsin.space")
                                    .client_name("mastodon-async-examples")
                                    .build()?;
    let mastodon = cli::authenticate(registration)?;

    // Save app data for using on the next run.
    toml::to_file(&*mastodon, "mastodon-data.toml")?;

    Ok(mastodon)
}

It also supports the Streaming API:

use mastodon_async::prelude::*;
use mastodon_async::entities::event::Event;

use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<Error>> {
    let client = Mastodon::from(Data::default());

    client.stream_user()
        .await?
        .try_for_each(|event| {
            match event {
                Event::Update(ref status) => { /* .. */ },
                Event::Notification(ref notification) => { /* .. */ },
                Event::Delete(ref id) => { /* .. */ },
                Event::FiltersChanged => { /* .. */ },
            }
        })
        .await?;
    Ok(())
}