//! # Elefren: API Wrapper around the Mastodon API. //! //! Most of the api is documented on [Mastodon's //! github](https://github.com/tootsuite/mastodon/blob/master/docs/Using-the-API/API.md#tag) //! //! ```no_run //! # extern crate elefren; //! # fn main() { //! # try().unwrap(); //! # } //! # fn try() -> elefren::Result<()> { //! use elefren::prelude::*; //! 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, //! }; //! //! let mut registration = Registration::new("https://mastodon.social"); //! registration.register(app)?; //! let url = registration.authorise()?; //! // Here you now need to open the url in the browser //! // And handle a the redirect url coming back with the code. //! let code = String::from("RETURNED_FROM_BROWSER"); //! let mastodon = registration.create_access_token(code)?; //! //! println!("{:?}", mastodon.get_home_timeline()?.initial_items); //! # Ok(()) //! # } //! ``` #![cfg_attr(test, deny(warnings))] #![cfg_attr(test, deny(missing_docs))] #[macro_use] extern crate serde_derive; #[macro_use] extern crate doc_comment; #[macro_use] extern crate serde_json as json; extern crate chrono; extern crate reqwest; extern crate serde; extern crate url; use std::borrow::Cow; use std::ops; use reqwest::{Client, Response}; use reqwest::header::{Authorization, Bearer, Headers}; use entities::prelude::*; use page::Page; pub use status_builder::StatusBuilder; pub use requests::statuses::StatusesRequest; pub use errors::{Result, Error, ApiError}; pub use registration::Registration; /// Registering your App pub mod apps; /// Constructing a status pub mod status_builder; /// Entities returned from the API pub mod entities; /// Registering your app. pub mod registration; /// Handling multiple pages of entities. pub mod page; /// Errors pub mod errors; /// Requests pub mod requests; #[macro_use] mod macros; /// Automatically import the things you need pub mod prelude { pub use {Data, Mastodon, MastodonClient, StatusBuilder, StatusesRequest}; } /// Your mastodon application client, handles all requests to and from Mastodon. #[derive(Clone, Debug)] pub struct Mastodon { client: Client, headers: Headers, /// Raw data about your mastodon instance. pub data: Data } /// Raw data about mastodon app. Save `Data` using `serde` to prevent needing /// to authenticate on every run. #[derive(Clone, Debug, PartialEq, Deserialize, Serialize)] pub struct Data { /// Base url of instance eg. `https://mastodon.social`. pub base: Cow<'static, str>, /// The client's id given by the instance. pub client_id: Cow<'static, str>, /// The client's secret given by the instance. pub client_secret: Cow<'static, str>, /// Url to redirect back to your application from the instance signup. pub redirect: Cow<'static, str>, /// The client's access token. pub token: Cow<'static, str>, } /// Represents the set of methods that a Mastodon Client can do, so that /// implementations might be swapped out for testing #[allow(unused)] pub trait MastodonClient { fn favourites(&self) -> Result> { unimplemented!("This method was not implemented"); } fn blocks(&self) -> Result> { unimplemented!("This method was not implemented"); } fn domain_blocks(&self) -> Result> { unimplemented!("This method was not implemented"); } fn follow_requests(&self) -> Result> { unimplemented!("This method was not implemented"); } fn get_home_timeline(&self) -> Result> { unimplemented!("This method was not implemented"); } fn get_emojis(&self) -> Result> { unimplemented!("This method was not implemented"); } fn mutes(&self) -> Result> { unimplemented!("This method was not implemented"); } fn notifications(&self) -> Result> { unimplemented!("This method was not implemented"); } fn reports(&self) -> Result> { unimplemented!("This method was not implemented"); } fn followers(&self, id: &str) -> Result> { unimplemented!("This method was not implemented"); } fn following(&self) -> Result { unimplemented!("This method was not implemented"); } fn reblogged_by(&self) -> Result { unimplemented!("This method was not implemented"); } fn favourited_by(&self) -> Result { unimplemented!("This method was not implemented"); } fn unblock_domain(&self, domain: String) -> Result { unimplemented!("This method was not implemented"); } fn instance(&self) -> Result { unimplemented!("This method was not implemented"); } fn verify_credentials(&self) -> Result { unimplemented!("This method was not implemented"); } fn report(&self, account_id: &str, status_ids: Vec<&str>, comment: String) -> Result { unimplemented!("This method was not implemented"); } fn block_domain(&self, domain: String) -> Result { unimplemented!("This method was not implemented"); } fn authorize_follow_request(&self, id: &str) -> Result { unimplemented!("This method was not implemented"); } fn reject_follow_request(&self, id: &str) -> Result { unimplemented!("This method was not implemented"); } fn search(&self, q: String, resolve: bool) -> Result { unimplemented!("This method was not implemented"); } fn follows(&self, uri: Cow<'static, str>) -> Result { unimplemented!("This method was not implemented"); } fn media(&self, file: Cow<'static, str>) -> Result { unimplemented!("This method was not implemented"); } fn clear_notifications(&self) -> Result { unimplemented!("This method was not implemented"); } fn get_account(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn follow(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn unfollow(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn block(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn unblock(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn mute(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn unmute(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn get_notification(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn get_status(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn get_context(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn get_card(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn reblog(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn unreblog(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn favourite(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn unfavourite(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn delete_status(&self, id: u64) -> Result { unimplemented!("This method was not implemented"); } fn update_credentials(&self, changes: CredientialsBuilder) -> Result { unimplemented!("This method was not implemented"); } fn new_status(&self, status: StatusBuilder) -> Result { unimplemented!("This method was not implemented"); } fn get_public_timeline(&self, local: bool) -> Result> { unimplemented!("This method was not implemented"); } fn get_tagged_timeline(&self, hashtag: String, local: bool) -> Result> { unimplemented!("This method was not implemented"); } fn statuses<'a, 'b: 'a, S>(&'b self, id: &'b str, request: S) -> Result> where S: Into>> { unimplemented!("This method was not implemented"); } fn relationships(&self, ids: &[&str]) -> Result> { unimplemented!("This method was not implemented"); } fn search_accounts(&self, query: &str, limit: Option, following: bool) -> Result> { unimplemented!("This method was not implemented"); } } impl Mastodon { fn from_registration(base: I, client_id: I, client_secret: I, redirect: I, token: I, client: Client) -> Self where I: Into> { let data = Data { base: base.into(), client_id: client_id.into(), client_secret: client_secret.into(), redirect: redirect.into(), token: token.into(), }; let mut headers = Headers::new(); headers.set(Authorization(Bearer { token: (*data.token).to_owned() })); Mastodon { client: client, headers: headers, data: data, } } methods![get, post, delete,]; fn route(&self, url: &str) -> String { let mut s = (*self.base).to_owned(); s += url; s } } impl From for Mastodon { /// Creates a mastodon instance from the data struct. fn from(data: Data) -> Mastodon { let mut headers = Headers::new(); headers.set(Authorization(Bearer { token: (*data.token).to_owned() })); Mastodon { client: Client::new(), headers: headers, data: data, } } } impl MastodonClient for Mastodon { paged_routes! { (get) favourites: "favourites" => Status, (get) blocks: "blocks" => Account, (get) domain_blocks: "domain_blocks" => String, (get) follow_requests: "follow_requests" => Account, (get) get_home_timeline: "timelines/home" => Status, (get) get_emojis: "custom_emojis" => Emoji, (get) mutes: "mutes" => Account, (get) notifications: "notifications" => Notification, (get) reports: "reports" => Report, } paged_routes_with_id! { (get) followers: "accounts/{}/followers" => Account, (get) following: "accounts/{}/following" => Account, (get) reblogged_by: "statuses/{}/reblogged_by" => Account, (get) favourited_by: "statuses/{}/favourited_by" => Account, } route! { (delete (domain: String,)) unblock_domain: "domain_blocks" => Empty, (get) instance: "instance" => Instance, (get) verify_credentials: "accounts/verify_credentials" => Account, (post (account_id: &str, status_ids: Vec<&str>, comment: String,)) report: "reports" => Report, (post (domain: String,)) block_domain: "domain_blocks" => Empty, (post (id: &str,)) authorize_follow_request: "accounts/follow_requests/authorize" => Empty, (post (id: &str,)) reject_follow_request: "accounts/follow_requests/reject" => Empty, (post (q: String, resolve: bool,)) search: "search" => SearchResult, (post (uri: Cow<'static, str>,)) follows: "follows" => Account, (post multipart (file: Cow<'static, str>,)) media: "media" => Attachment, (post) clear_notifications: "notifications/clear" => Empty, } route_id! { (get) get_account: "accounts/{}" => Account, (post) follow: "accounts/{}/follow" => Account, (post) unfollow: "accounts/{}/unfollow" => Account, (get) block: "accounts/{}/block" => Account, (get) unblock: "accounts/{}/unblock" => Account, (get) mute: "accounts/{}/mute" => Account, (get) unmute: "accounts/{}/unmute" => Account, (get) get_notification: "notifications/{}" => Notification, (get) get_status: "statuses/{}" => Status, (get) get_context: "statuses/{}/context" => Context, (get) get_card: "statuses/{}/card" => Card, (post) reblog: "statuses/{}/reblog" => Status, (post) unreblog: "statuses/{}/unreblog" => Status, (post) favourite: "statuses/{}/favourite" => Status, (post) unfavourite: "statuses/{}/unfavourite" => Status, (delete) delete_status: "statuses/{}" => Empty, } fn update_credentials(&self, changes: CredientialsBuilder) -> Result { let url = self.route("/api/v1/accounts/update_credentials"); let response = self.client.patch(&url) .headers(self.headers.clone()) .multipart(changes.into_form()?) .send()?; let status = response.status().clone(); if status.is_client_error() { return Err(Error::Client(status)); } else if status.is_server_error() { return Err(Error::Server(status)); } deserialise(response) } /// Post a new status to the account. fn new_status(&self, status: StatusBuilder) -> Result { let response = self.client.post(&self.route("/api/v1/statuses")) .headers(self.headers.clone()) .json(&status) .send()?; deserialise(response) } /// Get the federated timeline for the instance. fn get_public_timeline(&self, local: bool) -> Result> { let mut url = self.route("/api/v1/timelines/public"); if local { url += "?local=1"; } self.get(url) } /// Get timeline filtered by a hashtag(eg. `#coffee`) either locally or /// federated. fn get_tagged_timeline(&self, hashtag: String, local: bool) -> Result> { let mut url = self.route("/api/v1/timelines/tag/"); url += &hashtag; if local { url += "?local=1"; } self.get(url) } /// Get statuses of a single account by id. Optionally only with pictures /// and or excluding replies. /// /// # Example /// /// ```no_run /// # extern crate elefren; /// # use elefren::prelude::*; /// # use std::error::Error; /// # fn main() -> Result<(), Box> { /// # let data = Data { /// # base: "".into(), /// # client_id: "".into(), /// # client_secret: "".into(), /// # redirect: "".into(), /// # token: "".into(), /// # }; /// let client = Mastodon::from(data); /// let statuses = client.statuses("user-id", None)?; /// # Ok(()) /// # } /// ``` /// /// ```no_run /// # extern crate elefren; /// # use elefren::prelude::*; /// # use std::error::Error; /// # fn main() -> Result<(), Box> { /// # let data = Data { /// # base: "".into(), /// # client_id: "".into(), /// # client_secret: "".into(), /// # redirect: "".into(), /// # token: "".into(), /// # }; /// let client = Mastodon::from(data); /// let request = StatusesRequest::default() /// .only_media(); /// let statuses = client.statuses("user-id", request)?; /// # Ok(()) /// # } /// ``` fn statuses<'a, 'b: 'a, S>(&'b self, id: &'b str, request: S) -> Result> where S: Into>> { let mut url = format!("{}/api/v1/accounts/{}/statuses", self.base, id); if let Some(request) = request.into() { url = format!("{}{}", url, request.to_querystring()); } let response = self.client.get(&url) .headers(self.headers.clone()) .send()?; Page::new(self, response) } /// Returns the client account's relationship to a list of other accounts. /// Such as whether they follow them or vice versa. fn relationships(&self, ids: &[&str]) -> Result> { let mut url = self.route("/api/v1/accounts/relationships?"); if ids.len() == 1 { url += "id="; url += &ids[0]; } else { for id in ids { url += "id[]="; url += &id; url += "&"; } url.pop(); } let response = self.client.get(&url) .headers(self.headers.clone()) .send()?; Page::new(self, response) } /// Search for accounts by their name. /// Will lookup an account remotely if the search term is in the /// `username@domain` format and not yet in the database. fn search_accounts(&self, query: &str, limit: Option, following: bool) -> Result> { let url = format!("{}/api/v1/accounts/search?q={}&limit={}&following={}", self.base, query, limit.unwrap_or(40), following); let response = self.client.get(&url) .headers(self.headers.clone()) .send()?; Page::new(self, response) } } impl ops::Deref for Mastodon { type Target = Data; fn deref(&self) -> &Self::Target { &self.data } } // Convert the HTTP response body from JSON. Pass up deserialization errors // transparently. fn deserialise serde::Deserialize<'de>>(mut response: Response) -> Result { use std::io::Read; let mut vec = Vec::new(); response.read_to_end(&mut vec)?; match json::from_slice(&vec) { Ok(t) => Ok(t), // If deserializing into the desired type fails try again to // see if this is an error response. Err(e) => { if let Ok(error) = json::from_slice(&vec) { return Err(Error::Api(error)); } Err(e.into()) }, } }