package handler import ( "encoding/json" "fmt" "github.com/wiretrustee/wiretrustee/management/server/jwtclaims" "net/http" "time" "github.com/gorilla/mux" log "github.com/sirupsen/logrus" "github.com/wiretrustee/wiretrustee/management/server" ) //Peers is a handler that returns peers of the account type Peers struct { accountManager server.AccountManager authAudience string jwtExtractor jwtclaims.ClaimsExtractor } //PeerResponse is a response sent to the client type PeerResponse struct { Name string IP string Connected bool LastSeen time.Time OS string Version string } //PeerRequest is a request sent by the client type PeerRequest struct { Name string } func NewPeers(accountManager server.AccountManager, authAudience string) *Peers { return &Peers{ accountManager: accountManager, authAudience: authAudience, jwtExtractor: *jwtclaims.NewClaimsExtractor(nil), } } func (h *Peers) updatePeer(accountId string, peer *server.Peer, w http.ResponseWriter, r *http.Request) { req := &PeerRequest{} peerIp := peer.IP err := json.NewDecoder(r.Body).Decode(&req) if err != nil { http.Error(w, err.Error(), http.StatusBadRequest) return } peer, err = h.accountManager.RenamePeer(accountId, peer.Key, req.Name) if err != nil { log.Errorf("failed updating peer %s under account %s %v", peerIp, accountId, err) http.Redirect(w, r, "/", http.StatusInternalServerError) return } writeJSONObject(w, toPeerResponse(peer)) } func (h *Peers) deletePeer(accountId string, peer *server.Peer, w http.ResponseWriter, r *http.Request) { _, err := h.accountManager.DeletePeer(accountId, peer.Key) if err != nil { log.Errorf("failed deleteing peer %s, %v", peer.IP, err) http.Redirect(w, r, "/", http.StatusInternalServerError) return } writeJSONObject(w, "") } func (h *Peers) getPeerAccount(r *http.Request) (*server.Account, error) { jwtClaims := h.jwtExtractor.ExtractClaimsFromRequestContext(r, h.authAudience) account, err := h.accountManager.GetAccountByUserOrAccountId(jwtClaims.UserId, jwtClaims.AccountId, jwtClaims.Domain) if err != nil { return nil, fmt.Errorf("failed getting account of a user %s: %v", jwtClaims.UserId, err) } return account, nil } func (h *Peers) HandlePeer(w http.ResponseWriter, r *http.Request) { account, err := h.getPeerAccount(r) if err != nil { log.Error(err) http.Redirect(w, r, "/", http.StatusInternalServerError) return } vars := mux.Vars(r) peerId := vars["id"] //effectively peer IP address if len(peerId) == 0 { http.Error(w, "invalid peer Id", http.StatusBadRequest) return } peer, err := h.accountManager.GetPeerByIP(account.Id, peerId) if err != nil { http.Error(w, "peer not found", http.StatusNotFound) return } switch r.Method { case http.MethodDelete: h.deletePeer(account.Id, peer, w, r) return case http.MethodPut: h.updatePeer(account.Id, peer, w, r) return case http.MethodGet: writeJSONObject(w, toPeerResponse(peer)) return default: http.Error(w, "", http.StatusNotFound) } } func (h *Peers) GetPeers(w http.ResponseWriter, r *http.Request) { switch r.Method { case http.MethodGet: account, err := h.getPeerAccount(r) if err != nil { log.Error(err) http.Redirect(w, r, "/", http.StatusInternalServerError) return } respBody := []*PeerResponse{} for _, peer := range account.Peers { respBody = append(respBody, toPeerResponse(peer)) } writeJSONObject(w, respBody) return default: http.Error(w, "", http.StatusNotFound) } } func toPeerResponse(peer *server.Peer) *PeerResponse { return &PeerResponse{ Name: peer.Name, IP: peer.IP.String(), Connected: peer.Status.Connected, LastSeen: peer.Status.LastSeen, OS: fmt.Sprintf("%s %s", peer.Meta.OS, peer.Meta.Core), Version: peer.Meta.WtVersion, } }