-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjustlog_api.go
426 lines (380 loc) · 9.22 KB
/
justlog_api.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
package justgrep
import (
"bufio"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"log"
"net/http"
"net/url"
"os"
"strconv"
"strings"
"time"
)
type JustlogAPI interface {
// MakeURL creates a URL to download the data from justlog
MakeURL(date time.Time) string
// NextLogFile is deprecated. It returns currentDate.Add(api.GetApproximateOffset)
NextLogFile(currentDate time.Time) time.Time
// GetApproximateOffset describes roughly how often new files are made in justlog for this api.
// This function shouldn't be treated as anything more than a UI suggestion, use GetAvailableLogs for precise data
// instead
GetApproximateOffset() time.Duration
// GetAvailableLogs fetches logs available from justlog
GetAvailableLogs(ctx context.Context, client *http.Client) (LogsList, error)
}
type ProgressState struct {
TotalResults []int `json:"total_results"`
CountLines int `json:"count_lines"`
CountBytes int `json:"count_bytes"`
BeginTime time.Time `json:"begin_time"`
}
func fetch(ctx context.Context, url string, client *http.Client, output chan *Message, progress *ProgressState) error {
req, err := http.NewRequestWithContext(ctx, "GET", url, nil)
if err != nil {
return err
}
req.Header.Set("User-Agent", UserAgent)
resp, err := client.Do(req)
if err != nil {
return err
}
if resp.StatusCode != 200 {
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
if scanner.Scan() {
return errors.New(fmt.Sprintf("justlog instance responded with %d: %q", resp.StatusCode, scanner.Text()))
}
return errors.New(fmt.Sprintf("justlog instance responded with unexpected %d status code", resp.StatusCode))
}
go func() {
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
for scanner.Scan() {
msg, err := NewMessage(scanner.Text())
progress.CountLines += 1
if err != nil {
output <- nil
_, _ = fmt.Fprintf(os.Stderr, "Error while fetching from %s: %s\n", url, err)
break
}
progress.CountBytes += len(msg.Raw)
output <- msg
if ctx.Err() != nil {
break
}
}
close(output)
}()
return nil
}
func FetchForDate(
ctx context.Context,
api JustlogAPI,
date time.Time,
output chan *Message,
progress *ProgressState,
client *http.Client,
) (time.Time, error) {
u := api.MakeURL(date)
err := fetch(ctx, u, client, output, progress)
if err != nil {
return time.Time{}, err
} else {
return api.NextLogFile(date), nil
}
}
func FetchForLogEntry(
ctx context.Context,
api JustlogAPI,
logs AvailableLogEntry,
output chan *Message,
progress *ProgressState,
client *http.Client,
) error {
_, err := FetchForDate(ctx, api, logs.ToDate(), output, progress, client)
return err
}
type UserJustlogAPI struct {
JustlogAPI
Channel string
User string
URL string
IsId bool
}
func (api UserJustlogAPI) NextLogFile(currentDate time.Time) time.Time {
return currentDate.AddDate(0, -1, 0)
}
func (api UserJustlogAPI) MakeURL(date time.Time) string {
if api.IsId {
return fmt.Sprintf(
"%s/channel/%s/userid/%s/%d/%d?raw&reverse",
api.URL,
api.Channel,
api.User,
date.Year(),
date.Month(),
)
}
return fmt.Sprintf(
"%s/channel/%s/user/%s/%d/%d?raw&reverse",
api.URL,
api.Channel,
api.User,
date.Year(),
date.Month(),
)
}
func (api UserJustlogAPI) GetApproximateOffset() time.Duration {
return time.Hour * 24 * 30
}
type ChannelJustlogAPI struct {
JustlogAPI
Channel string
URL string
}
func (api ChannelJustlogAPI) NextLogFile(currentDate time.Time) time.Time {
return currentDate.AddDate(0, 0, -1)
}
func (api ChannelJustlogAPI) MakeURL(date time.Time) string {
return fmt.Sprintf(
"%s/channel/%s/%d/%d/%d?raw&reverse",
api.URL,
api.Channel,
date.Year(),
date.Month(),
date.Day(),
)
}
type channelsResp struct {
Channels []struct {
UserID string `json:"userID"`
Name string `json:"name"`
} `json:"channels"`
}
func GetChannelsFromJustLog(ctx context.Context, client *http.Client, url string) ([]string, error) {
req, err := http.NewRequestWithContext(ctx, "GET", url+"/channels", nil)
if err != nil {
return nil, err
}
req.Header.Set("User-Agent", UserAgent)
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
output := channelsResp{}
err = json.NewDecoder(resp.Body).Decode(&output)
if err != nil {
return nil, err
}
channels := make([]string, 0, 32)
for _, channel := range output.Channels {
channels = append(channels, channel.Name)
}
return channels, nil
}
// AvailableLogEntry describes an element from justlog's /list api array
type AvailableLogEntry struct {
RawYear string `json:"year"`
RawMonth string `json:"month"`
// Only for /list without a user
RawDay string `json:"day"`
Year int
Month int
// As with RawDay, Day only makes sense for non-user logs, otherwise will be 0
Day int
}
func (l *AvailableLogEntry) Parse() error {
if l.Year != 0 {
return nil
}
year, err := strconv.ParseInt(l.RawYear, 10, 64)
if err != nil {
return err
}
month, err := strconv.ParseInt(l.RawMonth, 10, 64)
if err != nil {
return err
}
l.Year = int(year)
l.Month = int(month)
if l.RawDay != "" {
day, err := strconv.ParseInt(l.RawDay, 10, 64)
if err != nil {
return err
}
l.Day = int(day)
}
return nil
}
// ToDate converts the AvailableLogEntry to a time.Time with 0 seconds past midnight on the day (or the first of the month).
// It may panic if Parse() wasn't called before and parsing fails
func (l *AvailableLogEntry) ToDate() time.Time {
if err := l.Parse(); err != nil {
log.Panicf(
"Unexpectidly errored while converting a log entry to a date: %s, "+
"call justgrep.AvailableLogEntry.Parse() explicitly to avoid this",
err,
)
}
day := l.Day
if l.Day == 0 {
day = 1
}
return time.Date(
l.Year,
time.Month(l.Month),
day,
0,
0,
0,
0,
time.UTC,
)
}
type availableLogsResponse struct {
AvailableLogs []AvailableLogEntry `json:"availableLogs"`
}
type LogsList []AvailableLogEntry
func (l LogsList) EnsureParsed() error {
for i, logs := range l {
err := logs.Parse()
if err != nil {
return err
}
// copy by value in iterator?
l[i] = logs
}
return nil
}
func (l LogsList) Snip(early time.Time, late time.Time) (LogsList, error) {
if early.After(late) {
log.Panicf("THIS SHOULD NOT HAPPEN, early > late: %#v > %#v!!!", early, late)
}
err := l.EnsureParsed()
if err != nil {
return nil, err
}
out := LogsList{}
for _, logs := range l {
if logs.RawDay != "" { // will not be present on non-user requests
dayBegin := time.Date(
logs.Year,
time.Month(logs.Month),
logs.Day,
0,
0,
0,
0,
time.UTC,
)
dayEnd := dayBegin.AddDate(0, 0, 1).Add(-time.Second)
if fitsInRange(dayBegin, early, late) || fitsInRange(dayEnd, early, late) {
out = append(out, logs)
}
} else {
monthBegin := time.Date(
logs.Year,
time.Month(logs.Month),
1,
0,
0,
0,
0,
time.UTC,
)
monthEnd := monthBegin.AddDate(0, 1, 0).Add(-time.Second)
if fitsInRange(late, monthBegin, monthEnd) ||
fitsInRange(early, monthBegin, monthEnd) ||
fitsInRange(monthEnd, early, late) {
out = append(out, logs)
}
}
}
return out, nil
}
// fitsInRange checks if early < t < late
func fitsInRange(t time.Time, early time.Time, late time.Time) bool {
if t.After(late) {
return false
}
if t.Before(early) {
return false
}
return true
}
func (api ChannelJustlogAPI) GetAvailableLogs(ctx context.Context, client *http.Client) (LogsList, error) {
u, err := url.Parse(api.URL)
if err != nil {
return nil, err
}
list, _ := u.Parse("/list")
q := list.Query()
q.Add("channel", api.Channel)
list.RawQuery = q.Encode()
req, err := http.NewRequestWithContext(ctx, "GET", list.String(), nil)
if err != nil {
return nil, err
}
req.Header.Set("User-Agent", UserAgent)
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
errorBytes, _ := io.ReadAll(resp.Body)
errorMsg := string(errorBytes)
return nil, fmt.Errorf("%s: %s", resp.Status, strings.Trim(errorMsg, "\r\n"))
}
output := availableLogsResponse{}
err = json.NewDecoder(resp.Body).Decode(&output)
if err != nil {
return nil, err
}
return output.AvailableLogs, nil
}
func (api UserJustlogAPI) GetAvailableLogs(ctx context.Context, client *http.Client) (LogsList, error) {
u, err := url.Parse(api.URL)
if err != nil {
return nil, err
}
list, _ := u.Parse("/list")
q := list.Query()
q.Add("channel", api.Channel)
if api.IsId {
q.Add("userid", api.User)
} else {
q.Add("user", api.User)
}
list.RawQuery = q.Encode()
req, err := http.NewRequestWithContext(ctx, "GET", list.String(), nil)
if err != nil {
return nil, err
}
req.Header.Set("User-Agent", UserAgent)
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode != 200 {
errorBytes, _ := io.ReadAll(resp.Body)
errorMsg := string(errorBytes)
return nil, fmt.Errorf("%s: %s", resp.Status, strings.Trim(errorMsg, "\r\n"))
}
output := availableLogsResponse{}
err = json.NewDecoder(resp.Body).Decode(&output)
if err != nil {
return nil, err
}
return output.AvailableLogs, nil
}
func (api ChannelJustlogAPI) GetApproximateOffset() time.Duration {
return time.Hour * 24
}
var UserAgent = "justgrep/1.0 (log-searcher)"