-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdownload.go
123 lines (107 loc) · 4.09 KB
/
download.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
package leet
import (
"fmt"
"html"
"path"
"strings"
"github.com/lunny/html2md"
)
type QuestionDetail struct {
Data struct {
Question Question `json:"question"`
} `json:"data"`
}
type Question struct {
QuestionID string `json:"questionId"`
QuestionFrontendID string `json:"questionFrontendId"`
BoundTopicID int `json:"boundTopicId"`
Title string `json:"title"`
TitleSlug string `json:"titleSlug"`
Content string `json:"content"`
TranslatedTitle string `json:"translatedTitle"`
TranslatedContent string `json:"translatedContent"`
IsPaidOnly bool `json:"isPaidOnly"`
Difficulty string `json:"difficulty"`
Likes int `json:"likes"`
Dislikes int `json:"dislikes"`
IsLiked interface{} `json:"isLiked"`
SimilarQuestions string `json:"similarQuestions"`
Contributors []interface{} `json:"contributors"`
LangToValidPlayground string `json:"langToValidPlayground"`
TopicTags []struct {
Name string `json:"name"`
Slug string `json:"slug"`
TranslatedName string `json:"translatedName"`
Typename string `json:"__typename"`
} `json:"topicTags"`
CompanyTagStats interface{} `json:"companyTagStats"`
CodeSnippets []CodeSnippet `json:"codeSnippets"`
Stats string `json:"stats"`
Hints []interface{} `json:"hints"`
Solution interface{} `json:"solution"`
Status interface{} `json:"status"`
SampleTestCase string `json:"sampleTestCase"`
MetaData string `json:"metaData"`
JudgerAvailable bool `json:"judgerAvailable"`
JudgeType string `json:"judgeType"`
MysqlSchemas []interface{} `json:"mysqlSchemas"`
EnableRunCode bool `json:"enableRunCode"`
EnvInfo string `json:"envInfo"`
Book interface{} `json:"book"`
IsSubscribed bool `json:"isSubscribed"`
IsDailyQuestion bool `json:"isDailyQuestion"`
DailyRecordStatus interface{} `json:"dailyRecordStatus"`
EditorType string `json:"editorType"`
UgcQuestionID interface{} `json:"ugcQuestionId"`
Style string `json:"style"`
Typename string `json:"__typename"`
}
type CodeSnippet struct {
Lang string `json:"lang"`
LangSlug string `json:"langSlug"`
Code string `json:"code"`
Typename string `json:"__typename"`
}
func (th *QuestionDetail) Download(override bool) {
questionMarkdown := html.UnescapeString(html2md.Convert(th.Data.Question.TranslatedContent))
question := fmt.Sprintf(`## [%s](%s)
%s`,
th.Data.Question.TranslatedTitle,
fmt.Sprintf("https://leetcode-cn.com/problems/%s/", th.Data.Question.TitleSlug),
questionMarkdown)
var tags []string
for _, topicTag := range th.Data.Question.TopicTags {
tags = append(tags, topicTag.TranslatedName)
}
difficulty := strings.ToLower(th.Data.Question.Difficulty)
// var difficulty string
// switch strings.ToLower(th.Data.Question.Difficulty) {
// case "easy":
// difficulty = "easy"
// case "hard":
// difficulty = "hard"
// case "medium":
// difficulty = "medium"
// }
localization := Localization{
TitleSlug: th.Data.Question.TitleSlug,
QuestionID: th.Data.Question.QuestionID,
Title: th.Data.Question.TranslatedTitle,
Difficulty: difficulty,
Question: question,
CodeSnippets: th.Data.Question.CodeSnippets,
SampleTestCase: th.Data.Question.SampleTestCase,
}
baseDir := "questions"
var saveDirs []string
// 按题号
saveDirs = append(saveDirs, path.Join(baseDir, "serial", difficulty, localization.QuestionID))
// 按标签
for _, tag := range tags {
saveDirs = append(saveDirs, path.Join(baseDir, "tags", tag, difficulty, localization.TitleSlug))
}
// 待保存问题的目录列表
localization.SaveDirs = saveDirs
localization.Save(override)
UpdateQuestionInfo(th.Data.Question, localization)
}