summaryrefslogtreecommitdiff
path: root/plugins/http/response.go
blob: 9700a16c357b61a82246909fee6d9d23db7006c4 (plain)
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
package http

import (
	"io"
	"net/http"
	"strings"
	"sync"

	"github.com/spiral/roadrunner/v2/internal"
)

// Response handles PSR7 response logic.
type Response struct {
	// Status contains response status.
	Status int `json:"status"`

	// Header contains list of response headers.
	Headers map[string][]string `json:"headers"`

	// associated Body payload.
	Body interface{}
	sync.Mutex
}

// NewResponse creates new response based on given pool payload.
func NewResponse(p internal.Payload) (*Response, error) {
	r := &Response{Body: p.Body}
	if err := json.Unmarshal(p.Context, r); err != nil {
		return nil, err
	}

	return r, nil
}

// Write writes response headers, status and body into ResponseWriter.
func (r *Response) Write(w http.ResponseWriter) error {
	// INFO map is the reference type in golang
	p := handlePushHeaders(r.Headers)
	if pusher, ok := w.(http.Pusher); ok {
		for _, v := range p {
			err := pusher.Push(v, nil)
			if err != nil {
				return err
			}
		}
	}

	handleTrailers(r.Headers)
	for n, h := range r.Headers {
		for _, v := range h {
			w.Header().Add(n, v)
		}
	}

	w.WriteHeader(r.Status)

	if data, ok := r.Body.([]byte); ok {
		_, err := w.Write(data)
		if err != nil {
			return handleWriteError(err)
		}
	}

	if rc, ok := r.Body.(io.Reader); ok {
		if _, err := io.Copy(w, rc); err != nil {
			return err
		}
	}

	return nil
}

func handlePushHeaders(h map[string][]string) []string {
	var p []string
	pushHeader, ok := h[http2pushHeaderKey]
	if !ok {
		return p
	}

	p = append(p, pushHeader...)

	delete(h, http2pushHeaderKey)

	return p
}

func handleTrailers(h map[string][]string) {
	trailers, ok := h[TrailerHeaderKey]
	if !ok {
		return
	}

	for _, tr := range trailers {
		for _, n := range strings.Split(tr, ",") {
			n = strings.Trim(n, "\t ")
			if v, ok := h[n]; ok {
				h["Trailer:"+n] = v

				delete(h, n)
			}
		}
	}

	delete(h, TrailerHeaderKey)
}