2024-04-14 17:30:04 +07:00
|
|
|
package routes
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/tigorlazuardi/redmage/api"
|
|
|
|
"github.com/tigorlazuardi/redmage/pkg/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (routes *Routes) APIDeviceList(rw http.ResponseWriter, r *http.Request) {
|
|
|
|
ctx, span := tracer.Start(r.Context(), "*Routes.APIDeviceList")
|
|
|
|
defer span.End()
|
|
|
|
|
|
|
|
query := parseApiDeviceListQueries(r)
|
|
|
|
|
|
|
|
result, err := routes.API.DevicesList(ctx, query)
|
|
|
|
if err != nil {
|
|
|
|
rw.WriteHeader(http.StatusInternalServerError)
|
|
|
|
_ = json.NewEncoder(rw).Encode(map[string]string{"error": err.Error()})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := json.NewEncoder(rw).Encode(result); err != nil {
|
|
|
|
log.New(ctx).Err(err).Error("failed to marshal json api devices")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseApiDeviceListQueries(req *http.Request) (params api.DevicesListParams) {
|
|
|
|
params.All, _ = strconv.ParseBool(req.FormValue("all"))
|
|
|
|
params.Offset, _ = strconv.ParseInt(req.FormValue("offset"), 10, 64)
|
|
|
|
params.Limit, _ = strconv.ParseInt(req.FormValue("limit"), 10, 64)
|
2024-04-24 21:57:13 +07:00
|
|
|
params.Q = req.FormValue("q")
|
|
|
|
params.OrderBy = req.FormValue("order")
|
|
|
|
params.Sort = req.FormValue("sort")
|
2024-04-14 17:30:04 +07:00
|
|
|
|
|
|
|
if params.Limit < 1 {
|
|
|
|
params.Limit = 10
|
|
|
|
}
|
|
|
|
|
2024-04-24 21:57:13 +07:00
|
|
|
if params.OrderBy == "" {
|
|
|
|
params.OrderBy = "name"
|
|
|
|
}
|
|
|
|
|
2024-04-14 17:30:04 +07:00
|
|
|
return params
|
|
|
|
}
|