mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-26 10:03:47 +01:00
fd7282d3cf
* get account id from access token claim * use GetOrCreateAccountByUser and add test * correct account id claim * remove unused account * Idp manager interface * auth0 idp manager * use if instead of switch case * remove unnecessary lock * NewAuth0Manager * move idpmanager to its own package * update metadata when accountId is not supplied * update tests with idpmanager field * format * new idp manager and config support * validate if we fetch the interface before converting to string * split getJWTToken * improve tests * proper json fields and handle defer body close * fix ci lint notes * documentation and proper defer position * UpdateUserAppMetadata tests * update documentation * ManagerCredentials interface * Marshal and Unmarshal functions * fix tests * ManagerHelper and ManagerHTTPClient * further tests with mocking * rename package and custom http client * sync local packages * remove idp suffix
137 lines
3.6 KiB
Go
137 lines
3.6 KiB
Go
package handler
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"github.com/gorilla/mux"
|
|
log "github.com/sirupsen/logrus"
|
|
"github.com/wiretrustee/wiretrustee/management/server"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
//Peers is a handler that returns peers of the account
|
|
type Peers struct {
|
|
accountManager *server.AccountManager
|
|
authAudience string
|
|
}
|
|
|
|
//PeerResponse is a response sent to the client
|
|
type PeerResponse struct {
|
|
Name string
|
|
IP string
|
|
Connected bool
|
|
LastSeen time.Time
|
|
OS 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,
|
|
}
|
|
}
|
|
|
|
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) HandlePeer(w http.ResponseWriter, r *http.Request) {
|
|
userId, accountId := extractUserAndAccountIdFromRequestContext(r, h.authAudience)
|
|
//new user -> create a new account
|
|
account, err := h.accountManager.GetAccountByUserOrAccountId(userId, accountId)
|
|
if err != nil {
|
|
log.Errorf("failed getting account of a user %s: %v", userId, 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:
|
|
userId, accountId := extractUserAndAccountIdFromRequestContext(r, h.authAudience)
|
|
//new user -> create a new account
|
|
account, err := h.accountManager.GetAccountByUserOrAccountId(userId, accountId)
|
|
if err != nil {
|
|
log.Errorf("failed getting account of a user %s: %v", userId, 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),
|
|
}
|
|
}
|