forked from ligato/cn-infra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin_impl_rest.go
117 lines (95 loc) · 2.98 KB
/
plugin_impl_rest.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
// Copyright (c) 2017 Cisco and/or its affiliates.
//
// 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 rest
import (
"net/http"
"github.com/gorilla/mux"
"github.com/unrolled/render"
"github.com/ligato/cn-infra/infra"
"github.com/ligato/cn-infra/utils/safeclose"
)
// Plugin struct holds all plugin-related data.
type Plugin struct {
Deps
*Config
server *http.Server
mx *mux.Router
formatter *render.Render
}
// Deps lists the dependencies of the Rest plugin.
type Deps struct {
infra.PluginDeps
// Authenticator can be injected in a flavor inject method.
// If there is no authenticator injected and config contains
// user password, the default staticAuthenticator is instantiated.
// By default the authenticator is disabled.
Authenticator BasicHTTPAuthenticator //inject
}
// Init is the plugin entry point called by Agent Core
// - It prepares Gorilla MUX HTTP Router
func (p *Plugin) Init() (err error) {
if p.Config == nil {
p.Config = DefaultConfig()
}
if err := PluginConfig(p.Cfg, p.Config, p.PluginName); err != nil {
return err
}
// if there is no injected authenticator and there are credentials defined in the config file
// instantiate staticAuthenticator otherwise do not use basic Auth
if p.Authenticator == nil && len(p.Config.ClientBasicAuth) > 0 {
p.Authenticator, err = newStaticAuthenticator(p.Config.ClientBasicAuth)
if err != nil {
return err
}
}
p.mx = mux.NewRouter()
p.formatter = render.New(render.Options{
IndentJSON: true,
})
return err
}
// AfterInit starts the HTTP server.
func (p *Plugin) AfterInit() (err error) {
cfgCopy := *p.Config
var handler http.Handler = p.mx
if p.Authenticator != nil {
handler = auth(handler, p.Authenticator)
}
p.server, err = ListenAndServe(cfgCopy, handler)
if err != nil {
return err
}
if cfgCopy.UseHTTPS() {
p.Log.Info("Listening on https://", cfgCopy.Endpoint)
} else {
p.Log.Info("Listening on http://", cfgCopy.Endpoint)
}
return nil
}
// RegisterHTTPHandler registers HTTP <handler> at the given <path>.
func (p *Plugin) RegisterHTTPHandler(path string, provider HandlerProvider, methods ...string) *mux.Route {
p.Log.Debug("Registering handler: ", path)
return p.mx.Handle(path, provider(p.formatter)).Methods(methods...)
}
// GetPort returns plugin configuration port
func (p *Plugin) GetPort() int {
if p.Config != nil {
return p.Config.GetPort()
}
return 0
}
// Close stops the HTTP server.
func (p *Plugin) Close() error {
return safeclose.Close(p.server)
}