mirror of
https://github.com/go-gitea/gitea.git
synced 2026-03-17 14:24:07 +00:00
Fixes 10 CodeQL code scanning alerts: - Change `NewPagination`/`SetLinkHeader` to accept `int64` for total count, clamping internally to fix incorrect-integer-conversion alerts ([#110](https://github.com/go-gitea/gitea/security/code-scanning/110), [#114](https://github.com/go-gitea/gitea/security/code-scanning/114), [#115](https://github.com/go-gitea/gitea/security/code-scanning/115), [#116](https://github.com/go-gitea/gitea/security/code-scanning/116)) - Use `strconv.Atoi()` in `htmlrenderer.go` to avoid int64 intermediate ([#105](https://github.com/go-gitea/gitea/security/code-scanning/105), [#106](https://github.com/go-gitea/gitea/security/code-scanning/106)) - Clamp regex match indices in `escape_stream.go` to fix allocation-size-overflow ([#161](https://github.com/go-gitea/gitea/security/code-scanning/161), [#162](https://github.com/go-gitea/gitea/security/code-scanning/162), [#163](https://github.com/go-gitea/gitea/security/code-scanning/163)) - Cap slice pre-allocation in `GetIssueDependencies` ([#181](https://github.com/go-gitea/gitea/security/code-scanning/181)) --------- Co-authored-by: Claude (Opus 4.6) <noreply@anthropic.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
69 lines
1.9 KiB
Go
69 lines
1.9 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package context
|
|
|
|
import (
|
|
"fmt"
|
|
"html/template"
|
|
"math"
|
|
"net/http"
|
|
"net/url"
|
|
"slices"
|
|
"strings"
|
|
|
|
"code.gitea.io/gitea/modules/container"
|
|
"code.gitea.io/gitea/modules/paginator"
|
|
)
|
|
|
|
// Pagination provides a pagination via paginator.Paginator and additional configurations for the link params used in rendering
|
|
type Pagination struct {
|
|
Paginater *paginator.Paginator
|
|
urlParams []string
|
|
}
|
|
|
|
// NewPagination creates a new instance of the Pagination struct.
|
|
// "total" is usually from database result "count int64", so it also uses int64
|
|
// "pagingNum" is "page size" or "limit", "current" is "page"
|
|
// total=-1 means only showing prev/next
|
|
func NewPagination(total int64, pagingNum, current, numPages int) *Pagination {
|
|
totalInt := int(min(total, int64(math.MaxInt)))
|
|
p := &Pagination{}
|
|
p.Paginater = paginator.New(totalInt, pagingNum, current, numPages)
|
|
return p
|
|
}
|
|
|
|
func (p *Pagination) WithCurRows(n int) *Pagination {
|
|
p.Paginater.SetCurRows(n)
|
|
return p
|
|
}
|
|
|
|
func (p *Pagination) AddParamFromQuery(q url.Values) {
|
|
for key, values := range q {
|
|
if key == "page" || len(values) == 0 || (len(values) == 1 && values[0] == "") {
|
|
continue
|
|
}
|
|
for _, value := range values {
|
|
urlParam := fmt.Sprintf("%s=%v", url.QueryEscape(key), url.QueryEscape(value))
|
|
p.urlParams = append(p.urlParams, urlParam)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (p *Pagination) AddParamFromRequest(req *http.Request) {
|
|
p.AddParamFromQuery(req.URL.Query())
|
|
}
|
|
|
|
func (p *Pagination) RemoveParam(keys container.Set[string]) {
|
|
p.urlParams = slices.DeleteFunc(p.urlParams, func(s string) bool {
|
|
k, _, _ := strings.Cut(s, "=")
|
|
k, _ = url.QueryUnescape(k)
|
|
return keys.Contains(k)
|
|
})
|
|
}
|
|
|
|
// GetParams returns the configured URL params
|
|
func (p *Pagination) GetParams() template.URL {
|
|
return template.URL(strings.Join(p.urlParams, "&"))
|
|
}
|