-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproblems.go
124 lines (104 loc) · 2.54 KB
/
problems.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
package store
import (
"encoding/json"
"fmt"
"time"
"github.com/boltdb/bolt"
)
const allProblemsKey = `leetcode.problems`
func UpdateProblems(info []QuestionStats) error {
private, err := privateDB()
if err != nil {
return err
}
defer private.Close()
return private.Update(func(tx *bolt.Tx) error {
b, err := tx.CreateBucketIfNotExists([]byte(allProblemsKey))
if err != nil {
return err
}
for _, stats := range info {
key := []byte(fmt.Sprint(stats.QuestionID))
err = b.Put(key, stats.Bytes())
}
return err
})
}
func ProblemsTTL(expireAt time.Time) error {
private, err := privateDB()
if err != nil {
return err
}
defer private.Close()
return private.Update(func(tx *bolt.Tx) error {
b, err := tx.CreateBucketIfNotExists([]byte(allProblemsKey))
if err != nil {
return err
}
key := []byte(fmt.Sprint("TTL"))
return b.Put(key, []byte(expireAt.Format(time.RFC3339)))
})
}
func ProblemInfoIsExpire() (ok bool, err error) {
private, err := privateDB()
if err != nil {
return
}
defer private.Close()
err = private.Update(func(tx *bolt.Tx) error {
b, err := tx.CreateBucketIfNotExists([]byte(allProblemsKey))
if err != nil {
return err
}
key := []byte(fmt.Sprint("TTL"))
data := b.Get(key)
if len(data) == 0 {
ok = false
return nil
}
t, err := time.Parse(time.RFC3339, string(data))
if err != nil {
return err
}
ok = time.Now().After(t)
return nil
})
return
}
func GetProblemsInfo(questionID string) (info QuestionStats, err error) {
private, err := privateDB()
if err != nil {
return
}
defer private.Close()
err = private.View(func(tx *bolt.Tx) error {
b := tx.Bucket([]byte(allProblemsKey))
if b == nil {
err = fmt.Errorf(`problem id: %s, not found`, questionID)
return err
}
data := b.Get([]byte(questionID))
if len(data) == 0 {
err = fmt.Errorf(`problem id: %s, not found`, questionID)
return err
}
err = json.Unmarshal(data, &info)
return err
})
return
}
type QuestionStats struct {
QuestionID int `json:"question_id"`
QuestionTitle string `json:"question__title"`
QuestionTitleSlug string `json:"question__title_slug"`
QuestionHide bool `json:"question__hide"`
TotalAcs int `json:"total_acs"`
TotalSubmitted int `json:"total_submitted"`
TotalColumnArticles int `json:"total_column_articles"`
FrontendQuestionID string `json:"frontend_question_id"`
IsNewQuestion bool `json:"is_new_question"`
}
func (th *QuestionStats) Bytes() []byte {
b, _ := json.Marshal(th)
return b
}