diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-25 02:52:18 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-25 02:52:18 -0800 |
commit | 93dcc43b1dd184a6e917862e4ee9a31d79411b26 (patch) | |
tree | 77d46962d5c9a5e8ac9ff944c3d3a1b49368aeb8 /api/rest.go | |
parent | 1f80266d6ef342a2ed89c76936afd1e16cf3001d (diff) |
rest: support local-rib URL
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/rest.go')
-rw-r--r-- | api/rest.go | 39 |
1 files changed, 34 insertions, 5 deletions
diff --git a/api/rest.go b/api/rest.go index aaeeabd0..a110019e 100644 --- a/api/rest.go +++ b/api/rest.go @@ -30,9 +30,9 @@ const ( REQ_NEIGHBORS REQ_ADJ_RIB_IN REQ_ADJ_RIB_OUT - REQ_ADJ_RIB_LOCAL - REQ_ADJ_RIB_LOCAL_BEST + REQ_LOCAL_RIB ) + const ( BASE_VERSION = "/v1" NEIGHBOR = "/bgp/neighbor" @@ -80,6 +80,7 @@ type RestResponse interface { type RestResponseDefault struct { ResponseErr error + Data []byte } func (r *RestResponseDefault) Err() error { @@ -137,12 +138,11 @@ func (rs *RestServer) Serve() { r := mux.NewRouter() // set URLs - r.HandleFunc(neighbor+"/{"+PARAM_REMOTE_PEER_ADDR+"}", rs.Neighbor).Methods("GET") // r.HandleFunc(neighbors, rs.Neighbors).Methods("GET") + r.HandleFunc(neighbor+"/{"+PARAM_REMOTE_PEER_ADDR+"}", rs.Neighbor).Methods("GET") // r.HandleFunc(adjRibIn+"/{"+PARAM_REMOTE_PEER_ADDR+"}", rs.AdjRibIn).Methods("GET") // r.HandleFunc(adjRibOut+"/{"+PARAM_REMOTE_PEER_ADDR+"}", rs.AdjRibOut).Methods("GET") - // r.HandleFunc(adjRibLocal+"/{"+PARAM_REMOTE_PEER_ADDR+"}", rs.AdjRibLocal).Methods("GET") - // r.HandleFunc(adjRibLocalBest+"/{"+PARAM_REMOTE_PEER_ADDR+"}", rs.AdjRibLocalBest).Methods("GET") + r.HandleFunc(neighbor+"/{"+PARAM_REMOTE_PEER_ADDR+"}/"+"local-rib", rs.NeighborLocalRib).Methods("GET") // Handler when not found url r.NotFoundHandler = http.HandlerFunc(NotFoundHandler) @@ -198,6 +198,35 @@ func (rs *RestServer) Neighbor(w http.ResponseWriter, r *http.Request) { w.Write(jns) } +// TODO: merge the above function +func (rs *RestServer) NeighborLocalRib(w http.ResponseWriter, r *http.Request) { + params := mux.Vars(r) + remoteAddr, found := params[PARAM_REMOTE_PEER_ADDR] + if !found { + errStr := "neighbor address is not specified" + log.Debug(errStr) + http.Error(w, errStr, http.StatusInternalServerError) + return + } + + log.Debugf("Look up neighbor with the remote address : %v", remoteAddr) + + //Send channel of request parameter. + req := NewRestRequest(REQ_LOCAL_RIB, remoteAddr) + rs.bgpServerCh <- req + + //Wait response + resInf := <-req.ResponseCh + if e := resInf.Err(); e != nil { + log.Debug(e.Error()) + http.Error(w, e.Error(), http.StatusInternalServerError) + return + } + + res := resInf.(*RestResponseDefault) + w.Write(res.Data) +} + func NotFoundHandler(w http.ResponseWriter, r *http.Request) { http.Error(w, http.StatusText(http.StatusNotFound), http.StatusNotFound) } |