This repository was archived by the owner on Nov 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscan.go
163 lines (135 loc) · 3.81 KB
/
scan.go
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
package main
import (
"bufio"
"fmt"
"io"
"io/ioutil"
"log"
"os"
"os/user"
"strings"
)
// func dumpStringsSliceToFile overwrites existing content in file_path with given contant
func dumpStringsSliceToFile(final_repos []string, file_path string) {
content := strings.Join(final_repos, "\n")
ioutil.WriteFile(file_path, []byte(content), 0755)
}
// func sliceContains checks if a string is present in given slice
func sliceContains(slice []string, value string) bool {
for _, v := range slice {
if v == value {
return true
}
}
return false
}
// func joinSlices add elements of new slice to olde slice,
// only if it does not already exist in old
func joinSlices(new_slice []string, old_slice []string) []string {
for _, i := range new_slice {
if !sliceContains(old_slice, i) {
old_slice = append(old_slice, i)
}
}
return old_slice
}
// func openFile returns a files object given a file path
// creates the file if it does not exist already
func openFile(file_path string) *os.File {
f, err := os.OpenFile(file_path, os.O_RDWR|os.O_APPEND, 0660)
if err != nil {
if os.IsNotExist(err) {
// file does not exist
_, err = os.Create(file_path)
if err != nil {
panic(err)
}
} else {
// some other error
panic(err)
}
}
return f
}
// func parseFileLinesToSlice given a file path string, get each line
// and stores it in a slice
func parseFileLinesToSlice(file_path string) []string {
f := openFile(file_path)
defer f.Close()
var lines []string
scanner := bufio.NewScanner(f)
for scanner.Scan() {
lines = append(lines, scanner.Text())
}
err := scanner.Err()
if err != nil && err != io.EOF {
panic(err)
}
return lines
}
// func addNewSliceElementsToFile given a slice of strings representing paths,
// stores them to the filesystem
func addNewSliceElementsToFile(file_path string, new_repos []string){
old_repos := parseFileLinesToSlice(file_path)
final_repos := joinSlices(old_repos, new_repos)
dumpStringsSliceToFile(final_repos, file_path)
}
// func scanGitFolders returns list of subfolders of `folder` ending with `.git`
// Returns base folder of the repo, the `.git` folder parent
// Recursively searches in the subfolders by passing an existing `folders` slice.
func scanGitFolders(folders []string, folder string) []string {
// trim the last `/`
folder = strings.TrimSuffix(folder, "/")
f, err := os.Open(folder)
if err != nil {
log.Fatal(err)
}
files, err := f.Readdir(-1)
f.Close()
if err != nil {
log.Fatal(err)
}
var path string
for _, file := range files {
if file.IsDir() {
path = folder + "\\" + file.Name()
if file.Name() == ".git" {
path = strings.TrimSuffix(path, ".git")
fmt.Printf(path)
fmt.Printf("\n\n")
folders = append(folders, path)
continue
}
// skip vendor and node_modules folders because they contain lots of files
// and generally aren't git repositories
if file.Name() == "vendor" || file.Name() == "node_modules" {
continue
}
folders = scanGitFolders(folders, path)
}
}
return folders
}
// func recursiveScanFolder starts the recursive search for git repositories
// living in the `folder` subtree
func recursiveScanFolder(folder string) []string {
return scanGitFolders(make([]string, 0), folder);
}
// func getDotFilePath returns dot file fot the repos list.
// Creates it and the enclosing folder if it does not exist.
func getDotFilePath() string {
current_user, err := user.Current()
if err != nil {
log.Fatal(err)
}
dot_file := current_user.HomeDir + "\\.gogitlocalstats"
return dot_file
}
// func scan: scans a new folder for Git repositories
func scan(folder string){
fmt.Printf("Found folders:\n\n")
repositories_list := recursiveScanFolder(folder)
dot_file_path := getDotFilePath()
addNewSliceElementsToFile(dot_file_path, repositories_list)
fmt.Printf("\n\nSuccessfully added\n\n")
}