smartcar 1.1.0

The Rust SDK for Smartcar API
Documentation
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
//! This module includes the the Vehicle struct, which is responsible
//! for getting data from and sending comands to a vehicle.

use std::collections::HashMap;

use reqwest::Response;
use serde_json::{json, Value};

use crate::error::Error;
use crate::helpers::get_api_url;
use crate::request::{get_bearer_token_header, HttpVerb, SmartcarRequestBuilder};
use crate::response::batch::build_batch_request_body;
use crate::response::{
    Action, ApplicationPermissions, Batch, BatteryCapacity, BatteryLevel, ChargeLimit,
    ChargingStatus, EngineOilLife, FuelTank, Location, LockStatus, Meta, Odometer, Status,
    Subscribe, TirePressure, VehicleAttributes, Vin,
};

#[derive(Debug)]
pub enum UnitSystem {
    Imperial,
    Metric,
}

#[derive(Debug)]
pub struct Vehicle {
    pub id: String,
    pub access_token: String,
    pub unit_system: UnitSystem,
}

impl Vehicle {
    /// Initializes a new Vehicle to use for making requests to the Smartcar API.
    pub fn new(vehicle_id: &str, access_token: &str) -> Vehicle {
        Vehicle {
            id: vehicle_id.to_owned(),
            access_token: access_token.to_owned(),
            unit_system: UnitSystem::Metric,
        }
    }

    fn get_request_builder(&self, path: &str, verb: HttpVerb) -> SmartcarRequestBuilder {
        let url = format!(
            "{api_url}/v2.0/vehicles/{id}{path}",
            api_url = get_api_url(),
            id = self.id,
            path = path
        );

        SmartcarRequestBuilder::new(&url, verb).add_header(
            "Authorization",
            &get_bearer_token_header(&self.access_token),
        )
    }

    /// General purpose request method
    pub async fn request(
        &self,
        path: &str,
        verb: HttpVerb,
        body: Option<Value>,
        headers: Option<HashMap<String, String>>,
    ) -> Result<(Response, Meta), Error> {
        let mut request_builder = self.get_request_builder(path, verb);

        if let Some(request_body) = body {
            request_builder = request_builder.add_body(request_body);
        }
        if let Some(custom_headers) = headers {
            for (key, val) in custom_headers.into_iter() {
                request_builder = request_builder.add_header(key.as_str(), val.as_str())
            }
        }

        let (res, meta) = request_builder.send().await?;

        Ok((res, meta))
    }

    /// Returns a list of the permissions that have been granted to your application
    /// in relation to this vehicle
    ///
    /// [GET - Application Permissions](https://smartcar.com/docs/api-reference/application-permissions)
    pub async fn permissions(&self) -> Result<(ApplicationPermissions, Meta), Error> {
        let path = "/permissions";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<ApplicationPermissions>().await?;

        Ok((data, meta))
    }

    /// Returns the remaining life span of a vehicle’s engine oil.
    ///
    /// [GET - Engine Oil](https://smartcar.com/docs/api-reference/get-engine-oil-life)
    pub async fn engine_oil(&self) -> Result<(EngineOilLife, Meta), Error> {
        let path = "/engine/oil";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<EngineOilLife>().await?;

        Ok((data, meta))
    }

    /// Returns the total capacity of an electric vehicle's battery.
    ///
    /// [GET - EV Battery Capacity](https://smartcar.com/docs/api-reference/evs/get-battery-capacity)
    pub async fn battery_capacity(&self) -> Result<(BatteryCapacity, Meta), Error> {
        let path = "/battery/capacity";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<BatteryCapacity>().await?;

        Ok((data, meta))
    }

    /// Returns the state of charge (SOC) and the remaining range of an electric vehicle's battery.
    ///
    /// [GET - EV Battery Level](https://smartcar.com/docs/api-reference/evs/get-battery-level)
    pub async fn battery_level(&self) -> Result<(BatteryLevel, Meta), Error> {
        let path = "/battery";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<BatteryLevel>().await?;

        Ok((data, meta))
    }

    /// Returns the current charge status of an electric vehicle.
    ///
    /// [GET - EV Charging Status](https://smartcar.com/docs/api-reference/evs/get-charge-status)
    pub async fn charging_status(&self) -> Result<(ChargingStatus, Meta), Error> {
        let path = "/charge";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<ChargingStatus>().await?;

        Ok((data, meta))
    }

    /// Returns the current charge status of an electric vehicle.
    ///
    /// [GET - EV Charge Limit](https://smartcar.com/docs/api-reference/evs/get-charge-limit)
    pub async fn charge_limit(&self) -> Result<(ChargeLimit, Meta), Error> {
        let path = "/charge/limit";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<ChargeLimit>().await?;

        Ok((data, meta))
    }

    /// Returns the status of the fuel remaining in the vehicle’s gas tank.
    /// Note: The fuel tank API is only available for vehicles sold in the United States.
    ///
    /// [GET - Fuel Tank](https://smartcar.com/docs/api-reference/get-fuel-tank)
    pub async fn fuel_tank(&self) -> Result<(FuelTank, Meta), Error> {
        let path = "/fuel";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<FuelTank>().await?;

        Ok((data, meta))
    }

    /// Returns the last known location of the vehicle in geographic coordinates.
    ///
    /// [GET - Location](https://smartcar.com/docs/api-reference/get-location)
    pub async fn location(&self) -> Result<(Location, Meta), Error> {
        let path = "/location";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<Location>().await?;

        Ok((data, meta))
    }

    /// Returns the vehicle’s last known odometer reading.
    ///
    /// [GET - Odometer](https://smartcar.com/docs/api-reference/get-odometer)
    pub async fn odometer(&self) -> Result<(Odometer, Meta), Error> {
        let path = "/odometer";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<Odometer>().await?;

        Ok((data, meta))
    }

    /// Returns the air pressure of each of the vehicle’s tires.
    ///
    /// [GET - Tire Pressure](https://smartcar.com/docs/api-reference/get-tire-pressure)
    pub async fn tire_pressure(&self) -> Result<(TirePressure, Meta), Error> {
        let path = "/tires/pressure";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<TirePressure>().await?;

        Ok((data, meta))
    }

    /// Returns the lock status for a vehicle and the open status of its doors,
    /// windows, storage units, sunroof and charging port where available.
    ///
    /// [GET - Lock Status](https://smartcar.com/docs/api-reference/get-lock-status)
    pub async fn lock_status(&self) -> Result<(LockStatus, Meta), Error> {
        let path = "/security";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<LockStatus>().await?;

        Ok((data, meta))
    }

    /// Returns a single vehicle object, containing identifying information.
    ///
    /// [GET - Vehicle Info](https://smartcar.com/docs/api-reference/get-vehicle-info)
    pub async fn attributes(&self) -> Result<(VehicleAttributes, Meta), Error> {
        let path = "/";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<VehicleAttributes>().await?;

        Ok((data, meta))
    }

    /// Returns the vehicle’s manufacturer identifier.
    ///
    /// [GET - VIN](https://smartcar.com/docs/api-reference/get-vin)
    pub async fn vin(&self) -> Result<(Vin, Meta), Error> {
        let path = "/vin";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Get)
            .send()
            .await?;
        let data = res.json::<Vin>().await?;

        Ok((data, meta))
    }

    /// Lock the vehicle.
    ///
    /// [POST - Lock/Unlock Doors](https://smartcar.com/docs/api-reference/control-lock-unlock)
    pub async fn lock(&self) -> Result<(Action, Meta), Error> {
        let path = "/security";
        let req_body = json!({ "action": "LOCK"});
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Post)
            .add_body(req_body)
            .send()
            .await?;
        let data = res.json::<Action>().await?;

        Ok((data, meta))
    }

    /// Unlock the vehicle.
    ///
    /// [POST - Lock/Unlock Doors](https://smartcar.com/docs/api-reference/control-lock-unlock)
    pub async fn unlock(&self) -> Result<(Action, Meta), Error> {
        let path = "/securiy";
        let req_body = json!({ "action": "UNLOCK"});
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Post)
            .add_body(req_body)
            .send()
            .await?;
        let data = res.json::<Action>().await?;

        Ok((data, meta))
    }

    /// Start charging an electric vehicle.
    ///
    /// [POST - Start/Stop Charge](https://smartcar.com/docs/api-reference/evs/control-charge)
    pub async fn start_charge(&self) -> Result<(Action, Meta), Error> {
        let path = "/charge";
        let req_body = json!({ "action": "START"});
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Post)
            .add_body(req_body)
            .send()
            .await?;
        let data = res.json::<Action>().await?;

        Ok((data, meta))
    }

    /// Stop charging an electric vehicle.
    ///
    /// [POST - Start/Stop Charge](https://smartcar.com/docs/api-reference/evs/control-charge)
    pub async fn stop_charge(&self) -> Result<(Action, Meta), Error> {
        let path = "/charge";
        let req_body = json!({ "action": "STOP"});
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Post)
            .add_body(req_body)
            .send()
            .await?;
        let data = res.json::<Action>().await?;

        Ok((data, meta))
    }

    /// Set the charge limit configuration for the vehicle
    ///
    /// [POST - EV Charge Limit](https://smartcar.com/docs/api-reference/evs/get-charge-limit)
    pub async fn set_charge_limit(&self, limit: f32) -> Result<(Action, Meta), Error> {
        let path = "/charge/limit";
        let req_body = json!({ "limit": limit });
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Post)
            .add_body(req_body)
            .send()
            .await?;
        let data = res.json::<Action>().await?;

        Ok((data, meta))
    }

    /// Returns a list of responses from multiple Smartcar endpoints, all combined into a single request.
    ///
    /// [POST - Batch Request](https://smartcar.com/docs/api-reference/batch)
    pub async fn batch(&self, paths: Vec<String>) -> Result<(Batch, Meta), Error> {
        let path = "/batch";
        let req_body = build_batch_request_body(paths)?;
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Post)
            .add_body(req_body)
            .send()
            .await?;
        let data = res.json::<Batch>().await?;

        Ok((data, meta))
    }

    /// Revoke access for the current requesting application.
    ///
    /// [DELETE - Disconnect](https://smartcar.com/docs/api-reference/delete-disconnect)
    pub async fn disconnect(&self) -> Result<(Status, Meta), Error> {
        let path = "/application";
        let (res, meta) = self
            .get_request_builder(path, HttpVerb::Delete)
            .send()
            .await?;
        let data = res.json::<Status>().await?;

        Ok((data, meta))
    }

    /// Subscribe a vehicle to a webhook
    ///
    /// [POST - Subscribe to Webhook](https://smartcar.com/docs/api-reference/webhooks/subscribe-webhook)
    pub async fn subscribe(&self, webhook_id: &str) -> Result<(Subscribe, Meta), Error> {
        let path = format!("/webhooks/{}", webhook_id);
        let (res, meta) = self
            .get_request_builder(&path, HttpVerb::Post)
            .send()
            .await?;
        let data = res.json::<Subscribe>().await?;

        Ok((data, meta))
    }

    /// Unsubscribe a vehicle from a webhook
    ///
    /// # Fields
    /// - `amt` - The Application Management Token found on Smartcar Dashbaord
    /// - `webhook_id` - The id of the webhook, found in your dashboard
    ///
    /// [DELETE - Unsubscribe from Webhook](https://smartcar.com/docs/api-reference/webhooks/unsubscribe-webhook)
    pub async fn unsubscribe(
        &self,
        amt: &str,
        webhook_id: &str,
    ) -> Result<(Subscribe, Meta), Error> {
        let url = format!(
            "{api_url}/v2.0/vehicles/{id}/webhooks/{webhook_id}",
            api_url = get_api_url(),
            id = self.id,
            webhook_id = webhook_id
        );

        // Different bearer token requires a request built from scratch,
        let (res, meta) = SmartcarRequestBuilder::new(&url, HttpVerb::Delete)
            .add_header("Authorization", &get_bearer_token_header(amt))
            .send()
            .await?;
        let data = res.json::<Subscribe>().await?;

        Ok((data, meta))
    }
}