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
use crate::{Balance, BasicUserInfoJsonResponse, Currency, Environment, TokenResponse};
pub struct Account {}
impl Account {
/// This operation is used to get the balance of the account.
/// # Parameters
///
/// * 'url', the url of the product to get balance from
/// * 'environment', the environment of the installation
/// * 'primary_key', the primary key of the installation
/// * 'access_token', the access token to be used to make the request
///
/// # Returns
///
/// * 'Balance', the balance
pub async fn get_account_balance(
&self,
url: String,
environment: Environment,
primary_key: String,
access_token: TokenResponse,
) -> Result<Balance, Box<dyn std::error::Error>> {
let client = reqwest::Client::new();
let res = client
.get(format!("{}/v1_0/account/balance", url))
.bearer_auth(access_token.access_token)
.header("X-Target-Environment", environment.to_string())
.header("Cache-Control", "no-cache")
.header("Ocp-Apim-Subscription-Key", &primary_key)
.send()
.await?;
if res.status().is_success() {
let body = res.text().await?;
let balance: Balance = serde_json::from_str(&body)?;
Ok(balance)
} else {
Err(Box::new(std::io::Error::other(res.text().await?)))
}
}
/// this operation is used to get the balance of an account in a specific currency
///
/// # Parameters
///
/// * 'url', the url of the product to get balance from
/// * 'currency', Currency of the account to get balance from
/// * 'environment', the environment of the installation
/// * 'primary_key', the primary key of the installation
/// * 'access_token', the access token to be used to make the request
///
/// # Returns
///
/// * 'Balance', the balance
pub async fn get_account_balance_in_specific_currency(
&self,
url: String,
environment: Environment,
primary_key: String,
currency: Currency,
access_token: TokenResponse,
) -> Result<Balance, Box<dyn std::error::Error>> {
let client = reqwest::Client::new();
let res = client
.get(format!(
"{}/v1_0/account/balance/{}",
url,
currency.to_string().to_lowercase()
))
.bearer_auth(access_token.access_token)
.header("X-Target-Environment", environment.to_string())
.header("Ocp-Apim-Subscription-Key", &primary_key)
.send()
.await?;
if res.status().is_success() {
let body = res.text().await?;
let balance: Balance = serde_json::from_str(&body)?;
Ok(balance)
} else {
Err(Box::new(std::io::Error::other(res.text().await?)))
}
}
/// This operation is used to get the basic information of the account holder
///
/// # Parameters
/// * 'url', the url of the product to get balance from
/// * 'environment', the environment of the installation
/// * 'primary_key', the primary key of the installation
/// * 'account_holder_msisdn', the MSISDN of the account holder
/// * 'access_token', the access token to be used to make the request
///
/// # Returns
///
/// * 'BasicUserInfoJsonResponse'
pub async fn get_basic_user_info(
&self,
url: String,
environment: Environment,
primary_key: String,
account_holder_msisdn: &str,
access_token: TokenResponse,
) -> Result<BasicUserInfoJsonResponse, Box<dyn std::error::Error>> {
let client = reqwest::Client::new();
let res = client
.get(format!(
"{}/v1_0/accountholder/msisdn/{}/basicuserinfo",
url, account_holder_msisdn
))
.bearer_auth(access_token.access_token)
.header("Content-Type", "application/json")
.header("X-Target-Environment", environment.to_string())
.header("Ocp-Apim-Subscription-Key", &primary_key)
.header("Cache-Control", "no-cache")
.send()
.await?;
if res.status().is_success() {
let body = res.text().await?;
let basic_user_info: BasicUserInfoJsonResponse = serde_json::from_str(&body)?;
Ok(basic_user_info)
} else {
Err(Box::new(std::io::Error::other(res.text().await?)))
}
}
/// This operation is used to get the basic information of the account holder.
///
/// # Parameters
///
/// * 'url', the url of the product to get balance from
/// * 'environment', the environment of the installation
/// * 'primary_key', the primary key of the installation
/// * 'access_token', the access token of the account holder
///
/// # Returns
///
/// * 'BasicUserInfoJsonResponse'
pub async fn get_user_info_with_consent(
&self,
url: String,
environment: Environment,
primary_key: String,
access_token: String,
) -> Result<BasicUserInfoJsonResponse, Box<dyn std::error::Error>> {
let client = reqwest::Client::new();
let res = client
.get(format!("{}/oauth2/v1_0/userinfo", url))
.bearer_auth(access_token)
.header("X-Target-Environment", environment.to_string())
.header("Ocp-Apim-Subscription-Key", &primary_key)
.header("Cache-Control", "no-cache")
.send()
.await?;
if res.status().is_success() {
let body = res.text().await?;
let basic_user_info: BasicUserInfoJsonResponse = serde_json::from_str(&body)?;
Ok(basic_user_info)
} else {
Err(Box::new(std::io::Error::other(res.text().await?)))
}
}
/// this operation is used to validate the status of an account holder.
///
/// # Parameters
///
/// * 'url', the url of the product to get balance from
/// * 'environment', the environment of the installation
/// * 'primary_key', the primary key of the installation
/// * 'access_token', the access token of the account holder
///
/// * 'account_holder_id', The MSISDN or email of the account holder
/// * 'account_holder_type', The type of the account holder.
///
///
/// # Returns
///
/// * ()
pub async fn validate_account_holder_status(
&self,
url: String,
environment: Environment,
primary_key: String,
account_holder_id: &str,
account_holder_type: &str,
access_token: TokenResponse,
) -> Result<(), Box<dyn std::error::Error>> {
let client = reqwest::Client::new();
let res = client
.get(format!(
"{}/v1_0/accountholder/{}/{}/active",
url, account_holder_type, account_holder_id
))
.bearer_auth(access_token.access_token)
.header("X-Target-Environment", environment.to_string())
.header("Ocp-Apim-Subscription-Key", &primary_key)
.send()
.await?;
if res.status().is_success() {
Ok(())
} else {
Err(Box::new(std::io::Error::other(res.text().await?)))
}
}
}