44 lines
920 B
Go
44 lines
920 B
Go
|
package http
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/hashicorp/vault/vault"
|
||
|
)
|
||
|
|
||
|
func handleSysLeader(core *vault.Core) http.Handler {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
switch r.Method {
|
||
|
case "GET":
|
||
|
handleSysLeaderGet(core, w, r)
|
||
|
default:
|
||
|
respondError(w, http.StatusMethodNotAllowed, nil)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func handleSysLeaderGet(core *vault.Core, w http.ResponseWriter, r *http.Request) {
|
||
|
haEnabled := true
|
||
|
isLeader, address, err := core.Leader()
|
||
|
if err == vault.ErrHANotEnabled {
|
||
|
haEnabled = false
|
||
|
err = nil
|
||
|
}
|
||
|
if err != nil {
|
||
|
respondError(w, http.StatusInternalServerError, err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
respondOk(w, &LeaderResponse{
|
||
|
HAEnabled: haEnabled,
|
||
|
IsSelf: isLeader,
|
||
|
LeaderAddress: address,
|
||
|
})
|
||
|
}
|
||
|
|
||
|
type LeaderResponse struct {
|
||
|
HAEnabled bool `json:"ha_enabled"`
|
||
|
IsSelf bool `json:"is_self"`
|
||
|
LeaderAddress string `json:"leader_address"`
|
||
|
}
|