-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathquerier.go
241 lines (200 loc) · 4.96 KB
/
querier.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
package main
import (
"bytes"
"encoding/json"
"net"
"net/http"
"strconv"
"strings"
"sync/atomic"
"github.com/golang/glog"
"github.com/julienschmidt/httprouter"
)
type Querier struct {
data atomic.Value // Handlers / SetData
sema chan struct{} // Limited handlers
}
func NewQuerier(maxProcs int) *Querier {
if maxProcs < 1 {
maxProcs = 1
}
querier := &Querier{
sema: make(chan struct{}, maxProcs),
}
querier.SetData(new(archIndex))
return querier
}
func (qr *Querier) SetData(index *archIndex) {
if index != nil {
qr.data.Store(index)
}
}
func (qr *Querier) getData() *archIndex {
return qr.data.Load().(*archIndex)
}
func (qr *Querier) reply(w http.ResponseWriter, code int, val interface{}) {
// Currently just request browsers cache all responses for five minutes at most. It doesn't
// matter if the cached value is a few minutes old when dealing with search-able repodata
// from the browser.
w.Header().Set("Cache-Control", "public, max-age=300")
w.Header().Set("Content-Type", "application/json")
// Write an empty response
if val == nil {
w.Header().Set("Content-Length", "0")
w.WriteHeader(code)
return
}
// Encode response, write headers, then write body
var buf bytes.Buffer
switch err := json.NewEncoder(&buf).Encode(val).(type) {
case nil:
default:
glog.Warningf("unable to encode package result: %v", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Content-Length", strconv.Itoa(buf.Len()))
w.WriteHeader(code)
_, err := buf.WriteTo(w)
switch err.(type) {
case nil:
case net.Error:
// Don't care about network errors
default:
glog.Warningf("unexpected error writing response: %v", err)
}
}
func (qr *Querier) skipIfMatch(w http.ResponseWriter, req *http.Request, etag string) bool {
if etag == "" {
return false
}
w.Header().Set("Etag", etag)
if cacheTag := req.Header.Get("If-None-Match"); cacheTag == etag {
qr.reply(w, http.StatusNotModified, nil)
return true
}
return false
}
func (qr *Querier) NotFound(w http.ResponseWriter, _ *http.Request) {
qr.reply(w, http.StatusNotFound, struct{}{})
}
func (qr *Querier) Archs(w http.ResponseWriter, req *http.Request, params httprouter.Params) {
root := qr.getData()
if qr.skipIfMatch(w, req, root.IndexETag()) {
return
}
if req.Method == "HEAD" {
qr.reply(w, http.StatusOK, nil)
return
}
type archEntry struct {
Name string `json:"name"`
PackagesPath string `json:"packages_path"`
QueryPath string `json:"query_path"`
}
index := root.Index()
response := struct {
Data []string `json:"data"`
}{
Data: index,
}
qr.reply(w, http.StatusOK, response)
}
func (qr *Querier) PackageList(w http.ResponseWriter, req *http.Request, params httprouter.Params) {
arch := params.ByName("arch")
rd := qr.getData().Arch(arch)
if rd == nil {
qr.NotFound(w, req)
return
}
if qr.skipIfMatch(w, req, rd.ETag()) {
return
}
if req.Method == "HEAD" {
qr.reply(w, http.StatusOK, nil)
return
}
response := struct {
Data []string `json:"data"`
}{
Data: rd.NameIndex(),
}
qr.reply(w, http.StatusOK, response)
}
func (qr *Querier) Package(w http.ResponseWriter, req *http.Request, params httprouter.Params) {
arch := params.ByName("arch")
pkgname := params.ByName("package")
rd := qr.getData().Arch(arch)
if rd == nil {
qr.NotFound(w, req)
return
}
pkg := rd.Package(pkgname)
if pkg == nil {
qr.NotFound(w, req)
return
}
if qr.skipIfMatch(w, req, pkg.ETag) {
return
}
if req.Method == "HEAD" {
qr.reply(w, http.StatusOK, nil)
return
}
response := struct {
Data *packageData `json:"data"`
}{
Data: pkg,
}
qr.reply(w, http.StatusOK, response)
}
func (qr *Querier) Query(w http.ResponseWriter, req *http.Request, params httprouter.Params) {
query := strings.ToLower(req.FormValue("q"))
arch := params.ByName("arch")
rd := qr.getData().Arch(arch)
if rd == nil {
qr.NotFound(w, req)
return
}
if qr.skipIfMatch(w, req, rd.ETag()) {
return
}
if req.Method == "HEAD" {
qr.reply(w, http.StatusOK, nil)
return
}
qr.sema <- struct{}{}
defer func() { <-qr.sema }()
sub := rd.Index()
if query != "" {
sub = sub.Filter(func(p *packageData) bool {
return strings.Contains(p.SearchPackageVersion, query) ||
strings.Contains(p.SearchShortDesc, query)
})
}
type shortEntry struct {
Name string `json:"name"`
Version string `json:"version"`
Revision int `json:"revision"`
FilenameSize int64 `json:"filename_size"`
Repository string `json:"repository,omitempty"`
ShortDesc string `json:"short_desc,omitempty"`
}
response := struct {
Data []shortEntry `json:"data"`
}{
Data: make([]shortEntry, len(sub)),
}
for i, p := range sub {
response.Data[i] = shortEntry{
Name: p.Name,
Version: p.Version,
Revision: p.Revision,
FilenameSize: p.FilenameSize,
Repository: p.Repository,
ShortDesc: p.ShortDesc,
}
}
qr.reply(w, http.StatusOK, response)
}