1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
use crate::api::{Request, UploadFileRequest};
use crate::model::ApiResult;

use futures_core::future::BoxFuture;
use mime::Mime;

/// Abstraction over API clients.
pub trait Client {
    /// The error type produced by the client when an error occurs.
    type Error: std::error::Error;

    /// Dispatch an API request.
    ///
    /// Takes [`Request`] and returns a future that waits for the [`Response`][`Request::Response`].
    fn request<R: Request>(
        &self,
        request: R,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>>;
}

impl<C: Client + ?Sized> Client for &C {
    type Error = C::Error;

    fn request<R: Request>(
        &self,
        request: R,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>> {
        C::request(self, request)
    }
}

impl<C: Client + ?Sized> Client for &mut C {
    type Error = C::Error;

    fn request<R: Request>(
        &self,
        request: R,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>> {
        C::request(self, request)
    }
}

impl<C: Client + ?Sized> Client for Box<C> {
    type Error = C::Error;

    fn request<R: Request>(
        &self,
        request: R,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>> {
        C::request(self, request)
    }
}

/// Abstraction over API clients that can upload files.
pub trait UploadFileClient: Client {
    /// Dispatches an API request with file.
    ///
    /// Takes the file to be attatched and [`UploadFileRequest`], then returns a future that waits for the [`Request::Response`].
    fn request_with_file<R, T>(
        &self,
        request: R,
        type_: Mime,
        file_name: String,
        content: T,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>>
    where
        R: UploadFileRequest,
        T: std::io::Read + Send + Sync + 'static;
}

impl<C: ?Sized> UploadFileClient for &C
where
    C: UploadFileClient,
{
    fn request_with_file<R, T>(
        &self,
        request: R,
        type_: Mime,
        file_name: String,
        content: T,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>>
    where
        R: UploadFileRequest,
        T: std::io::Read + Send + Sync + 'static,
    {
        C::request_with_file(self, request, type_, file_name, content)
    }
}

impl<C: ?Sized> UploadFileClient for &mut C
where
    C: UploadFileClient,
{
    fn request_with_file<R, T>(
        &self,
        request: R,
        type_: Mime,
        file_name: String,
        content: T,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>>
    where
        R: UploadFileRequest,
        T: std::io::Read + Send + Sync + 'static,
    {
        C::request_with_file(self, request, type_, file_name, content)
    }
}

impl<C: ?Sized> UploadFileClient for Box<C>
where
    C: UploadFileClient,
{
    fn request_with_file<R, T>(
        &self,
        request: R,
        type_: Mime,
        file_name: String,
        content: T,
    ) -> BoxFuture<Result<ApiResult<R::Response>, Self::Error>>
    where
        R: UploadFileRequest,
        T: std::io::Read + Send + Sync + 'static,
    {
        C::request_with_file(self, request, type_, file_name, content)
    }
}