This repository has been archived by the owner on Jun 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
export.go
203 lines (178 loc) · 4.18 KB
/
export.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
package main
type Export int
func (e *Export) GetPrevArticleName(name string) string {
return TattooDB.GetPrevArticleName(name)
}
func (e *Export) GetNextArticleName(name string) string {
return TattooDB.GetNextArticleName(name)
}
func (e *Export) GetPrevTLPos(offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
prev := offset - count
if prev < 0 {
return 0
}
if prev > TattooDB.GetArticleCount()-1 {
return TattooDB.GetArticleCount() - 1
}
return prev
}
func (e *Export) GetNextTLPos(offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
next := offset + count
if next < GetConfig().TimelineCount {
return 0
}
total := TattooDB.GetArticleCount()
if next > total-1 {
return total - 1
}
return next
}
func (e *Export) GetPrevPageTLPos(offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
prev := offset - count
if prev < 0 {
return 0
}
if prev > TattooDB.GetArticleCount()-1 {
return TattooDB.GetArticleCount() - 1
}
return prev
}
func (e *Export) GetNextPageTLPos(offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
next := offset + count
if next < GetConfig().TimelineCount {
return 0
}
total := TattooDB.GetArticleCount()
if next > total-1 {
return total - 1
}
return next
}
func (e *Export) GetPrevCommentTLPos(offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
prev := offset - count
if prev < 0 {
return 0
}
total := TattooDB.GetCommentCount()
if prev > total-1 {
return total - 1
}
return prev
}
func (e *Export) GetNextCommentTLPos(offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
next := offset + count
if next < GetConfig().TimelineCount {
return 0
}
total := TattooDB.GetCommentCount()
if next > total-1 {
return total - 1
}
return next
}
func (e *Export) GetPrevTagTLPos(name string, offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
prev := offset - count
if prev < 0 {
return 0
}
total := TattooDB.GetTagArticleCount(name)
if prev > total-1 {
return total - 1
}
return prev
}
func (e *Export) GetNextTagTLPos(name string, offset int, count int) int {
if count <= 0 {
count = GetConfig().TimelineCount
}
next := offset + count
if next < GetConfig().TimelineCount {
return 0
}
total := TattooDB.GetTagArticleCount(name)
if next > total-1 {
return total - 1
}
return next
}
func (e *Export) GetCommentTimeline(offset int, count int) []*Comment {
comments, _ := TattooDB.GetCommentTimeline(offset, count)
return comments
}
func (e *Export) GetArticleCommentCount(name string) int {
return TattooDB.GetArticleCommentCount(name)
}
func (e *Export) GetArticleTimeline(offset int, count int) []*Article {
articles, _ := TattooDB.GetArticleTimeline(offset, count)
return articles
}
func (e *Export) GetArticleTimelineByTag(offset int, count int, tag string) []*Article {
articles, _ := TattooDB.GetArticleTimelineByTag(offset, count, tag)
return articles
}
func (e *Export) GetPageTimeline(offset int, count int) []*Article {
pages, _ := TattooDB.GetPageTimeline(offset, count)
return pages
}
func (e *Export) GetArticle(name string) *Article {
article, _ := TattooDB.GetArticleFull(name)
return article
}
func (e *Export) GetArticleComments(name string) []*Comment {
return TattooDB.GetComments(name)
}
func (e *Export) GetArticleMetadata(name string) *ArticleMetadata {
meta, _ := TattooDB.GetMeta(name)
return meta
}
func (e *Export) GetArticleTags(name string) []string {
meta, err := TattooDB.GetMeta(name)
if err != nil {
return []string{}
}
return meta.Tags
}
func (e *Export) GetTagList(count int) []TagWrapper {
ret := TattooDB.GetTags()
if len(ret) < count {
return ret
}
return ret[0:count]
}
func (e *Export) GetRootURL() string {
ret, _ := TattooDB.GetVar("RootURL")
return ret
}
func (e *Export) GetThemeURL() string {
ret, _ := TattooDB.GetVar("ThemeURL")
return ret
}
func (e *Export) GetThemeStaticURL() string {
ret, _ := TattooDB.GetVar("ThemeStaticURL")
return ret
}
func (e *Export) GetSystemStaticURL() string {
ret, _ := TattooDB.GetVar("SystemStaticURL")
return ret
}