-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsave.go
84 lines (71 loc) · 1.85 KB
/
save.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
package leet
import (
"fmt"
"io/ioutil"
"os"
"path"
)
type Localization struct {
TitleSlug string `json:"title_slug"`
QuestionID string `json:"question_id"`
Title string `json:"title"`
Difficulty string `json:"difficulty"`
Question string `json:"question"`
CodeSnippets []CodeSnippet `json:"code_snippets"`
SampleTestCase string `json:"sample_test_case"`
SaveDirs []string `json:"save_dirs"`
}
func (th *Localization) Save(override bool) {
for _, dir := range th.SaveDirs {
err := os.MkdirAll(dir, 0755)
if err != nil {
continue
}
// todo 图片不允许外链时,下载图片到本地
err = ioutil.WriteFile(
path.Join(dir, "README.md"),
[]byte(th.Question),
0755)
if err != nil {
return
}
for _, snippet := range th.CodeSnippets {
saveDir := path.Join(dir, snippet.LangSlug)
// 已存在不重新获取,除非强制
if f, err := os.Stat(saveDir); err == nil && f.IsDir() && !override {
fmt.Println("--------", snippet.LangSlug, "-------")
fmt.Println("是否覆盖: ", override)
fmt.Println("语言: ", snippet.LangSlug)
fmt.Println("题目已经存在: ", dir)
continue
}
so := SaveOption{
SaveDir: saveDir,
Title: th.Title,
TitleSlug: th.TitleSlug,
Difficulty: th.Difficulty,
Question: th.Question,
CodeSnippet: snippet.Code,
SampleTestCase: th.SampleTestCase,
Language: snippet.LangSlug,
}
err := so.SaveQuestion()
if err != nil {
fmt.Println(err)
}
}
}
}
type SaveOption struct {
SaveDir, Title, TitleSlug,
Difficulty, Question, CodeSnippet,
SampleTestCase, Language string
}
func (th SaveOption) SaveQuestion() (err error) {
switch th.Language {
case "golang":
return th.golang()
// todo other language
}
return
}