1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00
alice-lg-alice-lg/pkg/http/api_endpoints_neighbors.go
2021-12-06 10:03:17 +01:00

65 lines
1.5 KiB
Go

package http
import (
"net/http"
"sort"
"github.com/julienschmidt/httprouter"
"github.com/alice-lg/alice-lg/pkg/api"
"github.com/alice-lg/alice-lg/pkg/config"
)
// Handle get neighbors on routeserver
func (s *Server) apiNeighborsList(
req *http.Request,
params httprouter.Params,
) (response, error) {
ctx := req.Context()
rsID, err := validateSourceID(params.ByName("id"))
if err != nil {
return nil, err
}
var neighborsResponse *api.NeighborsResponse
// Try to fetch neighbors from store, only fall back
// to RS query if store is not ready yet
if s.neighborsStore.IsInitialized(rsID) {
status, err := s.neighborsStore.GetStatus(rsID)
neighbors, err := s.neighborsStore.GetNeighborsAt(ctx, rsID)
if err != nil {
return nil, err
}
// Make response
neighborsResponse = &api.NeighborsResponse{
Response: api.Response{
Meta: &api.Meta{
Version: config.Version,
CacheStatus: api.CacheStatus{
OrigTTL: 0,
CachedAt: status.LastRefresh,
},
ResultFromCache: true, // you bet!
TTL: s.neighborsStore.SourceCacheTTL(rsID),
},
},
Neighbors: neighbors,
}
} else {
source := s.cfg.SourceInstanceByID(rsID)
if source == nil {
return nil, ErrSourceNotFound
}
neighborsResponse, err = source.Neighbors()
if err != nil {
s.logSourceError("neighbors", rsID, err)
return nil, err
}
}
// Sort result
sort.Sort(&neighborsResponse.Neighbors)
return neighborsResponse, nil
}