implementing more client ctl commands

This commit is contained in:
hyung-hwan 2024-11-26 09:41:15 +09:00
parent f62e77400a
commit fdae537c84
2 changed files with 79 additions and 2 deletions

View File

@ -2,6 +2,7 @@ package hodu
import "encoding/json" import "encoding/json"
import "net/http" import "net/http"
import "strconv"
/* /*
@ -12,10 +13,14 @@ import "net/http"
* /servers/1112123/peers * /servers/1112123/peers
*/ */
type http_errmsg struct { type json_errmsg struct {
Text string `json:"error-text"` Text string `json:"error-text"`
} }
type json_peer_addr struct {
PeerAddr string `json:"peer-addr"`
}
type client_ctl_servers struct { type client_ctl_servers struct {
c *Client c *Client
} }
@ -24,6 +29,10 @@ type client_ctl_servers_id struct {
c *Client c *Client
} }
type client_ctl_servers_id_peers struct {
c *Client
}
type client_ctl_clients struct { type client_ctl_clients struct {
c *Client c *Client
} }
@ -81,7 +90,7 @@ func (ctl *client_ctl_servers) ServeHTTP(w http.ResponseWriter, req *http.Reques
var je *json.Encoder var je *json.Encoder
status_code = http.StatusInternalServerError; w.WriteHeader(status_code) status_code = http.StatusInternalServerError; w.WriteHeader(status_code)
je = json.NewEncoder(w) je = json.NewEncoder(w)
if err = je.Encode(http_errmsg{Text: err.Error()}); err != nil { goto oops } if err = je.Encode(json_errmsg{Text: err.Error()}); err != nil { goto oops }
} else { } else {
var je *json.Encoder var je *json.Encoder
status_code = http.StatusCreated; w.WriteHeader(status_code) status_code = http.StatusCreated; w.WriteHeader(status_code)
@ -134,6 +143,58 @@ bad_request:
return return
} }
func (ctl *client_ctl_servers_id_peers) ServeHTTP(w http.ResponseWriter, req *http.Request) {
var c *Client
var status_code int
var err error
var id string
c = ctl.c
id = req.PathValue("id")
switch req.Method {
case http.MethodGet:
case http.MethodPost:
var s json_peer_addr
var cts *ClientConn
var nid uint64
err = json.NewDecoder(req.Body).Decode(&s)
if err != nil {
status_code = http.StatusBadRequest; w.WriteHeader(status_code)
goto done
}
nid, err = strconv.ParseUint(id, 10, 32)
if err != nil {
status_code = http.StatusBadRequest; w.WriteHeader(status_code)
goto done
}
cts = c.FindClientConnById(uint32(nid))
if cts == nil {
status_code = http.StatusNotFound; w.WriteHeader(status_code)
} else {
//cts.AddPeerAddr()
status_code = http.StatusCreated; w.WriteHeader(status_code)
}
default:
status_code = http.StatusBadRequest; w.WriteHeader(status_code)
}
done:
// TODO: need to handle x-forwarded-for and other stuff? this is not a real web service, though
c.log.Write("", LOG_DEBUG, "[%s] %s %s %d", req.RemoteAddr, req.Method, req.URL.String(), status_code) // TODO: time taken
return
/*
oops:
c.log.Write("", LOG_ERROR, "[%s] %s %s - %s", req.RemoteAddr, req.Method, req.URL.String(), err.Error())
return
*/
}
// ------------------------------------ // ------------------------------------
func (ctl *client_ctl_clients) ServeHTTP(w http.ResponseWriter, req *http.Request) { func (ctl *client_ctl_clients) ServeHTTP(w http.ResponseWriter, req *http.Request) {

View File

@ -723,6 +723,7 @@ func NewClient(ctx context.Context, listen_on string, logger Logger, tlscfg *tls
c.mux = http.NewServeMux() c.mux = http.NewServeMux()
c.mux.Handle("/servers", &client_ctl_servers{c: &c}) c.mux.Handle("/servers", &client_ctl_servers{c: &c})
c.mux.Handle("/servers/{id}", &client_ctl_servers_id{c: &c}) c.mux.Handle("/servers/{id}", &client_ctl_servers_id{c: &c})
c.mux.Handle("/servers/{id}/peers", &client_ctl_servers_id_peers{c: &c})
c.mux.Handle("/clients", &client_ctl_clients{c: &c}) c.mux.Handle("/clients", &client_ctl_clients{c: &c})
c.mux.Handle("/clients/{id}", &client_ctl_clients_id{c: &c}) c.mux.Handle("/clients/{id}", &client_ctl_clients_id{c: &c})
@ -774,6 +775,21 @@ fmt.Printf("REMOVEDDDDDD CONNECTION FROM %s total servers %d\n", cts.saddr, len(
c.cts_mtx.Unlock() c.cts_mtx.Unlock()
} }
func (c *Client) FindClientConnById(id uint32) *ClientConn {
var cts *ClientConn
var ok bool
c.cts_mtx.Lock()
defer c.cts_mtx.Unlock()
cts, ok = c.cts_map_by_id[id]
if !ok {
return nil
}
return cts
}
func (c *Client) ReqStop() { func (c *Client) ReqStop() {
if c.stop_req.CompareAndSwap(false, true) { if c.stop_req.CompareAndSwap(false, true) {
var cts *ClientConn var cts *ClientConn