Spaces:
Running
Running
File size: 6,593 Bytes
b110593 |
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 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package rest
import (
"context"
"fmt"
"net/http"
"strings"
"time"
"github.com/prometheus/client_golang/prometheus"
"github.com/rs/cors"
"github.com/sirupsen/logrus"
"github.com/weaviate/weaviate/adapters/handlers/rest/state"
"github.com/weaviate/weaviate/adapters/handlers/rest/swagger_middleware"
"github.com/weaviate/weaviate/usecases/config"
"github.com/weaviate/weaviate/usecases/modules"
"github.com/weaviate/weaviate/usecases/monitoring"
)
// The middleware configuration is for the handler executors. These do not apply to the swagger.json document.
// The middleware executes after routing but before authentication, binding and validation
//
// we are setting the middlewares from within configureAPI, as we need access
// to some resources which are not exposed
func makeSetupMiddlewares(appState *state.State) func(http.Handler) http.Handler {
return func(handler http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.String() == "/v1/.well-known/openid-configuration" || r.URL.String() == "/v1" {
handler.ServeHTTP(w, r)
return
}
appState.AnonymousAccess.Middleware(handler).ServeHTTP(w, r)
})
}
}
func addHandleRoot(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.String() == "/" {
w.Header().Add("Location", "/v1")
w.WriteHeader(http.StatusMovedPermanently)
w.Write([]byte(`{"links":{"href":"/v1","name":"api v1","documentationHref":` +
`"https://weaviate.io/developers/weaviate/current/"}}`))
return
}
next.ServeHTTP(w, r)
})
}
func makeAddModuleHandlers(modules *modules.Provider) func(http.Handler) http.Handler {
return func(next http.Handler) http.Handler {
mux := http.NewServeMux()
for _, mod := range modules.GetAll() {
prefix := fmt.Sprintf("/v1/modules/%s", mod.Name())
mux.Handle(fmt.Sprintf("%s/", prefix),
http.StripPrefix(prefix, mod.RootHandler()))
}
prefix := "/v1/modules"
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if url := r.URL.String(); len(url) > len(prefix) && url[:len(prefix)] == prefix {
mux.ServeHTTP(w, r)
return
}
next.ServeHTTP(w, r)
})
}
}
// The middleware configuration happens before anything, this middleware also applies to serving the swagger.json document.
// So this is a good place to plug in a panic handling middleware, logging and metrics
// Contains "x-api-key", "x-api-token" for legacy reasons, older interfaces might need these headers.
func makeSetupGlobalMiddleware(appState *state.State) func(http.Handler) http.Handler {
return func(handler http.Handler) http.Handler {
handleCORS := cors.New(cors.Options{
OptionsPassthrough: true,
AllowedMethods: strings.Split(appState.ServerConfig.Config.CORS.AllowMethods, ","),
AllowedHeaders: strings.Split(appState.ServerConfig.Config.CORS.AllowHeaders, ","),
AllowedOrigins: strings.Split(appState.ServerConfig.Config.CORS.AllowOrigin, ","),
}).Handler
handler = handleCORS(handler)
handler = swagger_middleware.AddMiddleware([]byte(SwaggerJSON), handler)
handler = makeAddLogging(appState.Logger)(handler)
if appState.ServerConfig.Config.Monitoring.Enabled {
handler = makeAddMonitoring(appState.Metrics)(handler)
}
handler = addPreflight(handler, appState.ServerConfig.Config.CORS)
handler = addLiveAndReadyness(appState, handler)
handler = addHandleRoot(handler)
handler = makeAddModuleHandlers(appState.Modules)(handler)
handler = addInjectHeadersIntoContext(handler)
handler = makeCatchPanics(appState.Logger,
newPanicsRequestsTotal(appState.Metrics, appState.Logger))(handler)
return handler
}
}
func makeAddLogging(logger logrus.FieldLogger) func(http.Handler) http.Handler {
return func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
logger.
WithField("action", "restapi_request").
WithField("method", r.Method).
WithField("url", r.URL).
Debug("received HTTP request")
next.ServeHTTP(w, r)
})
}
}
func makeAddMonitoring(metrics *monitoring.PrometheusMetrics) func(http.Handler) http.Handler {
return func(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
before := time.Now()
method := r.Method
path := r.URL.Path
next.ServeHTTP(w, r)
if strings.HasPrefix(path, "/v1/batch/objects") && method == http.MethodPost {
metrics.BatchTime.With(prometheus.Labels{
"operation": "total_api_level",
"class_name": "n/a",
"shard_name": "n/a",
}).
Observe(float64(time.Since(before) / time.Millisecond))
}
})
}
}
func addPreflight(next http.Handler, cfg config.CORS) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Access-Control-Allow-Origin", cfg.AllowOrigin)
w.Header().Set("Access-Control-Allow-Methods", cfg.AllowMethods)
w.Header().Set("Access-Control-Allow-Headers", cfg.AllowHeaders)
if r.Method == "OPTIONS" {
return
}
next.ServeHTTP(w, r)
})
}
func addInjectHeadersIntoContext(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
changed := false
for k, v := range r.Header {
if strings.HasPrefix(k, "X-") {
ctx = context.WithValue(ctx, k, v)
changed = true
}
}
if changed {
next.ServeHTTP(w, r.Clone(ctx))
} else {
next.ServeHTTP(w, r)
}
})
}
func addLiveAndReadyness(state *state.State, next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.String() == "/v1/.well-known/live" {
w.WriteHeader(http.StatusOK)
return
}
if r.URL.String() == "/v1/.well-known/ready" {
code := http.StatusServiceUnavailable
if state.DB.StartupComplete() && state.Cluster.ClusterHealthScore() == 0 {
code = http.StatusOK
}
w.WriteHeader(code)
return
}
next.ServeHTTP(w, r)
})
}
|