/vendor/github.com/micro/go-api/handler/event/event.go
https://github.com/pydio/cells · Go · 120 lines · 81 code · 22 blank · 17 comment · 12 complexity · b41f48744ee81a76cd24f73c7e4dad9d MD5 · raw file
- package event
- import (
- "fmt"
- "io/ioutil"
- "net/http"
- "path"
- "regexp"
- "strings"
- "time"
- "github.com/micro/go-api/handler"
- proto "github.com/micro/go-api/proto"
- "github.com/micro/util/go/lib/ctx"
- "github.com/pborman/uuid"
- )
- type event struct {
- options handler.Options
- }
- var (
- versionRe = regexp.MustCompilePOSIX("^v[0-9]+$")
- )
- func eventName(parts []string) string {
- return strings.Join(parts, ".")
- }
- func evRoute(ns, p string) (string, string) {
- p = path.Clean(p)
- p = strings.TrimPrefix(p, "/")
- if len(p) == 0 {
- return ns, "event"
- }
- parts := strings.Split(p, "/")
- // no path
- if len(parts) == 0 {
- // topic: namespace
- // action: event
- return strings.Trim(ns, "."), "event"
- }
- // Treat /v[0-9]+ as versioning
- // /v1/foo/bar => topic: v1.foo action: bar
- if len(parts) >= 2 && versionRe.Match([]byte(parts[0])) {
- topic := ns + "." + strings.Join(parts[:2], ".")
- action := eventName(parts[1:])
- return topic, action
- }
- // /foo => topic: ns.foo action: foo
- // /foo/bar => topic: ns.foo action: bar
- topic := ns + "." + strings.Join(parts[:1], ".")
- action := eventName(parts[1:])
- return topic, action
- }
- func (e *event) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- // request to topic:event
- // create event
- // publish to topic
- topic, action := evRoute(e.options.Namespace, r.URL.Path)
- // create event
- ev := &proto.Event{
- Name: action,
- // TODO: dedupe event
- Id: fmt.Sprintf("%s-%s-%s", topic, action, uuid.NewUUID().String()),
- Header: make(map[string]*proto.Pair),
- Timestamp: time.Now().Unix(),
- }
- // set headers
- for key, vals := range r.Header {
- header, ok := ev.Header[key]
- if !ok {
- header = &proto.Pair{
- Key: key,
- }
- ev.Header[key] = header
- }
- header.Values = vals
- }
- // set body
- b, err := ioutil.ReadAll(r.Body)
- if err != nil {
- http.Error(w, err.Error(), 500)
- return
- }
- ev.Data = string(b)
- // get client
- c := e.options.Service.Client()
- // create publication
- p := c.NewPublication(topic, ev)
- // publish event
- if err := c.Publish(ctx.FromRequest(r), p); err != nil {
- http.Error(w, err.Error(), 500)
- return
- }
- }
- func (e *event) String() string {
- return "event"
- }
- func NewHandler(opts ...handler.Option) handler.Handler {
- return &event{
- options: handler.NewOptions(opts...),
- }
- }