summaryrefslogtreecommitdiff
path: root/input/http.go
blob: 285f1f6938ddd1291e6f6f058f4a495c9b9f4207 (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
package input

import (
	"fmt"
	"io/ioutil"
	"net/http"

	"github.com/Shugyousha/stasher/work"
)

type HTTPInput struct {
	retchan chan *work.Work
	prefix  string
	port    string
}

func NewHTTPInput(prefix, port string) *HTTPInput {
	return &HTTPInput{prefix: prefix, port: port}
}

func (hi *HTTPInput) httphandler(w http.ResponseWriter, r *http.Request) {
	if r.Method != "POST" {
		fmt.Printf("Expected POST method was: %q\n", r.Method)
		return
	}
	all, err := ioutil.ReadAll(r.Body)
	if err != nil {
		fmt.Printf("Error when reading HTTP request body: %q\n", err)
		return
	}
	hi.retchan <- &work.Work{Data: all}
}

func (hi *HTTPInput) Start() chan *work.Work {
	hi.retchan = make(chan *work.Work, 100)

	go func() {
		http.HandleFunc("/"+hi.prefix, hi.httphandler)
		err := http.ListenAndServe(hi.port, nil)
		fmt.Printf("Error when serving HTTP: %q\n", err)
		close(hi.retchan)
	}()

	return hi.retchan
}