forked from AlexiaAshford/pineapple-backups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
207 lines (184 loc) · 5.55 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
package main
import (
"fmt"
"github.com/AlexiaVeronica/pineapple-backups/pkg/config"
"log"
"os"
"strings"
"github.com/AlexiaVeronica/input"
"github.com/AlexiaVeronica/pineapple-backups/pkg/app"
"github.com/AlexiaVeronica/pineapple-backups/pkg/tools"
"github.com/urfave/cli"
)
var (
apps *app.APP
cmd = &commandLines{MaxThread: 32}
)
type commandLines struct {
BookID, Account, Password, SearchKey string
MaxThread int
Token, Login, ShowInfo, Update, Epub, BookShelf bool
}
const (
FlagAppType = "appType"
FlagDownload = "download"
FlagToken = "token"
FlagMaxThread = "maxThread"
FlagUser = "user"
FlagPassword = "password"
FlagUpdate = "update"
FlagSearch = "search"
FlagLogin = "login"
FlagEpub = "epub"
FlagBookShelf = "bookshelf"
)
func init() {
setupConfig()
apps = app.NewApp()
setupCLI()
setupTokens()
}
func setupConfig() {
if _, err := os.Stat("./config.json"); os.IsNotExist(err) {
fmt.Println("config.json does not exist, creating a new one!")
} else {
config.LoadConfig()
}
config.UpdateConfig()
}
func setupCLI() {
newCli := cli.NewApp()
newCli.Name = "pineapple-backups"
newCli.Version = "V.2.2.1"
newCli.Usage = "https://github.com/AlexiaVeronica/pineapple-backups"
newCli.Flags = defineFlags()
newCli.Action = validateAppType
if err := newCli.Run(os.Args); err != nil {
log.Fatal(err)
}
}
func defineFlags() []cli.Flag {
return []cli.Flag{
cli.StringFlag{Name: fmt.Sprintf("a, %s", FlagAppType), Value: app.BoluobaoLibAPP, Usage: "change app type", Destination: &apps.CurrentApp},
cli.StringFlag{Name: fmt.Sprintf("d, %s", FlagDownload), Usage: "book id", Destination: &cmd.BookID},
cli.BoolFlag{Name: fmt.Sprintf("t, %s", FlagToken), Usage: "input hbooker token", Destination: &cmd.Token},
cli.IntFlag{Name: fmt.Sprintf("m, %s", FlagMaxThread), Value: 16, Usage: "change max thread number", Destination: &cmd.MaxThread},
cli.StringFlag{Name: fmt.Sprintf("u, %s", FlagUser), Usage: "input account name", Destination: &cmd.Account},
cli.StringFlag{Name: fmt.Sprintf("p, %s", FlagPassword), Usage: "input password", Destination: &cmd.Password},
cli.BoolFlag{Name: FlagUpdate, Usage: "update book", Destination: &cmd.Update},
cli.StringFlag{Name: fmt.Sprintf("s, %s", FlagSearch), Usage: "search book by keyword", Destination: &cmd.SearchKey},
cli.BoolFlag{Name: fmt.Sprintf("l, %s", FlagLogin), Usage: "login local account", Destination: &cmd.Login},
cli.BoolFlag{Name: fmt.Sprintf("e, %s", FlagEpub), Usage: "start epub", Destination: &cmd.Epub},
cli.BoolFlag{Name: fmt.Sprintf("b, %s", FlagBookShelf), Usage: "show bookshelf", Destination: &cmd.BookShelf},
}
}
func validateAppType(c *cli.Context) {
if !isValidAppType(apps.CurrentApp) {
log.Fatalf("%s app type error", apps.CurrentApp)
}
}
func isValidAppType(appType string) bool {
return strings.Contains(appType, app.CiweimaoLibAPP) || strings.Contains(appType, app.BoluobaoLibAPP)
}
func setupTokens() {
apps.Ciweimao.SetToken(config.Apps.Hbooker.Account, config.Apps.Hbooker.LoginToken)
apps.Boluobao.Cookie = config.Apps.Sfacg.Cookie
}
func shellSwitch(inputs []string) {
if len(inputs) == 0 {
fmt.Println("No command provided.")
return
}
switch inputs[0] {
case "up", "update":
// Update function placeholder
case "a", "app":
handleAppSwitch(inputs)
case "d", "download":
handleDownload(inputs)
case "bs", "bookshelf":
apps.Bookshelf()
case "s", "search":
apps.SearchDetailed(inputs[1])
case "l", "login":
handleLogin(inputs)
case "t", "token":
apps.Ciweimao.SetToken(inputs[1], inputs[2])
default:
fmt.Println("command not found, please input help to see the command list:", inputs[0])
}
}
func handleAppSwitch(inputs []string) {
if len(inputs) < 2 {
fmt.Println("app type required. Example: app <type>")
return
}
if tools.TestList([]string{app.BoluobaoLibAPP, app.CiweimaoLibAPP}, inputs[1]) {
apps.CurrentApp = inputs[1]
} else {
fmt.Println("app type error, please input again.")
}
}
func handleDownload(inputs []string) {
if len(inputs) == 2 {
apps.DownloadBookByBookId(inputs[1])
} else {
fmt.Println("input book id or url, like: download <bookid/url>")
}
}
func handleLogin(inputs []string) {
if len(inputs) < 3 {
fmt.Println("you must input account and password, like: -login account password")
return
}
switch apps.CurrentApp {
case app.CiweimaoLibAPP:
apps.Ciweimao.SetToken(inputs[1], inputs[2])
case app.BoluobaoLibAPP:
loginStatus, err := apps.Boluobao.API().Login(inputs[1], inputs[2])
if err == nil {
apps.Boluobao.Cookie = loginStatus.Cookie
}
}
}
func shell(messageOpen bool) {
if messageOpen {
for _, message := range config.HelpMessage {
fmt.Println("[info]", message)
}
}
for {
inputRes := input.StringInput(">")
if len(inputRes) > 0 {
shellSwitch(strings.Split(inputRes, " "))
}
}
}
func main() {
if len(os.Args) > 1 {
handleCommandLine()
} else {
shell(true)
}
}
func handleCommandLine() {
switch {
case cmd.Login:
loginStatus, err := apps.Boluobao.API().Login(cmd.Account, cmd.Password)
if err == nil {
apps.Boluobao.Cookie = loginStatus.Cookie
}
case cmd.BookID != "":
apps.DownloadBookByBookId(cmd.BookID)
case cmd.SearchKey != "":
apps.SearchDetailed(cmd.SearchKey)
case cmd.Update:
// Update function placeholder
case cmd.Token:
apps.Ciweimao.SetToken(input.StringInput("Please input account:"), input.StringInput("Please input token:"))
case cmd.BookShelf:
apps.Bookshelf()
default:
fmt.Println("command not found, please input help to see the command list:", os.Args[1])
}
}