mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
102 lines
2.5 KiB
Go
102 lines
2.5 KiB
Go
package main
|
|
|
|
import (
|
|
"compress/gzip"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/ecix/alice-lg/backend/api"
|
|
|
|
"github.com/julienschmidt/httprouter"
|
|
)
|
|
|
|
// Alice LG Rest API
|
|
//
|
|
// The API provides endpoints for getting
|
|
// information from the routeservers / alice datasources.
|
|
//
|
|
// Endpoints:
|
|
//
|
|
// Config
|
|
// Show /api/config
|
|
//
|
|
// Routeservers
|
|
// List /api/routeservers
|
|
// Status /api/routeservers/:id/status
|
|
// Neighbours /api/routeservers/:id/neighbours
|
|
// Routes /api/routeservers/:id/neighbours/:neighbour_id/routes
|
|
//
|
|
|
|
type apiEndpoint func(*http.Request, httprouter.Params) (api.Response, error)
|
|
|
|
// Wrap handler for access controll, throtteling and compression
|
|
func endpoint(wrapped apiEndpoint) httprouter.Handle {
|
|
return func(res http.ResponseWriter,
|
|
req *http.Request,
|
|
params httprouter.Params) {
|
|
|
|
// Get result from handler
|
|
result, err := wrapped(req, params)
|
|
if err != nil {
|
|
result = api.ErrorResponse{
|
|
Error: err.Error(),
|
|
}
|
|
payload, _ := json.Marshal(result)
|
|
http.Error(res, string(payload), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
// Encode json
|
|
payload, err := json.Marshal(result)
|
|
|
|
// Set response header
|
|
res.Header().Set("Content-Type", "application/json")
|
|
|
|
// Check if compression is supported
|
|
if strings.Contains(req.Header.Get("Accept-Encoding"), "gzip") {
|
|
// Compress response
|
|
res.Header().Set("Content-Encoding", "gzip")
|
|
gz := gzip.NewWriter(res)
|
|
defer gz.Close()
|
|
gz.Write(payload)
|
|
} else {
|
|
res.Write(payload) // Fall back to uncompressed response
|
|
}
|
|
}
|
|
}
|
|
|
|
// Register api endpoints
|
|
func apiRegisterEndpoints(router *httprouter.Router) error {
|
|
|
|
// Config
|
|
router.GET("/api/config", endpoint(apiConfigShow))
|
|
|
|
// Routeservers
|
|
|
|
return nil
|
|
}
|
|
|
|
// Handle Config Endpoint
|
|
func apiConfigShow(_req *http.Request, _params httprouter.Params) (api.Response, error) {
|
|
result := api.ConfigResponse{
|
|
Rejection: api.Rejection{
|
|
Asn: AliceConfig.Ui.RoutesRejections.Asn,
|
|
RejectId: AliceConfig.Ui.RoutesRejections.RejectId,
|
|
},
|
|
RejectReasons: AliceConfig.Ui.RoutesRejections.Reasons,
|
|
Noexport: api.Noexport{
|
|
Asn: AliceConfig.Ui.RoutesNoexports.Asn,
|
|
NoexportId: AliceConfig.Ui.RoutesNoexports.NoexportId,
|
|
},
|
|
NoexportReasons: AliceConfig.Ui.RoutesNoexports.Reasons,
|
|
RoutesColumns: AliceConfig.Ui.RoutesColumns,
|
|
}
|
|
return result, nil
|
|
}
|
|
|
|
// Handle Routeservers List
|
|
func apiRouteserversList(_req *http.Request, _params httprouter.Params) (api.Response, error) {
|
|
return "foo", nil
|
|
}
|