repo-cli 0.1.3

A sane way to manage all of your git repositories
Documentation
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
use crate::{
    config::{Config, ConfigData},
    query::Scheme,
    util, Location,
};
use anyhow::{anyhow, Context, Result};
use lazy_static::lazy_static;
use serde::{Deserialize, Serialize};
use std::{
    collections::HashSet,
    convert::{TryFrom, TryInto},
    env,
    fs::File,
    io::{Read, Write},
    path::{Path, PathBuf},
};

lazy_static! {
    pub static ref GLOBAL_CONFIG_PATH: PathBuf = match env::var("REPO_CONFIG_PATH") {
        Ok(path) => {
            util::make_path_buf(path).expect("failed to convert REPO_CONFIG_PATH into a PathBuf")
        }
        Err(_) => {
            dirs_next::config_dir()
                .map(|path| path.join("repo"))
                .unwrap_or_else(|| {
                    util::make_path_buf("~/.config/repo")
                        .expect("failed to determine the global configuration path")
                })
        }
    };
    pub static ref LOCAL_CONFIG_PATH: PathBuf = match env::var("REPO_LOCAL_PATH") {
        Ok(path) => {
            util::make_path_buf(path).expect("failed to convert REPO_LOCAL_PATH into a PathBuf")
        }
        Err(_) => {
            dirs_next::data_local_dir()
                .map(|path| path.join("repo"))
                .unwrap_or_else(|| {
                    util::make_path_buf("~/.local/share/repo")
                        .expect("failed to determine the local configuration path")
                })
        }
    };
}

impl Config {
    pub fn new() -> Result<Self> {
        let global_path: &Path = &*GLOBAL_CONFIG_PATH;
        let global_file = global_path.join("config.toml");

        debug!("Looking for global config file: {:#?}", global_file);
        let global_config: ConfigData = if global_file.is_file() {
            debug!("Found file: {:#?}", global_file);
            ConfigData::from_path(global_file)?
        } else {
            debug!("Failed to find file: {:#?}", global_file);
            let mut data = ConfigData::new();
            data.path = Some(Config::global_path().to_path_buf());
            data
        };

        let local_path: &Path = &*LOCAL_CONFIG_PATH;
        let local_file = local_path.join("config.toml");

        debug!("Looking for local config file: {:#?}", local_file);
        let local_config = if local_file.is_file() {
            debug!("Found file: {:#?}", local_file);
            ConfigData::from_path(local_file)?
        } else {
            debug!("Failed to find file: {:#?}", local_file);
            let mut data = ConfigData::new();
            data.path = Some(Config::local_path().to_path_buf());
            data
        };

        Ok(Self {
            global: global_config,
            local: local_config,
            default: ConfigData::default(),
        })
    }

    pub fn global_path() -> &'static Path {
        &*GLOBAL_CONFIG_PATH
    }

    pub fn local_path() -> &'static Path {
        &*LOCAL_CONFIG_PATH
    }

    pub fn path(&self, location: Option<Location>) -> &Path {
        if let Some(l) = location {
            if l == Location::Local {
                return self.local.path.as_ref().unwrap();
            }
        }

        self.global.path.as_ref().unwrap()
    }
    // --------------------------------------------------------------------------------------------
    // Get functions for config command

    pub fn root(&self, location: Option<Location>) -> &Path {
        if let Some(l) = location {
            let path = match l {
                Location::Global => self
                    .global
                    .root
                    .as_ref()
                    .unwrap_or_else(|| self.default.root.as_ref().unwrap()),
                Location::Local => self
                    .local
                    .root
                    .as_ref()
                    .unwrap_or_else(|| self.default.root.as_ref().unwrap()),
            };

            return path;
        }

        if let Some(local) = self.local.root.as_ref() {
            local
        } else if let Some(global) = self.global.root.as_ref() {
            global
        } else {
            self.default.root.as_ref().unwrap()
        }
    }

    pub fn cli(&self, location: Option<Location>) -> bool {
        if let Some(l) = location {
            if let Some(result) = match l {
                Location::Global => self.global.cli,
                Location::Local => self.local.cli,
            } {
                return result;
            }
        }

        if let Some(local) = self.local.cli {
            local
        } else if let Some(global) = self.global.cli {
            global
        } else {
            self.default.cli.unwrap()
        }
    }

    pub fn host(&self, location: Option<Location>) -> &str {
        if let Some(l) = location {
            let result = match l {
                Location::Global => self.global.host.as_ref(),
                Location::Local => self.local.host.as_ref(),
            };

            if let Some(host) = result {
                return host;
            }
        }

        if let Some(local) = self.local.host.as_ref() {
            local
        } else if let Some(global) = self.global.host.as_ref() {
            global
        } else {
            self.default.host.as_ref().unwrap()
        }
    }

    pub fn ssh_user(&self, location: Option<Location>) -> &str {
        if let Some(l) = location {
            let result = match l {
                Location::Global => self.global.ssh_user.as_ref(),
                Location::Local => self.local.ssh_user.as_ref(),
            };

            if let Some(user) = result {
                return user;
            }
        }

        if let Some(local) = self.local.ssh_user.as_ref() {
            local
        } else if let Some(global) = self.global.ssh_user.as_ref() {
            global
        } else {
            self.default.ssh_user.as_ref().unwrap()
        }
    }

    pub fn scheme(&self, location: Option<Location>) -> Scheme {
        if let Some(l) = location {
            let result = match l {
                Location::Global => self.global.scheme,
                Location::Local => self.local.scheme,
            };

            if let Some(scheme) = result {
                return scheme;
            }
        }

        if let Some(local) = self.local.scheme {
            local
        } else if let Some(global) = self.global.scheme {
            global
        } else {
            self.default.scheme.unwrap()
        }
    }

    pub fn shell(&self, location: Option<Location>) -> Vec<&str> {
        if let Some(l) = location {
            let list = match l {
                Location::Global => &self.global.shell,
                Location::Local => &self.local.shell,
            };

            if let Some(list) = list {
                return list.iter().map(AsRef::as_ref).collect();
            }
        }

        self.default
            .shell
            .as_ref()
            .unwrap()
            .iter()
            .map(AsRef::as_ref)
            .collect()
    }

    pub fn include_tags(&self, location: Option<Location>) -> Vec<&str> {
        if let Some(l) = location {
            let list = match l {
                Location::Global => &self.global.include,
                Location::Local => &self.local.include,
            };

            return list.iter().map(AsRef::as_ref).collect();
        }

        let mut result: Vec<&str> = Vec::new();
        result.extend(
            &self
                .local
                .include
                .iter()
                .map(AsRef::as_ref)
                .collect::<Vec<&str>>(),
        );

        result.extend(
            &self
                .global
                .include
                .iter()
                .map(AsRef::as_ref)
                .collect::<Vec<&str>>(),
        );

        result
    }

    pub fn exclude_tags(&self, location: Option<Location>) -> Vec<&str> {
        if let Some(l) = location {
            let list = match l {
                Location::Global => &self.global.exclude,
                Location::Local => &self.local.exclude,
            };

            return list.iter().map(AsRef::as_ref).collect();
        }

        let mut result: Vec<&str> = Vec::new();
        result.extend(
            &self
                .local
                .exclude
                .iter()
                .map(AsRef::as_ref)
                .collect::<Vec<&str>>(),
        );

        result.extend(
            &self
                .global
                .exclude
                .iter()
                .map(AsRef::as_ref)
                .collect::<Vec<&str>>(),
        );

        result
    }

    // --------------------------------------------------------------------------------------------
    // Set functions for config command

    pub fn set_root(&mut self, raw: &str, path: PathBuf, location: Option<Location>) {
        if let Some(l) = location {
            if l == Location::Local {
                self.local.root_str = Some(raw.to_owned());
                self.local.root = Some(path);
                return;
            }
        }

        self.global.root = Some(path);
        self.global.root_str = Some(raw.to_owned());
    }

    pub fn set_cli(&mut self, value: bool, location: Option<Location>) {
        if let Some(l) = location {
            if l == Location::Local {
                self.local.cli = Some(value);
                return;
            }
        }

        self.global.cli = Some(value);
    }

    pub fn set_host(&mut self, host: &str, location: Option<Location>) {
        if let Some(l) = location {
            if l == Location::Local {
                self.local.host = Some(host.to_owned());
                return;
            }
        }

        self.global.host = Some(host.to_owned());
    }

    pub fn set_ssh(&mut self, ssh: &str, location: Option<Location>) {
        if let Some(l) = location {
            if l == Location::Local {
                self.local.ssh_user = Some(ssh.to_owned());
                return;
            }
        }

        self.global.ssh_user = Some(ssh.to_owned());
    }

    pub fn set_scheme(&mut self, scheme: Scheme, location: Option<Location>) {
        if let Some(l) = location {
            if l == Location::Local {
                self.local.scheme = Some(scheme);
                return;
            }
        }

        self.global.scheme = Some(scheme);
    }

    pub fn set_shell(&mut self, shell: &str, location: Option<Location>) {
        let split = shell.split_whitespace();
        let list: Vec<String> = split.map(String::from).collect();

        if let Some(l) = location {
            if l == Location::Local {
                self.local.shell = Some(list);
                return;
            }
        }

        self.global.shell = Some(list);
    }

    pub fn add_include_tag(&mut self, tag: &str, location: Option<Location>) -> bool {
        if let Some(l) = location {
            if l == Location::Local {
                return self.local.include.insert(tag.to_owned());
            }
        }

        self.global.include.insert(tag.to_owned())
    }

    pub fn remove_include_tag(&mut self, tag: &str, location: Option<Location>) -> bool {
        if let Some(l) = location {
            if l == Location::Local {
                return self.local.include.remove(tag);
            }
        }

        self.global.include.remove(tag)
    }

    pub fn add_exclude_tag(&mut self, tag: &str, location: Option<Location>) -> bool {
        if let Some(l) = location {
            if l == Location::Local {
                return self.local.exclude.insert(tag.to_owned());
            }
        }

        self.global.exclude.insert(tag.to_owned())
    }

    pub fn remove_exclude_tag(&mut self, tag: &str, location: Option<Location>) -> bool {
        if let Some(l) = location {
            if l == Location::Local {
                return self.local.exclude.remove(tag);
            }
        }

        self.global.exclude.remove(tag)
    }

    pub fn write(&self, location: Option<Location>) -> Result<()> {
        let data = match location {
            Some(l) => match l {
                Location::Global => &self.global,
                Location::Local => &self.local,
            },
            None => &self.global,
        };

        let path = data.path.as_ref().unwrap();
        let file = path.join("config.toml");

        let ser = data.to_string_pretty()?;

        debug!("Writing config to disk: {}", path.display());
        util::write_content(&file, |f| {
            f.write_fmt(format_args!("{}", ser))
                .context(format!("failed to write file: {:#?}", file))
                .map_err(Into::into)
        })
    }
}