| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279 |
- package main
- import (
- "net/http"
- "strconv"
- "time"
- )
- //-------------------------------------------------------------------
- // Handlers to handle etcd-store related request via raft client port
- //-------------------------------------------------------------------
- // Multiplex GET/POST/DELETE request to corresponding handlers
- func Multiplexer(w http.ResponseWriter, req *http.Request) {
- if req.Method == "GET" {
- GetHttpHandler(&w, req)
- } else if req.Method == "POST" {
- SetHttpHandler(&w, req)
- } else if req.Method == "DELETE" {
- DeleteHttpHandler(&w, req)
- } else {
- w.WriteHeader(http.StatusMethodNotAllowed)
- return
- }
- }
- //--------------------------------------
- // State sensitive handlers
- // Set/Delte will dispatch to leader
- //--------------------------------------
- // Set Command Handler
- func SetHttpHandler(w *http.ResponseWriter, req *http.Request) {
- key := req.URL.Path[len("/v1/keys/"):]
- debug("[recv] POST http://%v/v1/keys/%s", raftServer.Name(), key)
- command := &SetCommand{}
- command.Key = key
- command.Value = req.FormValue("value")
- strDuration := req.FormValue("ttl")
- var err error
- command.ExpireTime, err = durationToExpireTime(strDuration)
- if err != nil {
- warn("The given duration is not a number: %v", err)
- (*w).WriteHeader(http.StatusInternalServerError)
- }
- dispatch(command, w, req, true)
- }
- // TestAndSet handler
- func TestAndSetHttpHandler(w http.ResponseWriter, req *http.Request) {
- key := req.URL.Path[len("/v1/testAndSet/"):]
- debug("[recv] POST http://%v/v1/testAndSet/%s", raftServer.Name(), key)
- command := &TestAndSetCommand{}
- command.Key = key
- command.PrevValue = req.FormValue("prevValue")
- command.Value = req.FormValue("value")
- strDuration := req.FormValue("ttl")
- var err error
- command.ExpireTime, err = durationToExpireTime(strDuration)
- if err != nil {
- warn("The given duration is not a number: %v", err)
- w.WriteHeader(http.StatusInternalServerError)
- }
- dispatch(command, &w, req, true)
- }
- // Delete Handler
- func DeleteHttpHandler(w *http.ResponseWriter, req *http.Request) {
- key := req.URL.Path[len("/v1/keys/"):]
- debug("[recv] DELETE http://%v/v1/keys/%s", raftServer.Name(), key)
- command := &DeleteCommand{}
- command.Key = key
- dispatch(command, w, req, true)
- }
- // Dispatch the command to leader
- func dispatch(c Command, w *http.ResponseWriter, req *http.Request, client bool) {
- if raftServer.State() == "leader" {
- if body, err := raftServer.Do(c); err != nil {
- warn("Commit failed %v", err)
- (*w).WriteHeader(http.StatusInternalServerError)
- return
- } else {
- (*w).WriteHeader(http.StatusOK)
- if body == nil {
- return
- }
- body, ok := body.([]byte)
- if !ok {
- panic("wrong type")
- }
- (*w).Write(body)
- return
- }
- } else {
- // current no leader
- if raftServer.Leader() == "" {
- (*w).WriteHeader(http.StatusInternalServerError)
- return
- }
- // tell the client where is the leader
- path := req.URL.Path
- var scheme string
- if scheme = req.URL.Scheme; scheme == "" {
- scheme = "http://"
- }
- var url string
- if client {
- url = scheme + raftTransporter.GetLeaderClientAddress() + path
- } else {
- url = scheme + raftServer.Leader() + path
- }
- debug("Redirect to %s", url)
- http.Redirect(*w, req, url, http.StatusTemporaryRedirect)
- return
- }
- (*w).WriteHeader(http.StatusInternalServerError)
- return
- }
- //--------------------------------------
- // State non-sensitive handlers
- // will not dispatch to leader
- // TODO: add sensitive version for these
- // command?
- //--------------------------------------
- // Handler to return the current leader name
- func LeaderHttpHandler(w http.ResponseWriter, req *http.Request) {
- w.WriteHeader(http.StatusOK)
- w.Write([]byte(raftServer.Leader()))
- }
- // Get Handler
- func GetHttpHandler(w *http.ResponseWriter, req *http.Request) {
- key := req.URL.Path[len("/v1/keys/"):]
- debug("[recv] GET http://%v/v1/keys/%s", raftServer.Name(), key)
- command := &GetCommand{}
- command.Key = key
- if body, err := command.Apply(raftServer); err != nil {
- warn("raftd: Unable to write file: %v", err)
- (*w).WriteHeader(http.StatusInternalServerError)
- return
- } else {
- (*w).WriteHeader(http.StatusOK)
- body, ok := body.([]byte)
- if !ok {
- panic("wrong type")
- }
- (*w).Write(body)
- return
- }
- }
- // List Handler
- func ListHttpHandler(w http.ResponseWriter, req *http.Request) {
- prefix := req.URL.Path[len("/v1/list/"):]
- debug("[recv] GET http://%v/v1/list/%s", raftServer.Name(), prefix)
- command := &ListCommand{}
- command.Prefix = prefix
- if body, err := command.Apply(raftServer); err != nil {
- warn("Unable to write file: %v", err)
- w.WriteHeader(http.StatusInternalServerError)
- return
- } else {
- w.WriteHeader(http.StatusOK)
- body, ok := body.([]byte)
- if !ok {
- panic("wrong type")
- }
- w.Write(body)
- return
- }
- }
- // Watch handler
- func WatchHttpHandler(w http.ResponseWriter, req *http.Request) {
- key := req.URL.Path[len("/v1/watch/"):]
- command := &WatchCommand{}
- command.Key = key
- if req.Method == "GET" {
- debug("[recv] GET http://%v/watch/%s", raftServer.Name(), key)
- command.SinceIndex = 0
- } else if req.Method == "POST" {
- // watch from a specific index
- debug("[recv] POST http://%v/watch/%s", raftServer.Name(), key)
- content := req.FormValue("index")
- sinceIndex, err := strconv.ParseUint(string(content), 10, 64)
- if err != nil {
- w.WriteHeader(http.StatusBadRequest)
- }
- command.SinceIndex = sinceIndex
- } else {
- w.WriteHeader(http.StatusMethodNotAllowed)
- return
- }
- if body, err := command.Apply(raftServer); err != nil {
- warn("Unable to do watch command: %v", err)
- w.WriteHeader(http.StatusInternalServerError)
- return
- } else {
- w.WriteHeader(http.StatusOK)
- body, ok := body.([]byte)
- if !ok {
- panic("wrong type")
- }
- w.Write(body)
- return
- }
- }
- // Convert string duration to time format
- func durationToExpireTime(strDuration string) (time.Time, error) {
- if strDuration != "" {
- duration, err := strconv.Atoi(strDuration)
- if err != nil {
- return time.Unix(0, 0), err
- }
- return time.Now().Add(time.Second * (time.Duration)(duration)), nil
- } else {
- return time.Unix(0, 0), nil
- }
- }
|