-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransaport.go
49 lines (42 loc) · 918 Bytes
/
transaport.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
package main
import (
"fmt"
"log"
"net/http"
"strings"
)
type HTTPProducer struct {
listenAddr string
producech chan<- MessageToTopic
}
func NewHTTPProducer(listenAddr string, producech chan MessageToTopic) *HTTPProducer {
return &HTTPProducer{
listenAddr: listenAddr,
producech: producech,
}
}
func (p *HTTPProducer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
var (
path = strings.TrimPrefix(r.URL.Path, "/")
parts = strings.Split(path, "/")
)
// // commit
// if r.Method == "GET" {
// }
if r.Method == "POST" {
if len(parts) != 2 {
fmt.Println("invalid action")
return
}
topic := parts[1]
p.producech <- MessageToTopic{
Payload: []byte("we don't know yet"),
Topic: topic,
}
fmt.Println(topic)
}
}
func (p *HTTPProducer) Start() error {
log.Printf("HTTP transport started at port = %s", p.listenAddr)
return http.ListenAndServe(p.listenAddr, p)
}