mirror of
https://github.com/coder/coder.git
synced 2025-03-14 10:09:57 +00:00
35 lines
1.1 KiB
Go
35 lines
1.1 KiB
Go
package coderd
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/coder/coder/v2/coderd/httpapi"
|
|
"github.com/coder/coder/v2/codersdk"
|
|
)
|
|
|
|
// parsePagination extracts pagination query params from the http request.
|
|
// If an error is encountered, the error is written to w and ok is set to false.
|
|
func parsePagination(w http.ResponseWriter, r *http.Request) (p codersdk.Pagination, ok bool) {
|
|
ctx := r.Context()
|
|
queryParams := r.URL.Query()
|
|
parser := httpapi.NewQueryParamParser()
|
|
params := codersdk.Pagination{
|
|
AfterID: parser.UUID(queryParams, uuid.Nil, "after_id"),
|
|
// A limit of 0 should be interpreted by the SQL query as "null" or
|
|
// "no limit". Do not make this value anything besides 0.
|
|
Limit: int(parser.PositiveInt32(queryParams, 0, "limit")),
|
|
Offset: int(parser.PositiveInt32(queryParams, 0, "offset")),
|
|
}
|
|
if len(parser.Errors) > 0 {
|
|
httpapi.Write(ctx, w, http.StatusBadRequest, codersdk.Response{
|
|
Message: "Query parameters have invalid values.",
|
|
Validations: parser.Errors,
|
|
})
|
|
return params, false
|
|
}
|
|
|
|
return params, true
|
|
}
|