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
#[macro_use]
extern crate serde;
extern crate serde_json;
use std::env;
use reqwest::Response;
use serde::Deserialize;
use yup_oauth2::ServiceAccountKey;
use crate::auth::{service_account_authenticator, ServiceAccountAuthenticator};
use crate::dataset::DatasetApi;
use crate::error::BQError;
use crate::job::JobApi;
use crate::model_api::ModelApi;
use crate::project::ProjectApi;
use crate::routine::RoutineApi;
use crate::table::TableApi;
use crate::tabledata::TableDataApi;
pub mod auth;
pub mod dataset;
pub mod error;
pub mod job;
pub mod model;
pub mod model_api;
pub mod project;
pub mod routine;
pub mod table;
pub mod tabledata;
#[derive(Clone)]
pub struct Client {
dataset_api: DatasetApi,
table_api: TableApi,
job_api: JobApi,
tabledata_api: TableDataApi,
routine_api: RoutineApi,
model_api: ModelApi,
project_api: ProjectApi,
}
impl Client {
pub async fn from_service_account_key_file(sa_key_file: &str) -> Self {
let scopes = vec!["https://www.googleapis.com/auth/bigquery"];
let sa_auth = service_account_authenticator(scopes, sa_key_file)
.await
.expect("expecting a valid key");
let client = reqwest::Client::new();
Self {
dataset_api: DatasetApi::new(client.clone(), sa_auth.clone()),
table_api: TableApi::new(client.clone(), sa_auth.clone()),
job_api: JobApi::new(client.clone(), sa_auth.clone()),
tabledata_api: TableDataApi::new(client.clone(), sa_auth.clone()),
routine_api: RoutineApi::new(client.clone(), sa_auth.clone()),
model_api: ModelApi::new(client.clone(), sa_auth.clone()),
project_api: ProjectApi::new(client, sa_auth),
}
}
pub async fn from_service_account_key(sa_key: ServiceAccountKey, readonly: bool) -> Result<Self, BQError> {
let scopes = if readonly {
["https://www.googleapis.com/auth/bigquery.readonly"]
} else {
["https://www.googleapis.com/auth/bigquery"]
};
let sa_auth = ServiceAccountAuthenticator::from_service_account_key(sa_key, &scopes).await?;
let client = reqwest::Client::new();
Ok(Self {
dataset_api: DatasetApi::new(client.clone(), sa_auth.clone()),
table_api: TableApi::new(client.clone(), sa_auth.clone()),
job_api: JobApi::new(client.clone(), sa_auth.clone()),
tabledata_api: TableDataApi::new(client.clone(), sa_auth.clone()),
routine_api: RoutineApi::new(client.clone(), sa_auth.clone()),
model_api: ModelApi::new(client.clone(), sa_auth.clone()),
project_api: ProjectApi::new(client, sa_auth),
})
}
pub async fn with_workload_identity(readonly: bool) -> Result<Self, BQError> {
let scopes = if readonly {
["https://www.googleapis.com/auth/bigquery.readonly"]
} else {
["https://www.googleapis.com/auth/bigquery"]
};
let sa_auth = ServiceAccountAuthenticator::with_workload_identity(&scopes).await?;
let client = reqwest::Client::new();
Ok(Self {
dataset_api: DatasetApi::new(client.clone(), sa_auth.clone()),
table_api: TableApi::new(client.clone(), sa_auth.clone()),
job_api: JobApi::new(client.clone(), sa_auth.clone()),
tabledata_api: TableDataApi::new(client.clone(), sa_auth.clone()),
routine_api: RoutineApi::new(client.clone(), sa_auth.clone()),
model_api: ModelApi::new(client.clone(), sa_auth.clone()),
project_api: ProjectApi::new(client, sa_auth),
})
}
pub fn dataset(&self) -> &DatasetApi {
&self.dataset_api
}
pub fn table(&self) -> &TableApi {
&self.table_api
}
pub fn job(&self) -> &JobApi {
&self.job_api
}
pub fn tabledata(&self) -> &TableDataApi {
&self.tabledata_api
}
pub fn routine(&self) -> &RoutineApi {
&self.routine_api
}
pub fn model(&self) -> &ModelApi {
&self.model_api
}
pub fn project(&self) -> &ProjectApi {
&self.project_api
}
}
pub(crate) fn urlencode<T: AsRef<str>>(s: T) -> String {
url::form_urlencoded::byte_serialize(s.as_ref().as_bytes()).collect()
}
async fn process_response<T: for<'de> Deserialize<'de>>(resp: Response) -> Result<T, BQError> {
if resp.status().is_success() {
Ok(resp.json().await?)
} else {
Err(BQError::ResponseError {
error: resp.json().await?,
})
}
}
pub fn env_vars() -> (String, String, String, String) {
let project_id = env::var("PROJECT_ID").expect("Environment variable PROJECT_ID");
let dataset_id = env::var("DATASET_ID").expect("Environment variable DATASET_ID");
let table_id = env::var("TABLE_ID").expect("Environment variable TABLE_ID");
let gcp_sa_key =
env::var("GOOGLE_APPLICATION_CREDENTIALS").expect("Environment variable GOOGLE_APPLICATION_CREDENTIALS");
(project_id, dataset_id, table_id, gcp_sa_key)
}