aboutsummaryrefslogtreecommitdiffstats
path: root/services/context/pagination.go
blob: 42117cf96de88452cea02ab1f57074457794a886 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package context

import (
	"fmt"
	"html/template"
	"net/http"
	"net/url"
	"strings"

	"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.
// "pagingNum" is "page size" or "limit", "current" is "page"
func NewPagination(total, pagingNum, current, numPages int) *Pagination {
	p := &Pagination{}
	p.Paginater = paginator.New(total, pagingNum, current, numPages)
	return p
}

// AddParamString adds a string parameter directly
func (p *Pagination) AddParamString(key, value string) {
	urlParam := fmt.Sprintf("%s=%v", url.QueryEscape(key), url.QueryEscape(value))
	p.urlParams = append(p.urlParams, urlParam)
}

func (p *Pagination) AddParamFromRequest(req *http.Request) {
	for key, values := range req.URL.Query() {
		if key == "page" || len(values) == 0 {
			continue
		}
		for _, value := range values {
			urlParam := fmt.Sprintf("%s=%v", key, url.QueryEscape(value))
			p.urlParams = append(p.urlParams, urlParam)
		}
	}
}

// GetParams returns the configured URL params
func (p *Pagination) GetParams() template.URL {
	return template.URL(strings.Join(p.urlParams, "&"))
}

// SetDefaultParams sets common pagination params that are often used
func (p *Pagination) SetDefaultParams(ctx *Context) {
	if v, ok := ctx.Data["SortType"].(string); ok {
		p.AddParamString("sort", v)
	}
	if v, ok := ctx.Data["Keyword"].(string); ok {
		p.AddParamString("q", v)
	}
	if v, ok := ctx.Data["IsFuzzy"].(bool); ok {
		p.AddParamString("fuzzy", fmt.Sprint(v))
	}
	// do not add any more uncommon params here!
}