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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
mod build_error;
pub use build_error::BuildError;

use super::Instance;

use std::time::Duration;

#[derive(Debug)]
pub struct InstanceBuilder {
    pub token: Option<String>,
    pub http_client: reqwest::Client,
    pub api_url: String,
    pub api_version: String,
    pub time_between_requests: std::time::Duration,
}

impl PartialEq for InstanceBuilder {
    fn eq(&self, other: &Self) -> bool {
        self.token == other.token &&
        self.api_url == other.api_url &&
        self.api_version == other.api_version &&
        self.time_between_requests == other.time_between_requests
    }
}

impl InstanceBuilder {
    /// Constructs new `InstanceBuilder`
    pub fn new() -> InstanceBuilder {
        InstanceBuilder::default()
    }

    /// Sets token. It's required field.
    /// 
    /// # Example:
    /// ```rust
    /// use fast_vk::instance;
    /// 
    /// let instance = instance::InstanceBuilder::new()
    ///     .token(String::from("12345"));
    /// 
    /// assert_eq!(
    ///     instance,
    ///     instance::InstanceBuilder {
    ///         token: Some(String::from("12345")),
    ///         ..instance::InstanceBuilder::default()
    ///     }
    /// );
    /// ```
    pub fn token<T>(mut self, token: T) -> InstanceBuilder
    where 
        T: ToString
    {
        self.token = Some(token.to_string());
        self
    }

    /// Sets http client
    /// 
    /// # Example:
    /// ```rust
    /// use reqwest::Client;
    /// use fast_vk::instance;
    /// 
    /// let instance = instance::InstanceBuilder::new()
    ///     .http_client(Client::new());
    /// 
    /// assert_eq!(
    ///     instance,
    ///     instance::InstanceBuilder {
    ///         http_client: Client::new(),
    ///         ..instance::InstanceBuilder::default()
    ///     }
    /// );
    /// ```
    pub fn http_client(mut self, http_client: reqwest::Client) -> InstanceBuilder {
        self.http_client = http_client;
        self
    }

    /// Sets server url
    /// 
    /// # Example:
    /// ```rust
    /// use fast_vk::instance;
    /// 
    /// let instance = instance::InstanceBuilder::new()
    ///     .api_url(String::from("https:://vk.ru"));
    /// 
    /// assert_eq!(
    ///     instance,
    ///     instance::InstanceBuilder {
    ///         api_url: String::from("https:://vk.ru"),
    ///         ..instance::InstanceBuilder::default()
    ///     }
    /// );
    /// ```
    pub fn api_url<T>(mut self, api_url: T) -> InstanceBuilder
    where 
        T: ToString
    {
        self.api_url = api_url.to_string();
        self
    }

    /// Sets an api version
    /// 
    /// # Example:
    /// ```rust
    /// use fast_vk::instance;
    /// 
    /// let instance = instance::InstanceBuilder::new()
    ///     .api_version(String::from("5.144"));
    /// 
    /// assert_eq!(
    ///     instance,
    ///     instance::InstanceBuilder {
    ///         api_version: String::from("5.144"),
    ///         ..instance::InstanceBuilder::default()
    ///     }
    /// );
    /// ```
    pub fn api_version<T>(mut self, api_version: T ) -> InstanceBuilder
    where 
        T: ToString
    {
        self.api_version = api_version.to_string();
        self
    }

    /// Sets time between http requests
    /// 
    /// # Example:
    /// ```rust
    /// use std::time::Duration;
    /// use fast_vk::instance;
    /// 
    /// let instance = instance::InstanceBuilder::new()
    ///     .time_between_requests(Duration::from_millis(300));
    /// 
    /// assert_eq!(
    ///     instance,
    ///     instance::InstanceBuilder {
    ///         time_between_requests: Duration::from_millis(300),
    ///         ..instance::InstanceBuilder::default()
    ///     }
    /// );
    /// ```
    pub fn time_between_requests(mut self, time_between_requests: std::time::Duration) -> InstanceBuilder {
        self.time_between_requests = time_between_requests;
        self
    }
    
    /// Builds an [`Instance`]
    /// 
    /// # Example:
    /// ```rust
    /// use reqwest::Client;
    /// use std::time::Duration;
    /// use fast_vk::instance;
    /// 
    /// let instance = instance::InstanceBuilder::new()
    ///     .token(String::from("123456789"))
    ///     .build()
    ///     .unwrap();
    /// 
    /// assert_eq!(
    ///     instance,
    ///     instance::Instance {
    ///         token: String::from("123456789"),
    ///         http_client: Client::new(),
    ///         api_url: String::from("https://api.vk.com/"),
    ///         api_version: String::from("5.103"),
    ///         time_between_requests: Duration::from_millis(334)
    ///     }
    /// );
    /// ```
    /// 
    /// # Errors
    /// This method fails whenever token haven't passed 
    pub fn build(self) -> Result<Instance, BuildError> {
        let token = match self.token {
            Some(token) => token,
            None => return Err(BuildError::MissingParameter(String::from("token"))),
        };

        Ok(Instance {
            token,
            http_client: self.http_client,
            api_url: self.api_url,
            api_version: self.api_version,
            time_between_requests: self.time_between_requests,
        })
    }
}

impl Default for InstanceBuilder {
    fn default() -> Self {
        InstanceBuilder {
            token: None,
            http_client: reqwest::Client::new(),
            api_url: String::from("https://api.vk.com/"),
            api_version: String::from("5.103"),
            time_between_requests: Duration::from_millis(334),
        }
    }
}

#[cfg(test)]
mod tests {
    use reqwest::Client;

    use super::*;

    #[test]
    fn missing_token() {
        let instance = InstanceBuilder::new().build();

        assert_eq!(
            instance.err(),
            Some(BuildError::MissingParameter(String::from("token")))
        );
    }

    #[test]
    fn custom_api_url() {
        let instance = InstanceBuilder::new()
            .api_url("https://example.com/")
            .token(String::from("token"))
            .build()
            .unwrap();

        assert_eq!(
            instance,
            Instance {
                token: String::from("token"),
                http_client: Client::new(),
                api_url: String::from("https://example.com/"),
                api_version: String::from("5.103"),
                time_between_requests: Duration::from_millis(334)
            }
        );
    }

    #[test]
    fn custom_all() {
        let instance = InstanceBuilder::new()
            .api_url("https://api.vk.ru/")
            .api_version("5.143")
            .token(String::from("123456789"))
            .http_client(Client::new())
            .time_between_requests(Duration::from_millis(500))
            .build()
            .unwrap();

        assert_eq!(
            instance,
            Instance {
                token: String::from("123456789"),
                http_client: Client::new(),
                api_url: String::from("https://api.vk.ru/"),
                api_version: String::from("5.143"),
                time_between_requests: Duration::from_millis(500)
            }
        );
    }

    #[test]
    fn custom_token() {
        let instance = InstanceBuilder::new()
            .token(String::from("123456789"))
            .build()
            .unwrap();
     
        assert_eq!(
            instance,
            Instance {
                token: String::from("123456789"),
                http_client: Client::new(),
                api_url: String::from("https://api.vk.com/"),
                api_version: String::from("5.103"),
                time_between_requests: Duration::from_millis(334)
            }
        );
    }
}