-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathmain.go
213 lines (164 loc) · 4.35 KB
/
main.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
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
package main
import (
"fmt"
"os"
"github.com/umutphp/awesome-cli/internal/package/favourite"
"github.com/umutphp/awesome-cli/internal/package/fetcher"
"github.com/umutphp/awesome-cli/internal/package/manager"
"github.com/umutphp/awesome-cli/internal/package/progress"
"github.com/umutphp/awesome-cli/internal/package/prompter"
"github.com/umutphp/awesome-cli/internal/package/selfupdate"
)
const (
// CACHE_KEY is the name of the cache folder
CACHE_KEY = "awesome"
// VERSION of the cli
VERSION = "0.7.6"
)
func main() {
args := os.Args[1:]
manager := manager.New()
manager.Initialize()
fmt.Println("awesome-cli Version", VERSION)
if len(args) > 0 {
Argumented(args, manager)
return
}
Walk(manager)
}
func DisplayHelp() {
fmt.Println("")
fmt.Println("Options of awesome-cli:")
fmt.Printf("%-2v%-10v%-10v\n", "", "help", "To print this screen.")
fmt.Printf("%-2v%-10v%-10v\n", "", "random", "To go to a random awesome content.")
fmt.Printf("%-2v%-10v%-10v\n", "", "surprise", "To go to a surprise awesome content according to your previos choices.")
fmt.Printf("%-2v%-10v%-10v\n", "", "profile", "To see your previous choices.")
fmt.Printf("%-2v%-10v%-10v\n", "", "reset", "To clean your choices to start from the beginning.")
fmt.Printf("%-2v%-10v%-10v\n", "", "update", "Update awesome-cli to the latest version.")
fmt.Printf("%-2v%-10v%-10v\n", "", "cache", "Download all repository information to the cache.")
fmt.Println("")
fmt.Println("")
}
func RandomRepo(man manager.Manager) {
rpwd, url := prompter.Random(&man)
DisplayRepoWithPath(url, rpwd)
}
func SurpriseRepo(man manager.Manager) {
favourites := favourite.NewFromCache(CACHE_KEY)
if len(favourites.GetChildren()) == 0 {
RandomRepo(man)
}
category := favourites.GetRandom()
subcategory := category.GetRandom()
rpwd, url := prompter.Surprise(&man, category.GetName(), subcategory.GetName())
DisplayRepoWithPath(url, rpwd)
}
func Reset(man manager.Manager) {
favourites := favourite.New(CACHE_KEY)
favourites.SaveCache()
fmt.Println("The choice list has been cleared.")
}
func Profile(man manager.Manager) {
favourites := favourite.NewFromCache(CACHE_KEY)
fmt.Println("")
fmt.Println("Your choices:")
for _, category := range favourites.GetChildren() {
fmt.Println("", category.GetName())
for _, subcategory := range category.GetChildren() {
fmt.Println(" ", subcategory.GetName())
}
}
fmt.Println("")
}
func DisplayRepoWithPath(url string, path []string) {
for _, str := range path {
fmt.Println(str)
}
fmt.Println(url)
prompter.OpenInBrowser(url)
}
func CacheAll() {
fmt.Println("Downloading all reachable lists to cache.")
fmt.Println("This may take some time!")
updates := make(chan fetcher.Progress)
done := make(chan struct{})
go progress.ProgressBar(done, updates)
finalResult, errs := fetcher.FetchAllRepos(updates)
<-done
fmt.Print("\n")
fmt.Printf("Downloaded %d / Failed %d\n", finalResult.Crawled, finalResult.Errors)
if finalResult.Errors > 0 {
fmt.Println(errs)
}
}
func Argumented(param []string, man manager.Manager) {
if param[0] == "random" {
RandomRepo(man)
return
}
if param[0] == "surprise" {
SurpriseRepo(man)
return
}
if param[0] == "help" {
DisplayHelp()
return
}
if param[0] == "reset" {
Reset(man)
return
}
if param[0] == "profile" {
Profile(man)
return
}
if param[0] == "update" {
if err := selfupdate.Update(VERSION); err != nil {
fmt.Printf("Update failed: %s\n", err)
}
return
}
if param[0] == "cache" {
CacheAll()
return
}
}
func Walk(man manager.Manager) {
cursor := man.Root
i := 0
favourites := favourite.NewFromCache(CACHE_KEY)
firstsel := ""
for {
prompt := prompter.Create(cursor.Name, cursor)
_, selected, err := prompt.Run()
if err != nil {
fmt.Printf("Prompt failed %v\n", err)
return
}
prompter.ExecuteSelection(selected, &man)
// Where we are in the three
cursor = man.GetPWD()
// First selection
if i == 0 {
firstsel = selected
favourites.Add(favourite.New(selected))
}
// Second selection
if i == 1 {
f := favourites.GetChild(firstsel)
f.Add(favourite.New(selected))
}
i++
// Awesome tree has only three level depth
if i > 3 {
break
}
}
fmt.Println(cursor.GetURL())
favourites.SaveCache()
prompter.OpenInBrowser(cursor.GetURL())
walking := prompter.PromptToContinue()
if walking == "y" {
Walk(man)
}
}