-
Notifications
You must be signed in to change notification settings - Fork 1
/
request.go
620 lines (560 loc) · 16.8 KB
/
request.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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
package jaws
import (
"context"
"fmt"
"html"
"html/template"
"net"
"net/http"
"strconv"
"sync"
"time"
"github.com/linkdata/deadlock"
)
// ConnectFn can be used to interact with a Request before message processing starts.
// Returning an error causes the Request to abort, and the WebSocket connection to close.
type ConnectFn func(rq *Request) error
// EventFn is the signature of a event handling function to be called when JaWS receives
// an event message from the Javascript via the WebSocket connection.
type EventFn func(rq *Request, id, evt, val string) error
// Request maintains the state for a JaWS WebSocket connection, and handles processing
// of events and broadcasts.
//
// Note that we have to store the context inside the struct because there is no call chain
// between the Request being created and it being used once the WebSocket is created.
type Request struct {
Jaws *Jaws // (read-only) the JaWS instance the Request belongs to
JawsKey uint64 // (read-only) a random number used in the WebSocket URI to identify this Request
Created time.Time // (read-only) when the Request was created, used for automatic cleanup
Initial *http.Request // (read-only) initial HTTP request passed to Jaws.NewRequest
Context context.Context // (read-only) context passed to Jaws.NewRequest
remoteIP net.IP // (read-only) remote IP, or nil
sendCh chan *Message // (read-only) direct send message channel
mu deadlock.RWMutex // protects following
session *Session // session, if established
connectFn ConnectFn // a ConnectFn to call before starting message processing for the Request
elems map[string]EventFn // map of registered HTML id's
}
type eventFnCall struct {
fn EventFn
msg *Message
}
var metaIds = map[string]struct{}{
" reload": {},
" redirect": {},
" alert": {},
}
var requestPool = sync.Pool{New: func() interface{} {
return &Request{
elems: make(map[string]EventFn),
sendCh: make(chan *Message),
}
}}
func newRequest(ctx context.Context, j *Jaws, jawsKey uint64, hr *http.Request, remoteIP net.IP, sess *Session) (rq *Request) {
rq = requestPool.Get().(*Request)
rq.Jaws = j
rq.JawsKey = jawsKey
rq.Created = time.Now()
rq.Initial = hr
rq.Context = ctx
rq.remoteIP = remoteIP
rq.session = sess
return rq
}
func (rq *Request) JawsKeyString() string {
jawsKey := uint64(0)
if rq != nil {
jawsKey = rq.JawsKey
}
return JawsKeyString(jawsKey)
}
func (rq *Request) String() string {
return "Request<" + rq.JawsKeyString() + ">"
}
func (rq *Request) start(hr *http.Request) error {
rq.mu.RLock()
expectIP := rq.remoteIP
rq.mu.RUnlock()
var actualIP net.IP
if hr != nil {
actualIP = parseIP(hr.RemoteAddr)
}
if expectIP.Equal(actualIP) {
return nil
}
return fmt.Errorf("/jaws/%s: expected IP %q, got %q", rq.JawsKeyString(), expectIP.String(), actualIP.String())
}
func (rq *Request) recycle() {
rq.mu.Lock()
rq.Jaws = nil
rq.JawsKey = 0
rq.connectFn = nil
rq.Initial = nil
rq.Context = nil
rq.remoteIP = nil
rq.session = nil
// this gets optimized to calling the 'runtime.mapclear' function
// we don't expect this to improve speed, but it will lower GC load
for k := range rq.elems {
delete(rq.elems, k)
}
rq.mu.Unlock()
requestPool.Put(rq)
}
// HeadHTML returns the HTML code needed to write in the HTML page's HEAD section.
func (rq *Request) HeadHTML() template.HTML {
return rq.Jaws.headHTML + template.HTML(`<script>var jawsKey="`+rq.JawsKeyString()+`"</script>`) // #nosec G203
}
// GetConnectFn returns the currently set ConnectFn. That function will be called before starting the WebSocket tunnel if not nil.
func (rq *Request) GetConnectFn() (fn ConnectFn) {
rq.mu.RLock()
fn = rq.connectFn
rq.mu.RUnlock()
return
}
// SetConnectFn sets ConnectFn. That function will be called before starting the WebSocket tunnel if not nil.
func (rq *Request) SetConnectFn(fn ConnectFn) {
rq.mu.Lock()
rq.connectFn = fn
rq.mu.Unlock()
}
func (rq *Request) getSession() (sess *Session) {
rq.mu.RLock()
sess = rq.session
rq.mu.RUnlock()
return
}
func (rq *Request) ensureSession(minAge, maxAge int) (sess *Session, modified bool) {
rq.mu.RLock()
sess = rq.session
rq.mu.RUnlock()
if sess != nil {
if time.Since(sess.GetExpires().Add(time.Second*time.Duration(-minAge))) < 0 {
return
}
sess.SetExpires(time.Now().Add(time.Second * time.Duration(maxAge)))
rq.Jaws.ensureSession(sess)
} else {
sess = rq.Jaws.createSession(rq.remoteIP, time.Now().Add(time.Second*time.Duration(maxAge)))
rq.mu.Lock()
rq.session = sess
rq.mu.Unlock()
}
modified = true
return
}
// EnsureSession ensures a session exists with an expiry least `minAge` seconds in the future.
// Returns a session cookie to be set if a new session was created or if it's expiry time was updated.
// Returns nil if the session already existed and is within the expiry time.
// Must be called before using Set() or Get().
func (rq *Request) EnsureSession(minAge, maxAge int) *http.Cookie {
if sess, created := rq.ensureSession(minAge, maxAge); created {
return sess.Cookie(rq.Jaws.CookieName)
}
return nil
}
// SessionCookie returns the cookie to be set in the initial HTTP response for
// session tracking. Returns nil if no session is active.
func (rq *Request) SessionCookie() *http.Cookie {
return rq.getSession().Cookie(rq.Jaws.CookieName)
}
// Get returns the session value associated with the key, or nil if
// no session is established or the key does not exist.
func (rq *Request) Get(key string) interface{} {
return rq.getSession().Get(key)
}
// Set sets the session value associated with the key.
// If value is nil, the key is removed from the session.
func (rq *Request) Set(key string, val interface{}) {
rq.getSession().Set(key, val)
}
// Broadcast sends a broadcast to all Requests except the current one.
func (rq *Request) Broadcast(msg *Message) {
msg.from = rq
rq.Jaws.Broadcast(msg)
}
// Trigger invokes the event handler for the given ID with a 'trigger' event on all Requests except this one.
func (rq *Request) Trigger(id, val string) {
rq.Broadcast(&Message{
Elem: id,
What: "trigger",
Data: val,
})
}
// SetInner sends a jid and new inner HTML to all Requests except this one.
//
// Only the requests that have registered the 'jid' (either with Register or OnEvent) will be sent the message.
func (rq *Request) SetInner(jid string, innerHtml string) {
rq.Broadcast(&Message{
Elem: jid,
What: "inner",
Data: innerHtml,
})
}
// SetTextValue sends a jid and new input value to all Requests except this one.
//
// Only the requests that have registered the jid (either with Register or OnEvent) will be sent the message.
func (rq *Request) SetTextValue(jid, val string) {
rq.Broadcast(&Message{
Elem: jid,
What: "value",
Data: val,
})
}
// SetFloatValue sends a jid and new input value to all Requests except this one.
//
// Only the requests that have registered the jid (either with Register or OnEvent) will be sent the message.
func (rq *Request) SetFloatValue(jid string, val float64) {
rq.Broadcast(&Message{
Elem: jid,
What: "value",
Data: strconv.FormatFloat(val, 'f', -1, 64),
})
}
// SetBoolValue sends a jid and new input value to all Requests except this one.
//
// Only the requests that have registered the jid (either with Register or OnEvent) will be sent the message.
func (rq *Request) SetBoolValue(jid string, val bool) {
rq.Broadcast(&Message{
Elem: jid,
What: "value",
Data: strconv.FormatBool(val),
})
}
// SetDateValue sends a jid and new input value to all Requests except this one.
//
// Only the requests that have registered the jid (either with Register or OnEvent) will be sent the message.
func (rq *Request) SetDateValue(jid string, val time.Time) {
rq.Broadcast(&Message{
Elem: jid,
What: "value",
Data: val.Format(ISO8601),
})
}
func (rq *Request) getDoneCh(msg *Message) (<-chan struct{}, <-chan struct{}) {
rq.mu.RLock()
defer rq.mu.RUnlock()
if rq.Jaws == nil {
panic(fmt.Sprintf("Request.Send(%v): request is dead", msg))
}
return rq.Jaws.Done(), rq.Context.Done()
}
// Send a message to the current Request only.
// Returns true if the message was successfully sent.
func (rq *Request) Send(msg *Message) bool {
jawsDoneCh, ctxDoneCh := rq.getDoneCh(msg)
select {
case <-jawsDoneCh:
case <-ctxDoneCh:
case rq.sendCh <- msg:
return true
}
return false
}
// SetAttr sets an attribute on the HTML element(s) on the current Request only.
// If the value is an empty string, a value-less attribute will be added (such as "disabled").
//
// Only the requests that have registered the 'jid' (either with Register or OnEvent) will be sent the message.
func (rq *Request) SetAttr(jid, attr, val string) {
rq.Send(&Message{
Elem: jid,
What: "sattr",
Data: attr + "\n" + val,
})
}
// RemoveAttr removes a given attribute from the HTML element(s) for the current Request only.
//
// Only the requests that have registered the 'jid' (either with Register or OnEvent) will be sent the message.
func (rq *Request) RemoveAttr(jid, attr string) {
rq.Send(&Message{
Elem: jid,
What: "rattr",
Data: attr,
})
}
// Alert attempts to show an alert message on the current request webpage if it has an HTML element with the id 'jaws-alert'.
// The lvl argument should be one of Bootstraps alert levels: primary, secondary, success, danger, warning, info, light or dark.
//
// The default JaWS javascript only supports Bootstrap.js dismissable alerts.
func (rq *Request) Alert(lvl, msg string) {
rq.Send(&Message{
Elem: " alert",
What: lvl,
Data: msg,
})
}
// AlertError calls Alert if the given error is not nil.
func (rq *Request) AlertError(err error) {
if err != nil {
rq.Send(makeAlertDangerMessage(rq.Jaws.Log(err)))
}
}
// Redirect requests the current Request to navigate to the given URL.
func (rq *Request) Redirect(url string) {
rq.Send(&Message{
Elem: " redirect",
What: url,
})
}
// RegisterEventFn records the given HTML 'jid' attribute as a valid target
// for dynamic updates using the given event function (which may be nil).
//
// If the jid argument is an empty string, a unique jid will be generated.
//
// If fn argument is nil, a pre-existing event function won't be overwritten.
//
// Returns the (possibly generated) jid.
func (rq *Request) RegisterEventFn(jid string, fn EventFn) string {
rq.mu.Lock()
defer rq.mu.Unlock()
if jid != "" {
if _, ok := rq.elems[jid]; ok {
if fn == nil {
return jid
}
}
rq.elems[jid] = fn
} else {
for {
jid = rq.Jaws.MakeID()
if _, ok := rq.elems[jid]; !ok {
rq.elems[jid] = fn
break
}
}
}
return jid
}
// Register calls RegisterEventFn(id, nil).
// Useful in template constructs like:
//
// <div jid="{{$.Register `foo`}}">
func (rq *Request) Register(jid string) string {
return rq.RegisterEventFn(jid, nil)
}
// GetEventFn checks if a given HTML element is registered and returns
// the it's event function (or nil) along with a boolean indicating
// if it's a registered ID.
func (rq *Request) GetEventFn(jid string) (fn EventFn, ok bool) {
rq.mu.RLock()
if fn, ok = rq.elems[jid]; !ok {
_, ok = metaIds[jid]
}
rq.mu.RUnlock()
return
}
// SetEventFn sets the event function for the given jid to be the given function.
// Passing nil for the function is legal, and has the effect of ensuring the
// jid can be the target of DOM updates but not to send Javascript events.
// Note that you can only have one event function per jid.
func (rq *Request) SetEventFn(jid string, fn EventFn) {
rq.mu.Lock()
rq.elems[jid] = fn
rq.mu.Unlock()
}
// OnEvent calls SetEventFn.
// Returns a nil error so it can be used inside templates.
func (rq *Request) OnEvent(jid string, fn EventFn) error {
rq.SetEventFn(jid, fn)
return nil
}
// process is the main message processing loop. Will unsubscribe broadcastMsgCh and close outboundMsgCh on exit.
func (rq *Request) process(broadcastMsgCh chan *Message, incomingMsgCh <-chan *Message, outboundMsgCh chan<- *Message) {
jawsDoneCh := rq.Jaws.Done()
ctxDoneCh := rq.Context.Done()
eventDoneCh := make(chan struct{})
eventCallCh := make(chan eventFnCall, cap(outboundMsgCh))
go rq.eventCaller(eventCallCh, outboundMsgCh, eventDoneCh)
defer func() {
rq.Jaws.unsubscribe(broadcastMsgCh)
close(eventCallCh)
for {
select {
case <-eventCallCh:
case <-rq.sendCh:
case <-incomingMsgCh:
case <-eventDoneCh:
close(outboundMsgCh)
return
}
}
}()
for {
var msg *Message
incoming := false
select {
case <-jawsDoneCh:
case <-ctxDoneCh:
case msg = <-rq.sendCh:
case msg = <-broadcastMsgCh:
case msg = <-incomingMsgCh:
// messages incoming from the WebSocket are not to be resent out on
// the WebSocket again, so note that this is an incoming message
incoming = true
}
if msg == nil {
// one of the channels are closed, so we're done
return
}
if msg.from == rq {
// don't process broadcasts that originate from ourselves
continue
}
// only ever process messages for registered elements
if fn, ok := rq.GetEventFn(msg.Elem); ok {
// messages incoming from WebSocket or trigger messages
// won't be sent out on the WebSocket, but will queue up a
// call to the event function (if any)
if incoming || msg.What == "trigger" {
if fn != nil {
select {
case eventCallCh <- eventFnCall{fn: fn, msg: msg}:
default:
rq.Jaws.MustLog(fmt.Errorf("jaws: %v: eventCallCh is full sending %v", rq, msg))
return
}
}
continue
}
// "hook" messages are used to synchronously call an event function.
// the function must not send any messages itself, but may return
// an error to be sent out as an alert message.
// primary usecase is tests.
if msg.What == "hook" {
msg = makeAlertDangerMessage(fn(rq, msg.Elem, msg.What, msg.Data))
}
if msg != nil {
select {
case <-jawsDoneCh:
case <-ctxDoneCh:
case outboundMsgCh <- msg:
default:
rq.Jaws.MustLog(fmt.Errorf("jaws: %v: outboundMsgCh is full sending %v", rq, msg))
return
}
}
}
}
}
// eventCaller calls event functions
func (rq *Request) eventCaller(eventCallCh <-chan eventFnCall, outboundMsgCh chan<- *Message, eventDoneCh chan<- struct{}) {
defer close(eventDoneCh)
for call := range eventCallCh {
if err := call.fn(rq, call.msg.Elem, call.msg.What, call.msg.Data); err != nil {
select {
case outboundMsgCh <- makeAlertDangerMessage(err):
default:
_ = rq.Jaws.Log(fmt.Errorf("jaws: outboundMsgCh full sending event error '%s'", err.Error()))
}
}
}
}
// onConnect calls the Request's ConnectFn if it's not nil, and returns the error from it.
// Returns nil if ConnectFn is nil.
func (rq *Request) onConnect() (err error) {
rq.mu.RLock()
connectFn := rq.connectFn
rq.mu.RUnlock()
if connectFn != nil {
err = connectFn(rq)
}
return
}
func makeAlertDangerMessage(err error) (msg *Message) {
if err != nil {
msg = &Message{
Elem: " alert",
What: "danger",
Data: html.EscapeString(err.Error()),
}
}
return
}
// defaultChSize returns a reasonable buffer size for our data channels
func (rq *Request) defaultChSize() (n int) {
rq.mu.RLock()
n = 8 + len(rq.elems)*4
rq.mu.RUnlock()
return
}
func (rq *Request) maybeEvent(id, event string, fn ClickFn) string {
var wf EventFn
if fn != nil {
wf = func(rq *Request, id, evt, val string) (err error) {
if evt == event {
err = fn(rq)
}
return
}
}
return rq.RegisterEventFn(id, wf)
}
func (rq *Request) maybeClick(jid string, fn ClickFn) string {
return rq.maybeEvent(jid, "click", fn)
}
func (rq *Request) maybeInputText(jid string, fn InputTextFn) string {
var wf EventFn
if fn != nil {
wf = func(rq *Request, id, evt, val string) (err error) {
if evt == "input" {
err = fn(rq, val)
}
return
}
}
return rq.RegisterEventFn(jid, wf)
}
func (rq *Request) maybeInputFloat(jid string, fn InputFloatFn) string {
var wf EventFn
if fn != nil {
wf = func(rq *Request, id, evt, val string) (err error) {
if evt == "input" {
var v float64
if val != "" {
if v, err = strconv.ParseFloat(val, 64); err != nil {
return
}
}
err = fn(rq, v)
}
return
}
}
return rq.RegisterEventFn(jid, wf)
}
func (rq *Request) maybeInputBool(jid string, fn InputBoolFn) string {
var wf EventFn
if fn != nil {
wf = func(rq *Request, id, evt, val string) (err error) {
if evt == "input" {
var v bool
if val != "" {
if v, err = strconv.ParseBool(val); err != nil {
return
}
}
err = fn(rq, v)
}
return
}
}
return rq.RegisterEventFn(jid, wf)
}
func (rq *Request) maybeInputDate(jid string, fn InputDateFn) string {
var wf EventFn
if fn != nil {
wf = func(rq *Request, id, evt, val string) (err error) {
if evt == "input" {
var v time.Time
if val != "" {
if v, err = time.Parse(ISO8601, val); err != nil {
return
}
}
err = fn(rq, v)
}
return
}
}
return rq.RegisterEventFn(jid, wf)
}