-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
47 lines (39 loc) · 955 Bytes
/
main.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 main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"os"
"github.com/willeslau/kafka-producer/eventqueue"
)
func main() {
broker := os.Args[1]
topic := os.Args[2]
config := eventqueue.KafkaConfig{broker}
producer, err := eventqueue.NewProducer(&config)
if err != nil {
panic(err)
}
defer producer.Close()
http.HandleFunc("/produce", getHandler(producer, topic))
log.Fatal(http.ListenAndServe(":8000", nil))
}
// Payload the payload
type Payload struct {
Message string
}
func getHandler(p eventqueue.Producer, topic string) func(w http.ResponseWriter, r *http.Request) {
fn := func(w http.ResponseWriter, r *http.Request) {
payload := Payload{}
err := json.NewDecoder(r.Body).Decode(&payload)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
fmt.Fprintf(w, "Error!")
return
}
p.Produce(topic, payload.Message)
fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
}
return fn
}