mastodon API rust lib elefren, fixed and updated. and also all ASYNC! NB. most examples are now wrong.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
elefren-fork/src/apps.rs

85 lines
2.3 KiB

use std::fmt;
pub mod prelude {
pub use {
apps::{
AppBuilder,
Scopes
},
registration::Registration
};
}
/// Builder struct for defining your application.
/// ```
/// use elefren::apps::prelude::*;
///
/// let app = AppBuilder {
/// client_name: "elefren_test",
/// redirect_uris: "urn:ietf:wg:oauth:2.0:oob",
/// scopes: Scopes::Read,
/// website: None,
/// };
/// ```
#[derive(Debug, Default, Serialize)]
pub struct AppBuilder<'a> {
/// Name of the application. Will be displayed when the user is deciding to
/// grant permission.
pub client_name: &'a str,
/// Where the user should be redirected after authorization
/// (for no redirect, use `urn:ietf:wg:oauth:2.0:oob`)
pub redirect_uris: &'a str,
/// Permission scope of the application.
pub scopes: Scopes,
/// URL to the homepage of your application.
#[serde(skip_serializing_if="Option::is_none")]
pub website: Option<&'a str>,
}
/// Permission scope of the application.
/// [Details on what each permission provides](//github.com/tootsuite/documentation/blob/master/Using-the-API/OAuth-details.md)
#[derive(Debug, Clone, Copy, Serialize)]
pub enum Scopes {
/// All Permissions, equivalent to `read write follow`
#[serde(rename = "read write follow")]
All,
/// Only permission to add and remove followers.
#[serde(rename = "follow")]
Follow,
/// Read only permissions.
#[serde(rename = "read")]
Read,
/// Read & Follow permissions.
#[serde(rename = "read follow")]
ReadFollow,
/// Read & Write permissions.
#[serde(rename = "read write")]
ReadWrite,
/// Write only permissions.
#[serde(rename = "write")]
Write,
/// Write & Follow permissions.
#[serde(rename = "write follow")]
WriteFollow,
}
impl fmt::Display for Scopes {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use self::Scopes::*;
write!(f, "{}", match *self {
All => "read%20write%20follow",
Follow => "follow",
Read => "read",
ReadFollow => "read%20follow",
ReadWrite => "read%20write",
Write => "write",
WriteFollow => "write%20follow"
})
}
}
impl Default for Scopes {
fn default() -> Self {
Scopes::Read
}
}