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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
package http
import (
"context"
"fmt"
"github.com/spiral/roadrunner"
"github.com/spiral/roadrunner/service/env"
"github.com/spiral/roadrunner/service/http/attributes"
"github.com/spiral/roadrunner/service/rpc"
"github.com/spiral/roadrunner/util"
"golang.org/x/net/http2"
"net/http"
"net/http/fcgi"
"net/url"
"strings"
"sync"
)
const (
// ID contains default svc name.
ID = "http"
// EventInitSSL thrown at moment of https initialization. SSL server passed as context.
EventInitSSL = 750
)
// http middleware type.
type middleware func(f http.HandlerFunc) http.HandlerFunc
// Service manages rr, http servers.
type Service struct {
cfg *Config
env env.Environment
lsns []func(event int, ctx interface{})
mdwr []middleware
mu sync.Mutex
rr *roadrunner.Server
controller roadrunner.Controller
handler *Handler
http *http.Server
https *http.Server
fcgi *http.Server
}
// Attach attaches controller. Currently only one controller is supported.
func (s *Service) Attach(w roadrunner.Controller) {
s.controller = w
}
// AddMiddleware adds new net/http mdwr.
func (s *Service) AddMiddleware(m middleware) {
s.mdwr = append(s.mdwr, m)
}
// AddListener attaches server event controller.
func (s *Service) AddListener(l func(event int, ctx interface{})) {
s.lsns = append(s.lsns, l)
}
// Init must return configure svc and return true if svc hasStatus enabled. Must return error in case of
// misconfiguration. Services must not be used without proper configuration pushed first.
func (s *Service) Init(cfg *Config, r *rpc.Service, e env.Environment) (bool, error) {
s.cfg = cfg
s.env = e
if r != nil {
if err := r.Register(ID, &rpcServer{s}); err != nil {
return false, err
}
}
return true, nil
}
// Serve serves the svc.
func (s *Service) Serve() error {
s.mu.Lock()
if s.env != nil {
if err := s.env.Copy(s.cfg.Workers); err != nil {
return nil
}
}
s.cfg.Workers.SetEnv("RR_HTTP", "true")
s.rr = roadrunner.NewServer(s.cfg.Workers)
s.rr.Listen(s.throw)
if s.controller != nil {
s.rr.Attach(s.controller)
}
s.handler = &Handler{cfg: s.cfg, rr: s.rr}
s.handler.Listen(s.throw)
s.http = &http.Server{Addr: s.cfg.Address, Handler: s}
if s.cfg.EnableTLS() {
s.https = s.initSSL()
}
if s.cfg.EnableFCGI() {
s.fcgi = &http.Server{Handler: s}
}
s.mu.Unlock()
if err := s.rr.Start(); err != nil {
return err
}
defer s.rr.Stop()
err := make(chan error, 3)
go func() {
err <- s.http.ListenAndServe()
}()
if s.https != nil {
go func() {
err <- s.https.ListenAndServeTLS(s.cfg.SSL.Cert, s.cfg.SSL.Key)
}()
}
if s.fcgi != nil {
go func() {
err <- s.ListenAndServeFCGI()
}()
}
return <-err
}
// Stop stops the http.
func (s *Service) Stop() {
s.mu.Lock()
defer s.mu.Unlock()
if s.http == nil {
return
}
if s.fcgi != nil {
go s.fcgi.Shutdown(context.Background())
}
if s.https != nil {
go s.https.Shutdown(context.Background())
}
go s.http.Shutdown(context.Background())
}
// Server returns associated rr server (if any).
func (s *Service) Server() *roadrunner.Server {
s.mu.Lock()
defer s.mu.Unlock()
return s.rr
}
func (s *Service) ListenAndServeFCGI() error {
l, err := util.CreateListener(s.cfg.FCGI.Address);
if err != nil {
return err
}
err = fcgi.Serve(l, s.fcgi.Handler)
if err != nil {
return err
}
return nil
}
// ServeHTTP handles connection using set of middleware and rr PSR-7 server.
func (s *Service) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if s.https != nil && r.TLS == nil && s.cfg.SSL.Redirect {
target := &url.URL{
Scheme: "https",
Host: s.tlsAddr(r.Host, false),
Path: r.URL.Path,
RawQuery: r.URL.RawQuery,
}
http.Redirect(w, r, target.String(), http.StatusTemporaryRedirect)
return
}
r = attributes.Init(r)
// chaining middleware
f := s.handler.ServeHTTP
for _, m := range s.mdwr {
f = m(f)
}
f(w, r)
}
// Init https server.
func (s *Service) initSSL() *http.Server {
server := &http.Server{Addr: s.tlsAddr(s.cfg.Address, true), Handler: s}
s.throw(EventInitSSL, server)
// Enable HTTP/2 support by default
http2.ConfigureServer(server, &http2.Server{})
return server
}
// throw handles service, server and pool events.
func (s *Service) throw(event int, ctx interface{}) {
for _, l := range s.lsns {
l(event, ctx)
}
if event == roadrunner.EventServerFailure {
// underlying rr server is dead
s.Stop()
}
}
// tlsAddr replaces listen or host port with port configured by SSL config.
func (s *Service) tlsAddr(host string, forcePort bool) string {
// remove current forcePort first
host = strings.Split(host, ":")[0]
if forcePort || s.cfg.SSL.Port != 443 {
host = fmt.Sprintf("%s:%v", host, s.cfg.SSL.Port)
}
return host
}
|