mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
41 lines
976 B
Go
41 lines
976 B
Go
package v1
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
etcdErr "github.com/coreos/etcd/error"
|
|
"github.com/coreos/etcd/store"
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
// Watches a given key prefix for changes.
|
|
func WatchKeyHandler(w http.ResponseWriter, req *http.Request, s Server) error {
|
|
var err error
|
|
vars := mux.Vars(req)
|
|
key := "/" + vars["key"]
|
|
|
|
// Create a command to watch from a given index (default 0).
|
|
var sinceIndex uint64 = 0
|
|
if req.Method == "POST" {
|
|
sinceIndex, err = strconv.ParseUint(string(req.FormValue("index")), 10, 64)
|
|
if err != nil {
|
|
return etcdErr.NewError(203, "Watch From Index", store.UndefIndex, store.UndefTerm)
|
|
}
|
|
}
|
|
|
|
// Start the watcher on the store.
|
|
c, err := s.Store().Watch(key, false, sinceIndex, s.CommitIndex(), s.Term())
|
|
if err != nil {
|
|
return etcdErr.NewError(500, key, store.UndefIndex, store.UndefTerm)
|
|
}
|
|
event := <-c
|
|
|
|
b, _ := json.Marshal(event.Response())
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write(b)
|
|
|
|
return nil
|
|
}
|