/* Copyright NetFoundry, 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 https://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 server import ( "fmt" "github.com/openziti/edge/controller" "github.com/openziti/edge/controller/apierror" "github.com/openziti/edge/controller/env" "github.com/openziti/edge/controller/response" "github.com/openziti/edge/controller/timeout" "github.com/openziti/edge/rest_client_api_client" "github.com/openziti/edge/rest_client_api_server" "github.com/openziti/fabric/xweb" "github.com/pkg/errors" "io/ioutil" "net/http" "strings" "time" ) var _ xweb.WebHandlerFactory = &ClientApiFactory{} type ClientApiFactory struct { InitFunc func(clientApi *ClientApiHandler) error appEnv *env.AppEnv } func (factory ClientApiFactory) Validate(config *xweb.Config) error { clientApiFound := false for _, webListener := range config.WebListeners { for _, api := range webListener.APIs { if webListener.Identity != nil && (api.Binding() == controller.ClientApiBinding || api.Binding() == controller.ManagementApiBinding) { caBytes, err := ioutil.ReadFile(webListener.Identity.GetConfig().CA) if err != nil { return errors.Errorf("could not read xweb web listener [%s]'s CA file [%s] to retrieve CA PEMs: %v", webListener.Name, webListener.Identity.GetConfig().CA, err) } factory.appEnv.Config.AddCaPems(caBytes) } if !clientApiFound && api.Binding() == controller.ClientApiBinding { for _, bindPoint := range webListener.BindPoints { if bindPoint.Address == factory.appEnv.Config.Api.Address { factory.appEnv.SetEnrollmentSigningCert(webListener.Identity.ServerCert()) clientApiFound = true break } } } } } factory.appEnv.Config.RefreshCaPems() if !clientApiFound { return errors.Errorf("could not find [edge.api.address] value [%s] as a bind point any instance of API [%s]", factory.appEnv.Config.Api.Address, controller.ClientApiBinding) } return nil } func NewClientApiFactory(appEnv *env.AppEnv) *ClientApiFactory { return &ClientApiFactory{ appEnv: appEnv, } } func (factory ClientApiFactory) Binding() string { return controller.ClientApiBinding } func (factory ClientApiFactory) New(_ *xweb.WebListener, options map[interface{}]interface{}) (xweb.WebHandler, error) { clientApi, err := NewClientApiHandler(factory.appEnv, options) if err != nil { return nil, err } if factory.InitFunc != nil { if err := factory.InitFunc(clientApi); err != nil { return nil, fmt.Errorf("error running on init func: %v", err) } } return clientApi, nil } type ClientApiHandler struct { handler http.Handler appEnv *env.AppEnv options map[interface{}]interface{} } func (clientApi ClientApiHandler) Binding() string { return controller.ClientApiBinding } func (clientApi ClientApiHandler) Options() map[interface{}]interface{} { return clientApi.options } func (clientApi ClientApiHandler) RootPath() string { return rest_client_api_client.DefaultBasePath } func (clientApi ClientApiHandler) IsHandler(r *http.Request) bool { return strings.HasPrefix(r.URL.Path, clientApi.RootPath()) || strings.HasPrefix(r.URL.Path, controller.LegacyClientRestApiBaseUrlV1) || !strings.HasPrefix(r.URL.Path, "/fabric") } func (clientApi ClientApiHandler) ServeHTTP(writer http.ResponseWriter, request *http.Request) { clientApi.handler.ServeHTTP(writer, request) } func NewClientApiHandler(ae *env.AppEnv, options map[interface{}]interface{}) (*ClientApiHandler, error) { clientApi := &ClientApiHandler{ options: options, appEnv: ae, } clientApi.handler = clientApi.newHandler(ae) return clientApi, nil } func (clientApi ClientApiHandler) newHandler(ae *env.AppEnv) http.Handler { innerClientHandler := ae.ClientApi.Serve(nil) handler := http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) { rw.Header().Set(ZitiInstanceId, ae.InstanceId) //if not /edge prefix and not /fabric, translate to "/edge/client/v", this is a hack //that should be removed once non-prefixed URLs are no longer used if !strings.HasPrefix(r.URL.Path, controller.RestApiRootPath) && !strings.HasPrefix(r.URL.Path, "/fabric") { r.URL.Path = controller.ClientRestApiBaseUrlLatest + r.URL.Path } //translate /edge/v1 to /edge/client/v1 r.URL.Path = strings.Replace(r.URL.Path, controller.LegacyClientRestApiBaseUrlV1, controller.ClientRestApiBaseUrlLatest, 1) if r.URL.Path == controller.ClientRestApiSpecUrl { rw.Header().Set("content-type", "application/json") rw.WriteHeader(http.StatusOK) _, _ = rw.Write(rest_client_api_server.SwaggerJSON) return } rc := ae.CreateRequestContext(rw, r) env.AddRequestContextToHttpContext(r, rc) err := ae.FillRequestContext(rc) if err != nil { rc.RespondWithError(err) return } //after request context is filled so that api session is present for session expiration headers response.AddHeaders(rc) innerClientHandler.ServeHTTP(rw, r) }) return timeout.TimeoutHandler(wrapCorsHandler(handler), 10*time.Second, apierror.NewTimeoutError()) }