dimo_rust_sdk/rest/vehiclesignaldecoding/
vehiclesignaldecoding.rs

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
use crate::utils::request::{make_auth_request, make_request, AuthRequestParams, RequestParams};
use reqwest::Method;
use serde_json::Value;
use std::collections::HashMap;
use std::error::Error;

pub struct VehicleSignalDecoding {
    base_url: String,
}

impl VehicleSignalDecoding {
    pub fn new(base_url: &str) -> Self {
        Self {
            base_url: base_url.to_string(),
        }
    }

    pub async fn list_config_urls_by_vin(
        &self,
        vin: &str,
        protocol: Option<&str>,
    ) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/vin/{}/urls", vin);
        let query_params = protocol.map(|protocol| {
            let mut q = HashMap::new();
            q.insert("protocol".to_string(), protocol.to_string());
            q
        });

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn list_config_urls_by_address(
        &self,
        address: &str,
        protocol: Option<&str>,
    ) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/eth-addr/{}/urls", address);
        let query_params = protocol.map(|protocol| {
            let mut q = HashMap::new();
            q.insert("protocol".to_string(), protocol.to_string());
            q
        });

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn get_pid_configs(&self, template_name: &str) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/pids/{}", template_name);

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn get_device_settings(&self, template_name: &str) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/settings/{}", template_name);

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn get_dbc_text(&self, template_name: &str) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/dbc/{}", template_name);

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn get_device_status_by_address(
        &self,
        address: &str,
    ) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/eth-addr/{}/status", address);

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn set_device_status_by_address(
        &self,
        address: &str,
        config: Value,
    ) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/eth-addr/{}/status", address);

        let mut body = HashMap::new();
        body.insert("config".to_string(), config);

        let request_params = AuthRequestParams {
            method: Method::PATCH,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: Some(body),
            headers: None,
            token_type: "privilege".to_string(),
        };

        make_auth_request(request_params).await
    }

    pub async fn get_jobs_by_address(&self, address: &str) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/eth-addr/{}/jobs", address);

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn get_pending_jobs_by_address(
        &self,
        address: &str,
    ) -> Result<Value, Box<dyn Error>> {
        let path = format!("/v1/device-config/eth-addr/{}/jobs/pending", address);

        let request_params = RequestParams {
            method: Method::GET,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
        };

        make_request(request_params).await
    }

    pub async fn set_job_status_by_address(
        &self,
        address: &str,
        job_id: &str,
        status: &str,
    ) -> Result<Value, Box<dyn Error>> {
        let path = format!(
            "/v1/device-config/eth-addr/{}/jobs/{}/{}",
            address, job_id, status
        );

        let request_params = AuthRequestParams {
            method: Method::PATCH,
            base_url: self.base_url.clone(),
            path,
            query_params: None,
            body: None,
            headers: None,
            token_type: "privilege".to_string(),
        };

        Ok(make_auth_request(request_params).await?)
    }
}