-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathhandler.go
47 lines (38 loc) · 995 Bytes
/
handler.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
package session
import (
"encoding/json"
"net/http"
"github.com/rviscarra/webrtc-speech-to-text/internal/rtc"
)
// MakeHandler returns an HTTP handler for the session service
func MakeHandler(webrtc rtc.Service) http.Handler {
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
if r.Method != "POST" {
w.WriteHeader(http.StatusMethodNotAllowed)
return
}
dec := json.NewDecoder(r.Body)
req := newSessionRequest{}
if err := dec.Decode(&req); err != nil {
w.WriteHeader(http.StatusBadRequest)
return
}
peer, err := webrtc.CreatePeerConnection()
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
}
answer, err := peer.ProcessOffer(req.Offer)
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
}
payload, err := json.Marshal(newSessionResponse{
Answer: answer,
})
if err != nil {
w.WriteHeader(http.StatusInternalServerError)
}
w.Write(payload)
})
return mux
}