Struct mwbot::ApiClient

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

API Client

Implementations§

source§

impl Client

source

pub fn builder(api_url: &str) -> Builder

Get a Builder instance to further customize the API Client. The API URL should be the absolute path to api.php.

source

pub async fn new(api_url: &str) -> impl Future<Output = Result<Client, Error>>

Get an API Client instance. The API URL should be the absolute path to api.php.

source

pub async fn get_value<P>(
    &self,
    params: P
) -> impl Future<Output = Result<Value, Error>>where
    P: Into<Params>,

Same as get(), but return a serde_json::Value

source

pub async fn get<P, T>(
    &self,
    params: P
) -> impl Future<Output = Result<T, Error>>where
    P: Into<Params>,
    T: DeserializeOwned,

Make an arbitrary API request using HTTP GET.

source

pub async fn query_response<T, U, P>(
    &self,
    extra: P
) -> impl Future<Output = Result<T, Error>>where
    T: ApiResponse<U> + DeserializeOwned,
    P: Into<Params>,

Easily execute a request based on a mwapi_responses-generated struct.

Any extra custom parameters can be passed in to the function and were merged with the default request parameters.

source

pub async fn post_with_token<P, T>(
    &self,
    token_type: &str,
    params: P
) -> impl Future<Output = Result<T, Error>>where
    P: Into<Params>,
    T: DeserializeOwned,

Make an API POST request with a CSRF token. The correct token will automatically be fetched, and in case of a bad token error (if it expired), a new one will automatically be fetched and the request retried.

source

pub async fn post<P, T>(
    &self,
    params: P
) -> impl Future<Output = Result<T, Error>>where
    P: Into<Params>,
    T: DeserializeOwned,

Make an API POST request

source

pub async fn post_value<P>(
    &self,
    params: P
) -> impl Future<Output = Result<Value, Error>>where
    P: Into<Params>,

Same as post(), but return a serde_json::Value

source

pub async fn upload<P>(
    &self,
    filename: &str,
    path: PathBuf,
    chunk_size: usize,
    ignore_warnings: bool,
    params: P
) -> impl Future<Output = Result<String, Error>>where
    P: Into<Params>,

Upload a file under with the given filename from a path.

  • The chunk_size should be in bytes, 5MB (5_000_000) is a reasonable default if you’re unsure.
  • Warnings will be returned as an error unless ignore_warnings is true.
  • Any extra parameters can be passed in the standard format.
source

pub fn http_client(&self) -> &Client

Get access to the underlying reqwest::Client to make arbitrary GET/POST requests, sharing the connection pool and cookie storage. For example, if you wanted to download images from the wiki.

Trait Implementations§

source§

impl Clone for Client

source§

fn clone(&self) -> Client

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Client

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Client

§

impl Send for Client

§

impl Sync for Client

§

impl Unpin for Client

§

impl !UnwindSafe for Client

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · 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 Twhere
    U: From<T>,

const: unstable · 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> ToOwned for Twhere
    T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · 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