mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 16:47:11 +08:00
39 lines
871 B
Go
Executable File
39 lines
871 B
Go
Executable File
package api
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"github.com/luscis/openlan/pkg/cache"
|
|
"github.com/luscis/openlan/pkg/models"
|
|
"github.com/luscis/openlan/pkg/schema"
|
|
"net/http"
|
|
)
|
|
|
|
type Point struct {
|
|
}
|
|
|
|
func (h Point) Router(router *mux.Router) {
|
|
router.HandleFunc("/api/point", h.List).Methods("GET")
|
|
router.HandleFunc("/api/point/{id}", h.Get).Methods("GET")
|
|
}
|
|
|
|
func (h Point) List(w http.ResponseWriter, r *http.Request) {
|
|
points := make([]schema.Point, 0, 1024)
|
|
for u := range cache.Point.List() {
|
|
if u == nil {
|
|
break
|
|
}
|
|
points = append(points, models.NewPointSchema(u))
|
|
}
|
|
ResponseJson(w, points)
|
|
}
|
|
|
|
func (h Point) Get(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
point := cache.Point.Get(vars["id"])
|
|
if point != nil {
|
|
ResponseJson(w, models.NewPointSchema(point))
|
|
} else {
|
|
http.Error(w, vars["id"], http.StatusNotFound)
|
|
}
|
|
}
|