-
Notifications
You must be signed in to change notification settings - Fork 7
/
log.go
52 lines (39 loc) · 854 Bytes
/
log.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
// Copyright 2014 Tim Shannon. All rights reserved.
// Use of this source code is governed by the MIT license
// that can be found in the LICENSE file.
package main
import (
"net/http"
"bitbucket.org/tshannon/freehold/log"
"bitbucket.org/tshannon/freehold/permission"
)
type logInput struct {
Iter *log.Iter `json:"iter,omitempty"`
}
func logGet(w http.ResponseWriter, r *http.Request) {
auth, err := authenticate(w, r)
if errHandled(err, w, auth) {
return
}
if !permission.Log().CanRead(auth.User) {
four04(w, r)
return
}
input := &logInput{}
err = parseJSON(r, input)
if errHandled(err, w, auth) {
return
}
if input.Iter == nil {
input.Iter = &log.Iter{}
}
logs, err := log.Get(input.Iter)
if errHandled(err, w, auth) {
return
}
respondJsend(w, &JSend{
Status: statusSuccess,
Data: logs,
})
return
}