-
Notifications
You must be signed in to change notification settings - Fork 226
/
doctor.rs
277 lines (250 loc) · 8.34 KB
/
doctor.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
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
use std::{
collections::{BTreeMap, HashMap},
process::Command,
sync::OnceLock,
};
use colored::Colorize;
use regex::Regex;
use semver::Version;
use crate::{
bgworker,
config::{self, Config, Database},
db, depcheck, Error, Result,
};
const SEAORM_INSTALLED: &str = "SeaORM CLI is installed";
const SEAORM_NOT_INSTALLED: &str = "SeaORM CLI was not found";
const SEAORM_NOT_FIX: &str = r"To fix, run:
$ cargo install sea-orm-cli";
const DB_CONNECTION_FAILED: &str = "DB connection: fails";
const DB_CONNECTION_SUCCESS: &str = "DB connection: success";
const QUEUE_CONN_OK: &str = "queue connection: success";
const QUEUE_CONN_FAILED: &str = "queue connection: failed";
const QUEUE_NOT_CONFIGURED: &str = "queue not configured?";
// versions health
const MIN_SEAORMCLI_VER: &str = "1.1.0";
static MIN_DEP_VERSIONS: OnceLock<HashMap<&'static str, &'static str>> = OnceLock::new();
fn get_min_dep_versions() -> &'static HashMap<&'static str, &'static str> {
MIN_DEP_VERSIONS.get_or_init(|| {
let mut min_vers = HashMap::new();
min_vers.insert("tokio", "1.33.0");
min_vers.insert("sea-orm", "1.1.0");
min_vers.insert("validator", "0.18.0");
min_vers.insert("axum", "0.7.5");
min_vers
})
}
/// Represents different resources that can be checked.
#[derive(PartialOrd, PartialEq, Eq, Ord, Debug)]
pub enum Resource {
SeaOrmCLI,
Database,
Queue,
Deps,
}
/// Represents the status of a resource check.
#[derive(Debug, PartialEq, Eq)]
pub enum CheckStatus {
Ok,
NotOk,
NotConfigure,
}
/// Represents the result of a resource check.
#[derive(Debug)]
pub struct Check {
/// The status of the check.
pub status: CheckStatus,
/// A message describing the result of the check.
pub message: String,
/// Additional information or instructions related to the check.
pub description: Option<String>,
}
impl Check {
#[must_use]
pub fn valid(&self) -> bool {
self.status != CheckStatus::NotOk
}
/// Convert to a Result type
///
/// # Errors
///
/// This function will return an error if Check fails
pub fn to_result(&self) -> Result<()> {
if self.valid() {
Ok(())
} else {
Err(Error::Message(format!(
"{} {}",
self.message,
self.description.clone().unwrap_or_default()
)))
}
}
}
impl std::fmt::Display for Check {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let icon = match self.status {
CheckStatus::Ok => "✅",
CheckStatus::NotOk => "❌",
CheckStatus::NotConfigure => "⚠️ ",
};
write!(
f,
"{} {}{}",
icon,
self.message,
self.description
.as_ref()
.map(|d| format!("\n{d}"))
.unwrap_or_default()
)
}
}
/// Runs checks for all configured resources.
/// # Errors
/// Error when one of the checks fail
pub async fn run_all(config: &Config, production: bool) -> Result<BTreeMap<Resource, Check>> {
let mut checks = BTreeMap::from([(Resource::Database, check_db(&config.database).await)]);
if config.workers.mode == config::WorkerMode::BackgroundQueue {
checks.insert(Resource::Queue, check_queue(config).await);
}
if !production {
checks.insert(Resource::Deps, check_deps()?);
checks.insert(Resource::SeaOrmCLI, check_seaorm_cli()?);
}
Ok(checks)
}
/// Checks "blessed" / major dependencies in a Loco app Cargo.toml, and
/// recommend to update.
/// Only if a dep exists, we check it against a min version
/// # Errors
/// Returns error if fails
pub fn check_deps() -> Result<Check> {
let cargolock = fs_err::read_to_string("Cargo.lock")?;
let crate_statuses =
depcheck::check_crate_versions(&cargolock, get_min_dep_versions().clone())?;
let mut report = String::new();
report.push_str("Dependencies\n");
let mut all_ok = true;
for status in &crate_statuses {
if let depcheck::VersionStatus::Invalid {
version,
min_version,
} = &status.status
{
report.push_str(&format!(
" {}: version {} does not meet minimum version {}\n",
status.crate_name.yellow(),
version.red(),
min_version.green()
));
all_ok = false;
}
}
Ok(Check {
status: if all_ok {
CheckStatus::Ok
} else {
CheckStatus::NotOk
},
message: report,
description: None,
})
}
/// Checks the database connection.
pub async fn check_db(config: &Database) -> Check {
match db::connect(config).await {
Ok(conn) => match conn.ping().await {
Ok(()) => match db::verify_access(&conn).await {
Ok(()) => Check {
status: CheckStatus::Ok,
message: DB_CONNECTION_SUCCESS.to_string(),
description: None,
},
Err(err) => Check {
status: CheckStatus::NotOk,
message: DB_CONNECTION_FAILED.to_string(),
description: Some(err.to_string()),
},
},
Err(err) => Check {
status: CheckStatus::NotOk,
message: DB_CONNECTION_FAILED.to_string(),
description: Some(err.to_string()),
},
},
Err(err) => Check {
status: CheckStatus::NotOk,
message: DB_CONNECTION_FAILED.to_string(),
description: Some(err.to_string()),
},
}
}
/// Checks the Redis connection.
pub async fn check_queue(config: &Config) -> Check {
if let Ok(Some(queue)) = bgworker::create_queue_provider(config).await {
match queue.ping().await {
Ok(()) => Check {
status: CheckStatus::Ok,
message: format!("{}: {}", queue.describe(), QUEUE_CONN_OK),
description: None,
},
Err(err) => Check {
status: CheckStatus::NotOk,
message: format!("{}: {}", queue.describe(), QUEUE_CONN_FAILED),
description: Some(err.to_string()),
},
}
} else {
Check {
status: CheckStatus::NotConfigure,
message: QUEUE_NOT_CONFIGURED.to_string(),
description: None,
}
}
}
/// Checks the presence and version of `SeaORM` CLI.
/// # Panics
/// On illegal regex
/// # Errors
/// Fails when cannot check version
pub fn check_seaorm_cli() -> Result<Check> {
match Command::new("sea-orm-cli").arg("--version").output() {
Ok(out) => {
let input = String::from_utf8_lossy(&out.stdout);
// Extract the version from the input string
let re = Regex::new(r"(\d+\.\d+\.\d+)").unwrap();
let version_str = re
.captures(&input)
.and_then(|caps| caps.get(0))
.map(|m| m.as_str())
.ok_or("SeaORM CLI version not found")
.map_err(Box::from)?;
// Parse the extracted version using semver
let version = Version::parse(version_str).map_err(Box::from)?;
// Parse the minimum version for comparison
let min_version = Version::parse(MIN_SEAORMCLI_VER).map_err(Box::from)?;
// Compare the extracted version with the minimum version
if version >= min_version {
Ok(Check {
status: CheckStatus::Ok,
message: SEAORM_INSTALLED.to_string(),
description: None,
})
} else {
Ok(Check {
status: CheckStatus::NotOk,
message: format!(
"SeaORM CLI minimal version is `{min_version}` (you have `{version}`). \
Run `cargo install sea-orm-cli` to update."
),
description: Some(SEAORM_NOT_FIX.to_string()),
})
}
}
Err(_) => Ok(Check {
status: CheckStatus::NotOk,
message: SEAORM_NOT_INSTALLED.to_string(),
description: Some(SEAORM_NOT_FIX.to_string()),
}),
}
}