forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.rs
317 lines (291 loc) · 9.41 KB
/
files.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
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
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
use std::error::Error;
use std::fs;
use std::fs::{remove_file, File};
use std::io;
use std::path::{Path, PathBuf};
use crate::config::OS;
use directories::BaseDirs;
use flate2::read::GzDecoder;
use regex::Regex;
use tar::Archive;
use zip::ZipArchive;
use crate::config::OS::WINDOWS;
use crate::Logger;
pub const PARSE_ERROR: &str = "Wrong browser/driver version";
const CACHE_FOLDER: &str = ".cache/selenium";
const ZIP: &str = "zip";
const GZ: &str = "gz";
const XML: &str = "xml";
const HTML: &str = "html";
#[derive(Hash, Eq, PartialEq, Debug)]
pub struct BrowserPath {
os: OS,
channel: String,
}
impl BrowserPath {
pub fn new(os: OS, channel: &str) -> BrowserPath {
BrowserPath {
os,
channel: channel.to_string(),
}
}
}
pub fn create_parent_path_if_not_exists(path: &Path) -> Result<(), Box<dyn Error>> {
if let Some(p) = path.parent() {
create_path_if_not_exists(p)?;
}
Ok(())
}
pub fn create_path_if_not_exists(path: &Path) -> Result<(), Box<dyn Error>> {
if !path.exists() {
fs::create_dir_all(path)?;
}
Ok(())
}
pub fn uncompress(
compressed_file: &str,
target: &Path,
log: &Logger,
single_file: Option<String>,
) -> Result<(), Box<dyn Error>> {
let kind = infer::get_from_path(compressed_file)?.ok_or(format!(
"Format for file {} cannot be inferred",
compressed_file
))?;
let extension = kind.extension();
log.trace(format!(
"The detected extension of the compressed file is {}",
extension
));
if extension.eq_ignore_ascii_case(ZIP) {
unzip(compressed_file, target, log, single_file)?
} else if extension.eq_ignore_ascii_case(GZ) {
untargz(compressed_file, target, log)?
} else if extension.eq_ignore_ascii_case(XML) || extension.eq_ignore_ascii_case(HTML) {
log.debug(format!(
"Wrong downloaded driver: {}",
fs::read_to_string(compressed_file).unwrap_or_default()
));
return Err(PARSE_ERROR.into());
} else {
return Err(format!(
"Downloaded file cannot be uncompressed ({} extension)",
extension
)
.into());
}
Ok(())
}
pub fn untargz(compressed_file: &str, target: &Path, log: &Logger) -> Result<(), Box<dyn Error>> {
log.trace(format!(
"Untargz {} to {}",
compressed_file,
target.display()
));
let file = File::open(compressed_file)?;
let tar = GzDecoder::new(&file);
let mut archive = Archive::new(tar);
let parent_path = target
.parent()
.ok_or(format!("Error getting parent of {:?}", file))?;
if !target.exists() {
archive.unpack(parent_path)?;
}
Ok(())
}
pub fn unzip(
compressed_file: &str,
target: &Path,
log: &Logger,
single_file: Option<String>,
) -> Result<(), Box<dyn Error>> {
let file = File::open(compressed_file)?;
let compressed_path = Path::new(compressed_file);
let tmp_path = compressed_path
.parent()
.unwrap_or(compressed_path)
.to_path_buf();
let final_path = if single_file.is_some() {
target.parent().unwrap_or(target).to_path_buf()
} else {
target.to_path_buf()
};
log.trace(format!(
"Unzipping {} to {}",
compressed_file,
final_path.display()
));
let mut zip_archive = ZipArchive::new(file)?;
let mut unzipped_files = 0;
for i in 0..zip_archive.len() {
let mut file = zip_archive.by_index(i)?;
let path: PathBuf = match file.enclosed_name() {
// This logic is required since some zip files (e.g. chromedriver 115+)
// are zipped with a parent folder, while others (e.g. chromedriver 114-)
// are zipped without a parent folder
Some(p) => {
let iter = p.clone().iter();
if iter.to_owned().count() > 1 {
iter.skip(1).collect()
} else {
iter.collect()
}
}
None => continue,
};
if file.name().ends_with('/') {
log.trace(format!("File extracted to {}", tmp_path.display()));
fs::create_dir_all(&tmp_path)?;
} else {
let target_path = tmp_path.join(path.clone());
create_parent_path_if_not_exists(target_path.as_path())?;
let mut outfile = File::create(&target_path)?;
// Set permissions in Unix-like systems
#[cfg(unix)]
{
use std::os::unix::fs::PermissionsExt;
if single_file.is_some() {
fs::set_permissions(&target_path, fs::Permissions::from_mode(0o755))?;
} else if let Some(mode) = file.unix_mode() {
fs::set_permissions(&target_path, fs::Permissions::from_mode(mode))?;
}
}
io::copy(&mut file, &mut outfile)?;
unzipped_files += 1;
log.trace(format!(
"File extracted to {} ({} bytes)",
target_path.display(),
file.size()
));
}
}
if unzipped_files == 0 {
return Err(format!(
"Problem uncompressing zip ({} files extracted)",
unzipped_files
)
.into());
}
remove_file(compressed_path)?;
copy_folder_content(
tmp_path,
final_path,
single_file,
&compressed_path.to_path_buf(),
log,
)?;
Ok(())
}
pub fn copy_folder_content(
source: impl AsRef<Path>,
destination: impl AsRef<Path>,
single_file: Option<String>,
avoid_path: &PathBuf,
log: &Logger,
) -> io::Result<()> {
fs::create_dir_all(&destination)?;
for dir_entry in fs::read_dir(source)? {
let entry = dir_entry?;
let file_type = entry.file_type()?;
let destination_path = destination.as_ref().join(entry.file_name());
if file_type.is_file() {
if entry.path().eq(avoid_path) {
continue;
}
let target_file_name = entry
.file_name()
.to_os_string()
.into_string()
.unwrap_or_default();
if single_file.is_none()
|| (single_file.is_some() && single_file.clone().unwrap().eq(&target_file_name))
{
log.trace(format!(
"Copying {} to {}",
entry.path().display(),
destination_path.display()
));
if !destination_path.exists() {
fs::copy(entry.path(), destination_path)?;
}
}
} else if single_file.is_none() {
copy_folder_content(
entry.path(),
destination_path,
single_file.clone(),
avoid_path,
log,
)?;
}
}
Ok(())
}
pub fn default_cache_folder() -> PathBuf {
if let Some(base_dirs) = BaseDirs::new() {
return Path::new(base_dirs.home_dir())
.join(String::from(CACHE_FOLDER).replace('/', std::path::MAIN_SEPARATOR_STR));
}
PathBuf::new()
}
pub fn compose_driver_path_in_cache(
driver_path: PathBuf,
driver_name: &str,
os: &str,
arch_folder: &str,
driver_version: &str,
) -> PathBuf {
driver_path
.join(driver_name)
.join(arch_folder)
.join(driver_version)
.join(get_driver_filename(driver_name, os))
}
pub fn get_driver_filename(driver_name: &str, os: &str) -> String {
format!("{}{}", driver_name, get_binary_extension(os))
}
pub fn get_binary_extension(os: &str) -> &str {
if WINDOWS.is(os) {
".exe"
} else {
""
}
}
pub fn parse_version(version_text: String, log: &Logger) -> Result<String, Box<dyn Error>> {
if version_text.to_ascii_lowercase().contains("error") {
log.debug(format!("Error parsing version: {}", version_text));
return Err(PARSE_ERROR.into());
}
let mut parsed_version = "".to_string();
let re_numbers_dots = Regex::new(r"[^\d^.]")?;
let re_versions = Regex::new(r"(?:(\d+)\.)?(?:(\d+)\.)?(?:(\d+)\.\d+)")?;
for token in version_text.split(' ') {
parsed_version = re_numbers_dots.replace_all(token, "").to_string();
if re_versions.is_match(parsed_version.as_str()) {
break;
}
}
if parsed_version.ends_with('.') {
parsed_version = parsed_version[0..parsed_version.len() - 1].to_string();
}
Ok(parsed_version)
}
pub fn path_buf_to_string(path_buf: PathBuf) -> String {
path_buf.into_os_string().into_string().unwrap_or_default()
}