mirror of
https://github.com/MeshCore-Beacon/beacon-server.git
synced 2026-09-20 02:34:24 +00:00
34 lines
821 B
Go
34 lines
821 B
Go
// Copyright 2026 Beacon Contributors
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
package handlers
|
|
|
|
import (
|
|
"errors"
|
|
"log"
|
|
"net/http"
|
|
"strconv"
|
|
)
|
|
|
|
const maxListLimit int32 = 200
|
|
|
|
// parseLimit caps the requested result size while retaining each endpoint's default.
|
|
func parseLimit(r *http.Request, defaultLimit int32) (int32, error) {
|
|
value := r.URL.Query().Get("limit")
|
|
if value == "" {
|
|
return defaultLimit, nil
|
|
}
|
|
limit, err := strconv.ParseInt(value, 10, 32)
|
|
if err != nil {
|
|
return 0, errors.New("limit must be an integer")
|
|
}
|
|
if limit <= 0 {
|
|
return 0, errors.New("limit must be positive")
|
|
}
|
|
if limit > int64(maxListLimit) {
|
|
log.Printf("api: clamped list limit from %d to %d for %s on %s", limit, maxListLimit, r.RemoteAddr, r.URL.Path)
|
|
return maxListLimit, nil
|
|
}
|
|
return int32(limit), nil
|
|
}
|