-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
107 lines (100 loc) · 2.85 KB
/
index.js
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
#!/usr/bin/env node
const { readdirSync } = require("fs");
const term = require("terminal-kit").terminal;
const fs = require("fs");
const path = require("path");
const helper = require("./lib/helper");
const ora = require("ora");
const color = require("chalk");
const spinner = ora("Looking for git repositories");
const os = require("check-os");
let choice = process.argv[3];
let command = process.argv[2];
if (!command) {
console.log("");
console.log("How to use checkgit:");
console.log("");
console.log(" $ checkgit --help");
console.log(" $ checkgit -h");
console.log(" $ checkgit -g E:");
console.log(" $ checkgit -g ../");
process.exit();
} else {
helper();
}
/**
* @param {String} dir
* @param {Function} done
*/
function checkGit(dir, done) {
spinner.start();
let results = [];
fs.readdir(dir, function(err, list) {
if (err) return done(err);
var pending = list.length;
if (!pending) return done(null, results);
list.forEach(function(file) {
file = path.resolve(dir, file);
fs.stat(file, function(err, stat) {
if (stat && stat.isDirectory() && !file.includes("node_modules")) {
readdirSync(file).find(f => {
if (f === ".git" && !results.includes(file)) {
results.push(file);
}
});
checkGit(file, function(err, res) {
if (res === ".git" && !results.includes(file)) {
results = results.concat(res);
}
if (!--pending) done(null, results);
});
} else {
if (!--pending) done(null, results);
}
});
});
});
}
if (choice) {
helper();
if (os.isWindows) {
(!choice.startsWith(".") && !choice.includes(":\\")) || choice.endsWith(":")
? (choice = choice.replace(/:/gi, "\\").replace("\\", ":\\"))
: choice;
} else {
choice = choice;
}
process.argv.slice(2).forEach(function(cmd) {
if (cmd === "-g" || cmd === "--git") {
checkGit(choice, async function(err, data) {
try {
if (data && data.length > 0) {
spinner.succeed("done");
console.log("\n");
console.log(
`Found ${color.green(data.length)} git repos under ${color.yellow(
choice
)}`
);
spinner.stop();
term.gridMenu(data, function(error, response) {
term("\n").eraseLineAfter.green(response.selectedText);
console.log("\n");
process.exit();
});
} else {
spinner.stop();
term.red(`no git repos found under ${choice}`);
console.log("\n");
process.exit();
}
} catch (error) {
spinner.stop();
term.red(`Invalid path`);
console.log("\n");
process.exit();
}
});
}
});
}