-
-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Neemias Almeida
committed
Jan 5, 2024
1 parent
d25a6af
commit 83a34bf
Showing
7 changed files
with
438 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
package runner | ||
|
||
import ( | ||
"bytes" | ||
"errors" | ||
"fmt" | ||
"io" | ||
"log" | ||
"net/http" | ||
"strconv" | ||
"strings" | ||
"syscall" | ||
"time" | ||
) | ||
|
||
type Reloader interface { | ||
AddSubscriber() *Subscriber | ||
RemoveSubscriber(id int) | ||
Reload() | ||
Stop() | ||
} | ||
|
||
type Proxy struct { | ||
server *http.Server | ||
config *cfgProxy | ||
stream Reloader | ||
} | ||
|
||
func NewProxy(cfg *cfgProxy) *Proxy { | ||
p := &Proxy{ | ||
config: cfg, | ||
server: &http.Server{ | ||
Addr: fmt.Sprintf("localhost:%d", cfg.Port), | ||
}, | ||
stream: NewProxyStream(), | ||
} | ||
return p | ||
} | ||
|
||
func (p *Proxy) Run() { | ||
http.HandleFunc("/", p.proxyHandler) | ||
http.HandleFunc("/internal/reload", p.reloadHandler) | ||
log.Fatal(p.server.ListenAndServe()) | ||
} | ||
|
||
func (p *Proxy) Stop() { | ||
p.server.Close() | ||
p.stream.Stop() | ||
} | ||
|
||
func (p *Proxy) Reload() { | ||
p.stream.Reload() | ||
} | ||
|
||
func (p *Proxy) injectLiveReload(origURL string, respBody io.ReadCloser) string { | ||
buf := new(bytes.Buffer) | ||
if _, err := buf.ReadFrom(respBody); err != nil { | ||
panic("failed to convert request body to bytes buffer") | ||
} | ||
s := buf.String() | ||
|
||
body := strings.LastIndex(s, "</body>") | ||
if body == -1 { | ||
panic("invalid html") | ||
} | ||
script := ` | ||
<script> | ||
const parser = new DOMParser(); | ||
const proxyURL = "http://localhost:%d"; | ||
new EventSource(proxyURL + "/internal/reload").onmessage = () => { | ||
fetch(proxyURL + "%s").then(res => res.text()).then(resStr => { | ||
const newPage = parser.parseFromString(resStr, "text/html"); | ||
document.replaceChild(newPage.documentElement, document.documentElement); | ||
}); | ||
}; | ||
</script> | ||
` | ||
parsedScript := fmt.Sprintf(script, p.config.Port, origURL) | ||
|
||
s = s[:body] + parsedScript + s[body:] | ||
return s | ||
} | ||
|
||
func (p *Proxy) proxyHandler(w http.ResponseWriter, r *http.Request) { | ||
url := fmt.Sprintf("http://localhost:%d", p.config.AppPort) | ||
req, err := http.NewRequest(r.Method, url, r.Body) | ||
if err != nil { | ||
panic(err) | ||
} | ||
req.Header.Set("X-Forwarded-For", r.RemoteAddr) | ||
|
||
client := &http.Client{} | ||
var resp *http.Response | ||
for i := 0; i < 10; i++ { | ||
resp, err = client.Do(req) | ||
if err == nil { | ||
break | ||
} | ||
if !errors.Is(err, syscall.ECONNREFUSED) { | ||
log.Fatalf("failed to call http://localhost:%d, err: %+v", p.config.AppPort, err) | ||
} | ||
time.Sleep(100 * time.Millisecond) | ||
} | ||
defer resp.Body.Close() | ||
|
||
// copy all headers except Content-Length | ||
for k, vv := range resp.Header { | ||
for _, v := range vv { | ||
if k == "Content-Length" { | ||
continue | ||
} | ||
w.Header().Add(k, v) | ||
} | ||
} | ||
w.WriteHeader(resp.StatusCode) | ||
|
||
if strings.Contains(resp.Header.Get("Content-Type"), "text/html") { | ||
s := p.injectLiveReload(r.URL.String(), resp.Body) | ||
w.Header().Set("Content-Length", strconv.Itoa((len([]byte(s))))) | ||
if _, err := io.WriteString(w, s); err != nil { | ||
panic("failed to write injected payload") | ||
} | ||
} else { | ||
w.Header().Set("Content-Length", resp.Header.Get("Content-Length")) | ||
if _, err := io.Copy(w, resp.Body); err != nil { | ||
panic("failed to write normal payload") | ||
} | ||
} | ||
} | ||
|
||
func (p *Proxy) reloadHandler(w http.ResponseWriter, r *http.Request) { | ||
flusher, err := w.(http.Flusher) | ||
if !err { | ||
http.Error(w, "Streaming unsupported!", http.StatusInternalServerError) | ||
return | ||
} | ||
|
||
w.Header().Set("Content-Type", "text/event-stream") | ||
w.Header().Set("Cache-Control", "no-cache") | ||
w.Header().Set("Connection", "keep-alive") | ||
|
||
sub := p.stream.AddSubscriber() | ||
go func() { | ||
<-r.Context().Done() | ||
p.stream.RemoveSubscriber(sub.id) | ||
}() | ||
|
||
w.WriteHeader(http.StatusOK) | ||
flusher.Flush() | ||
|
||
for range sub.reloadCh { | ||
fmt.Fprintf(w, "data: reload\n\n") | ||
flusher.Flush() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
package runner | ||
|
||
import ( | ||
"sync" | ||
) | ||
|
||
type ProxyStream struct { | ||
sync.Mutex | ||
subscribers map[int]*Subscriber | ||
count int | ||
} | ||
|
||
type Subscriber struct { | ||
id int | ||
reloadCh chan struct{} | ||
} | ||
|
||
func NewProxyStream() *ProxyStream { | ||
return &ProxyStream{subscribers: make(map[int]*Subscriber)} | ||
} | ||
|
||
func (stream *ProxyStream) Stop() { | ||
for id := range stream.subscribers { | ||
stream.RemoveSubscriber(id) | ||
} | ||
stream.count = 0 | ||
} | ||
|
||
func (stream *ProxyStream) AddSubscriber() *Subscriber { | ||
stream.Lock() | ||
defer stream.Unlock() | ||
stream.count++ | ||
|
||
sub := &Subscriber{id: stream.count, reloadCh: make(chan struct{})} | ||
stream.subscribers[stream.count] = sub | ||
return sub | ||
} | ||
|
||
func (stream *ProxyStream) RemoveSubscriber(id int) { | ||
stream.Lock() | ||
defer stream.Unlock() | ||
close(stream.subscribers[id].reloadCh) | ||
delete(stream.subscribers, id) | ||
} | ||
|
||
func (stream *ProxyStream) Reload() { | ||
for _, sub := range stream.subscribers { | ||
sub.reloadCh <- struct{}{} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
package runner | ||
|
||
import ( | ||
"sync" | ||
"testing" | ||
) | ||
|
||
func find(s map[int]*Subscriber, id int) bool { | ||
for _, sub := range s { | ||
if sub.id == id { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
func TestProxyStream(t *testing.T) { | ||
stream := NewProxyStream() | ||
|
||
var wg sync.WaitGroup | ||
for i := 0; i < 10; i++ { | ||
wg.Add(1) | ||
go func(i int) { | ||
defer wg.Done() | ||
_ = stream.AddSubscriber() | ||
}(i) | ||
} | ||
wg.Wait() | ||
|
||
if got, exp := len(stream.subscribers), 10; got != exp { | ||
t.Errorf("expected %d but got %d", exp, got) | ||
} | ||
|
||
go func() { | ||
stream.Reload() | ||
}() | ||
|
||
reloadCount := 0 | ||
for _, sub := range stream.subscribers { | ||
wg.Add(1) | ||
go func(sub *Subscriber) { | ||
defer wg.Done() | ||
<-sub.reloadCh | ||
reloadCount++ | ||
}(sub) | ||
} | ||
wg.Wait() | ||
|
||
if got, exp := reloadCount, 10; got != exp { | ||
t.Errorf("expected %d but got %d", exp, got) | ||
} | ||
|
||
stream.RemoveSubscriber(2) | ||
stream.AddSubscriber() | ||
if got, exp := find(stream.subscribers, 2), false; got != exp { | ||
t.Errorf("expected subscriber found to be %t but got %t", exp, got) | ||
} | ||
if got, exp := find(stream.subscribers, 11), true; got != exp { | ||
t.Errorf("expected subscriber found to be %t but got %t", exp, got) | ||
} | ||
|
||
stream.Stop() | ||
if got, exp := len(stream.subscribers), 0; got != exp { | ||
t.Errorf("expected %d but got %d", exp, got) | ||
} | ||
} |
Oops, something went wrong.