-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathmain.go
154 lines (124 loc) · 5.36 KB
/
main.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
// Copyright (c) 2014 Couchbase, Inc.
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
// except in compliance with the License. You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software distributed under the
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions
// and limitations under the License.
package main
import (
"flag"
"io/ioutil"
"log"
"net/http"
"os"
"github.com/gorilla/mux"
"github.com/blevesearch/bleve/v2"
bleveMappingUI "github.com/blevesearch/bleve-mapping-ui"
bleveHttp "github.com/blevesearch/bleve/v2/http"
// import general purpose configuration
_ "github.com/blevesearch/bleve/v2/config"
)
var bindAddr = flag.String("addr", ":8095", "http listen address")
var dataDir = flag.String("dataDir", "data", "data directory")
var staticEtag = flag.String("staticEtag", "", "optional static etag value.")
var staticPath = flag.String("static", "",
"optional path to static directory for web resources")
var staticBleveMappingPath = flag.String("staticBleveMapping", "",
"optional path to static-bleve-mapping directory for web resources")
func main() {
flag.Parse()
// walk the data dir and register index names
dirEntries, err := ioutil.ReadDir(*dataDir)
if err != nil {
log.Fatalf("error reading data dir: %v", err)
}
for _, dirInfo := range dirEntries {
indexPath := *dataDir + string(os.PathSeparator) + dirInfo.Name()
// skip single files in data dir since a valid index is a directory that
// contains multiple files
if !dirInfo.IsDir() {
log.Printf("not registering %s, skipping", indexPath)
continue
}
i, err := bleve.Open(indexPath)
if err != nil {
log.Printf("error opening index %s: %v", indexPath, err)
} else {
log.Printf("registered index: %s", dirInfo.Name())
bleveHttp.RegisterIndexName(dirInfo.Name(), i)
// set correct name in stats
i.SetName(dirInfo.Name())
}
}
router := mux.NewRouter()
router.StrictSlash(true)
// default to bindata for static-bleve-mapping resources.
staticBleveMapping := http.FileServer(bleveMappingUI.AssetFS())
if *staticBleveMappingPath != "" {
fi, err := os.Stat(*staticBleveMappingPath)
if err == nil && fi.IsDir() {
log.Printf("using static-bleve-mapping resources from %s",
*staticBleveMappingPath)
staticBleveMapping = http.FileServer(http.Dir(*staticBleveMappingPath))
}
}
router.PathPrefix("/static-bleve-mapping/").
Handler(http.StripPrefix("/static-bleve-mapping/", staticBleveMapping))
// default to bindata for static resources.
static := http.FileServer(assetFS())
if *staticPath != "" {
fi, err := os.Stat(*staticPath)
if err == nil && fi.IsDir() {
log.Printf("using static resources from %s",
*staticPath)
static = http.FileServer(http.Dir(*staticPath))
}
}
staticFileRouter(router, static)
// add the API
bleveMappingUI.RegisterHandlers(router, "/api")
createIndexHandler := bleveHttp.NewCreateIndexHandler(*dataDir)
createIndexHandler.IndexNameLookup = indexNameLookup
router.Handle("/api/{indexName}", createIndexHandler).Methods("PUT")
getIndexHandler := bleveHttp.NewGetIndexHandler()
getIndexHandler.IndexNameLookup = indexNameLookup
router.Handle("/api/{indexName}", getIndexHandler).Methods("GET")
deleteIndexHandler := bleveHttp.NewDeleteIndexHandler(*dataDir)
deleteIndexHandler.IndexNameLookup = indexNameLookup
router.Handle("/api/{indexName}", deleteIndexHandler).Methods("DELETE")
listIndexesHandler := bleveHttp.NewListIndexesHandler()
router.Handle("/api", listIndexesHandler).Methods("GET")
docIndexHandler := bleveHttp.NewDocIndexHandler("")
docIndexHandler.IndexNameLookup = indexNameLookup
docIndexHandler.DocIDLookup = docIDLookup
router.Handle("/api/{indexName}/{docID}", docIndexHandler).Methods("PUT")
docCountHandler := bleveHttp.NewDocCountHandler("")
docCountHandler.IndexNameLookup = indexNameLookup
router.Handle("/api/{indexName}/_count", docCountHandler).Methods("GET")
docGetHandler := bleveHttp.NewDocGetHandler("")
docGetHandler.IndexNameLookup = indexNameLookup
docGetHandler.DocIDLookup = docIDLookup
router.Handle("/api/{indexName}/{docID}", docGetHandler).Methods("GET")
docDeleteHandler := bleveHttp.NewDocDeleteHandler("")
docDeleteHandler.IndexNameLookup = indexNameLookup
docDeleteHandler.DocIDLookup = docIDLookup
router.Handle("/api/{indexName}/{docID}", docDeleteHandler).Methods("DELETE")
searchHandler := bleveHttp.NewSearchHandler("")
searchHandler.IndexNameLookup = indexNameLookup
router.Handle("/api/{indexName}/_search", searchHandler).Methods("POST")
listFieldsHandler := bleveHttp.NewListFieldsHandler("")
listFieldsHandler.IndexNameLookup = indexNameLookup
router.Handle("/api/{indexName}/_fields", listFieldsHandler).Methods("GET")
debugHandler := bleveHttp.NewDebugDocumentHandler("")
debugHandler.IndexNameLookup = indexNameLookup
debugHandler.DocIDLookup = docIDLookup
router.Handle("/api/{indexName}/{docID}/_debug", debugHandler).Methods("GET")
aliasHandler := bleveHttp.NewAliasHandler()
router.Handle("/api/_aliases", aliasHandler).Methods("POST")
// start the HTTP server
http.Handle("/", router)
log.Printf("Listening on %v", *bindAddr)
log.Fatal(http.ListenAndServe(*bindAddr, nil))
}