Struct lotr_api::client::Client

source ·
pub struct Client { /* private fields */ }
Expand description

The client for the one api to rule them all. It is used to make requests to the API.

§Examples

use lotr_api::Client;

#[tokio::main]
async fn main() {
    let client = Client::new("your_token".to_string());
    let books = client.get_books().await.unwrap();
    // ...
}

Implementations§

source§

impl Client

source

pub fn new(token: String) -> Self

Creates a new client with the given token. The token is used to authenticate the requests. You can get a token from https://the-one-api.dev/.

source

pub async fn get_books(&self) -> Result<Vec<Book>, Error>

Returns all books.

source

pub async fn get_movies(&self) -> Result<Vec<Movie>, Error>

Returns all movies.

source

pub async fn get_quotes(&self) -> Result<Vec<Quote>, Error>

Returns all the quotes. Due to the API default limit of 1000, this function has to set a hardcoded limit. Currently there are 2384 quotes, so the limit is set to 2400, a little bit more than the current amount.

source

pub async fn get_characters(&self) -> Result<Vec<Character>, Error>

source

pub async fn get_chapters(&self) -> Result<Vec<Chapter>, Error>

Returns all chapters.

source

pub async fn get_book_by_id(&self, id: &str) -> Result<Book, Error>

Returns the book with the given id.

§Errors

If there is no book with the given id, an error is returned.

source

pub async fn get_movie_by_id(&self, id: &str) -> Result<Movie, Error>

Returns the movie with the given id.

§Errors

If there is no movie with the given id, an error is returned.

source

pub async fn get_quote_by_id(&self, id: &str) -> Result<Quote, Error>

Returns the quote with the given id.

§Errors

If there is no quote with the given id, an error is returned.

source

pub async fn get_character_by_id(&self, id: &str) -> Result<Character, Error>

Returns the character with the given id.

§Errors

If there is no character with the given id, an error is returned.

source

pub async fn get_chapter_by_id(&self, id: &str) -> Result<Chapter, Error>

Returns the chapter with the given id.

§Errors

If there is no chapter with the given id, an error is returned.

source

pub async fn get_chapters_from_book( &self, book_id: &str ) -> Result<Vec<Chapter>, Error>

Returns the chapters of the given book.

source

pub async fn get_quotes_from_movie( &self, movie_id: &str ) -> Result<Vec<Quote>, Error>

Returns the quotes of the given book.

source

pub async fn get_quotes_from_character( &self, character_id: &str ) -> Result<Vec<Quote>, Error>

Returns the quotes of the given book.

source

pub async fn get_from_url<T>(&self, url: &str) -> Result<Vec<T>, Error>

returns the result of the given request. You must specify the type of the result, if not there is no way of deserialize the result.

§Examples
use lotr_api::{Client, ItemType};
use lotr_api::Book;

#[tokio::main]
async fn main() {
   let client = Client::new("your_token".to_string());
   let url= "book?page=2&limit=2";
   let books = client.get_from_url::<Book>(url).await.unwrap();
   // ...
}
source

pub async fn get(&self, request: Request) -> Result<Vec<Item>, Error>

Returns the items of the given custom request.

§Examples
use lotr_api::{
    attribute::{Attribute, BookAttribute},
    filter::{Filter, Operator},
    request::{
        sort::{Sort, SortOrder},
        RequestBuilder},
    Client, Item, ItemType};

#[tokio::main]
async fn main() {
   let client = Client::new("your_token".to_string());
   let request = RequestBuilder::new(ItemType::Book)
        .filter(Filter::Match(
            Attribute::Book(BookAttribute::Name),
            Operator::Eq,
            vec!["The Fellowship of the Ring".to_string()])
        )
        .sort(Sort::new(SortOrder::Ascending, Attribute::Book(BookAttribute::Name)))
        .build()
       .expect("Failed to build request");
    let books = client.get(request).await.unwrap();
    // ...
}
     

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more