forked from jiachengxu/leetdoad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
67 lines (60 loc) · 1.61 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
package main
import (
"flag"
"fmt"
"net/http"
"time"
"github.com/jiachengxu/leetdoad/pkg/config"
"github.com/jiachengxu/leetdoad/pkg/scraper"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
)
var (
version = "dev"
commit = ""
date = ""
goVersion = ""
website = "https://github.com/jiachengxu/leetdoad"
)
func printVersion() {
fmt.Printf(`leetdoad version: %s
commit: %s
built at: %s
go version: %s
%s
`, version, commit, date, goVersion, website)
}
type flags struct {
configFilePath string
cookie string
debug bool
version bool
header bool
}
func main() {
f := flags{}
flag.StringVar(&f.configFilePath, "config-file", ".leetdoad.yaml", "Path of the leetdoad config file")
flag.StringVar(&f.cookie, "cookie", "", "Cookie that used for scraping problems and solutions from Leetcode website, you can either pass it from here, or set LEETCODE_COOKIE env")
flag.BoolVar(&f.debug, "debug", false, "Debug logs")
flag.BoolVar(&f.version, "version", false, "Show the current leetdoad version")
flag.BoolVar(&f.header, "header", false, "Add LeetCode VSCode extension header")
flag.Parse()
if f.version {
printVersion()
return
}
zerolog.SetGlobalLevel(zerolog.InfoLevel)
if f.debug {
zerolog.SetGlobalLevel(zerolog.DebugLevel)
}
cfg, err := config.GetConfig(f.configFilePath, f.cookie)
if err != nil {
log.Fatal().Msgf("failed to get config: %s", err.Error())
}
client := http.Client{
Timeout: 5 * time.Second,
}
if err := scraper.NewScraper(client, cfg, f.header).Scrape(); err != nil {
log.Fatal().Msgf("failed to scrape solutions: %s", err.Error())
}
}