2020-04-07 12:34:36 -04:00
2018-08-25 13:42:12 -04:00
2018-10-10 10:28:22 -04:00
2019-09-04 10:16:05 -04:00
2018-08-29 12:28:36 -04:00
2018-11-02 09:34:37 -04:00
2018-08-26 22:30:29 -04:00
2018-08-27 14:48:24 -04:00
2019-01-07 12:51:07 -05:00
2017-04-10 18:00:07 +01:00
2017-04-10 18:00:07 +01:00
2018-08-25 13:55:29 -04:00
2018-08-23 10:35:26 -04:00

Elefren

A Wrapper for the Mastodon API.

CircleCI Build Status Coverage Status crates.io Docs MIT/APACHE-2.0

Documentation

A wrapper around the API for Mastodon

Installation

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

elefren = "0.19"

Usage

To use this crate in your project, add this to your crate root (lib.rs, main.rs, etc):

extern crate elefren;

Example

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

[dependencies]
elefren = { version = "0.19", features = ["toml"] }
// src/main.rs
extern crate elefren;

use std::error::Error;

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

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

    let you = mastodon.verify_credentials()?;

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

    Ok(())
}

fn register() -> Result<Mastodon, Box<Error>> {
    let registration = Registration::new("https://mastodon.social")
                                    .client_name("elefren-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 elefren::prelude::*;
use elefren::entities::event::Event;

use std::error::Error;

fn main() -> Result<(), Box<Error>> {
    let data = Data {
      base: "".into(),
      client_id: "".into(),
      client_secret: "".into(),
      redirect: "".into(),
      token: "".into(),
    };

    let client = Mastodon::from(data);

    for event in client.streaming_user()? {
        match event {
            Event::Update(ref status) => { /* .. */ },
            Event::Notification(ref notification) => { /* .. */ },
            Event::Delete(ref id) => { /* .. */ },
            Event::FiltersChanged => { /* .. */ },
        }
    }
    Ok(())
}
S
Description
mastodon API rust lib elefren, fixed and updated. and also all ASYNC! NB. most examples are now wrong.
Readme
1.2 MiB
Languages
Rust 100%