forked from elastic/package-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.go
207 lines (176 loc) · 4.94 KB
/
search.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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package main
import (
"encoding/json"
"fmt"
"net/http"
"sort"
"strconv"
"strings"
"time"
"github.com/blang/semver"
"github.com/pkg/errors"
"github.com/elastic/package-registry/util"
)
func searchHandler(packagesBasePath string, cacheTime time.Duration) func(w http.ResponseWriter, r *http.Request) {
return func(w http.ResponseWriter, r *http.Request) {
query := r.URL.Query()
var kibanaVersion *semver.Version
var category string
// Leaving out `a` here to not use a reserved name
var packageQuery string
var all bool
var internal bool
var experimental bool
var err error
// Read query filter params which can affect the output
if len(query) > 0 {
if v := query.Get("kibana"); v != "" {
kibanaVersion, err = semver.New(v)
if err != nil {
badRequest(w, fmt.Sprintf("invalid Kibana version '%s': %s", v, err))
return
}
}
if v := query.Get("category"); v != "" {
if v != "" {
category = v
}
}
if v := query.Get("package"); v != "" {
if v != "" {
packageQuery = v
}
}
if v := query.Get("all"); v != "" {
if v != "" {
// Default is false, also on error
all, err = strconv.ParseBool(v)
if err != nil {
badRequest(w, fmt.Sprintf("invalid 'all' query param: '%s'", v))
return
}
}
}
if v := query.Get("internal"); v != "" {
if v != "" {
// In case of error, keep it false
internal, err = strconv.ParseBool(v)
if err != nil {
badRequest(w, fmt.Sprintf("invalid 'internal' query param: '%s'", v))
return
}
}
}
if v := query.Get("experimental"); v != "" {
if v != "" {
// In case of error, keep it false
experimental, err = strconv.ParseBool(v)
if err != nil {
badRequest(w, fmt.Sprintf("invalid 'experimental' query param: '%s'", v))
return
}
}
}
}
packages, err := util.GetPackages(packagesBasePath)
if err != nil {
notFoundError(w, errors.Wrapf(err, "fetching package failed"))
return
}
packagesList := map[string]map[string]util.Package{}
// Checks that only the most recent version of an integration is added to the list
for _, p := range packages {
// Skip internal packages by default
if p.Internal && !internal {
continue
}
// Skip experimental packages if flag is not specified
if p.Release == util.ReleaseExperimental && !experimental {
continue
}
// Filter by category first as this could heavily reduce the number of packages
// It must happen before the version filtering as there only the newest version
// is exposed and there could be an older package with more versions.
if category != "" && !p.HasCategory(category) {
continue
}
if kibanaVersion != nil {
if valid := p.HasKibanaVersion(kibanaVersion); !valid {
continue
}
}
// If package Query is set, all versions of this package are returned
if packageQuery != "" && packageQuery != p.Name {
continue
}
if !all {
// Check if the version exists and if it should be added or not.
for _, versions := range packagesList {
for _, pp := range versions {
if pp.Name == p.Name {
// If the package in the list is newer, do nothing. Otherwise delete and later add the new one.
if pp.IsNewer(p) {
continue
}
delete(packagesList[pp.Name], pp.Version)
}
}
}
}
if _, ok := packagesList[p.Name]; !ok {
packagesList[p.Name] = map[string]util.Package{}
}
packagesList[p.Name][p.Version] = p
}
data, err := getPackageOutput(packagesList)
if err != nil {
notFoundError(w, err)
return
}
cacheHeaders(w, cacheTime)
jsonHeader(w)
fmt.Fprint(w, string(data))
}
}
func getPackageOutput(packagesList map[string]map[string]util.Package) ([]byte, error) {
separator := "@"
// Packages need to be sorted to be always outputted in the same order
var keys []string
for key, k := range packagesList {
for v := range k {
keys = append(keys, key+separator+v)
}
}
sort.Strings(keys)
var output []map[string]interface{}
for _, k := range keys {
parts := strings.Split(k, separator)
m := packagesList[parts[0]][parts[1]]
data := map[string]interface{}{
"name": m.Name,
"description": m.Description,
"version": m.Version,
"type": m.Type,
"download": m.GetDownloadPath(),
"path": m.GetUrlPath(),
}
if m.Title != nil {
data["title"] = *m.Title
}
if m.Icons != nil {
data["icons"] = m.Icons
}
if m.Internal {
data["internal"] = true
}
output = append(output, data)
}
// Instead of return `null` in case of an empty array, return []
if len(output) == 0 {
return []byte("[]"), nil
}
return json.MarshalIndent(output, "", " ")
}