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
use crate::config::CONFIG;
use crate::utils::repo_config::repo_config;
use serde_derive::Serialize;
use std::fs;
pub fn get_repos() -> Option<Vec<Repo>> {
let home = CONFIG.git_location.clone();
Some(sort_modified(
fs::read_dir(home.clone())
.ok()?
.filter(|path| path.is_ok())
.map(|path| path.unwrap())
.filter(|path| path.file_type().is_ok())
.filter(|path| path.file_type().unwrap().is_dir())
.filter(|path| path.metadata().is_ok())
.filter(|path| path.metadata().unwrap().modified().is_ok())
.map(|path| path.file_name().into_string())
.filter(|path| path.is_ok())
.map(|path| path.unwrap())
.filter(|path| !path.starts_with("."))
.filter(|path| path.ends_with(".git"))
.map(|path| {
let name = path[0..path.len() - 4].to_string();
Repo {
name: name.clone(),
description: repo_config(name).description.unwrap_or("".to_string()),
}
})
.collect::<Vec<Repo>>(),
))
}
#[derive(Serialize, Clone)]
pub struct Repo {
pub name: String,
pub description: String,
}
fn sort_modified(repos: Vec<Repo>) -> Vec<Repo> {
let mut repos = repos.clone();
let home = CONFIG.git_location.clone();
repos.sort_by(|a, b| {
let mut a_loc = home.clone();
a_loc.push(format!("{}.git", a.name));
let mut b_loc = home.clone();
b_loc.push(format!("{}.git", b.name));
b_loc
.metadata()
.unwrap()
.modified()
.unwrap()
.partial_cmp(&a_loc.metadata().unwrap().modified().unwrap())
.unwrap()
});
repos
}