2020-01-24 19:00:29 +00:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 13:20:29 -05:00
// SPDX-License-Identifier: MIT
2020-01-24 19:00:29 +00:00
2021-09-24 19:32:56 +08:00
package db
2020-01-24 19:00:29 +00:00
import (
2023-01-18 05:03:44 +08:00
"context"
2020-01-24 19:00:29 +00:00
"code.gitea.io/gitea/modules/setting"
2023-01-18 05:03:44 +08:00
"xorm.io/builder"
2020-01-24 19:00:29 +00:00
"xorm.io/xorm"
)
2022-06-13 17:37:59 +08:00
const (
// DefaultMaxInSize represents default variables number on IN () in SQL
DefaultMaxInSize = 50
)
2021-09-14 19:48:27 +02:00
// Paginator is the base for different ListOptions types
type Paginator interface {
GetSkipTake ( ) ( skip , take int )
GetStartEnd ( ) ( start , end int )
2023-01-18 05:03:44 +08:00
IsListAll ( ) bool
2020-01-24 19:00:29 +00:00
}
2021-09-24 19:32:56 +08:00
// GetPaginatedSession creates a paginated database session
func GetPaginatedSession ( p Paginator ) * xorm . Session {
2021-09-14 19:48:27 +02:00
skip , take := p . GetSkipTake ( )
2020-01-24 19:00:29 +00:00
2021-09-24 19:32:56 +08:00
return x . Limit ( take , skip )
2020-01-24 19:00:29 +00:00
}
2021-09-24 19:32:56 +08:00
// SetSessionPagination sets pagination for a database session
2021-11-21 23:41:00 +08:00
func SetSessionPagination ( sess Engine , p Paginator ) * xorm . Session {
2021-09-14 19:48:27 +02:00
skip , take := p . GetSkipTake ( )
2020-01-24 19:00:29 +00:00
2021-09-14 19:48:27 +02:00
return sess . Limit ( take , skip )
2020-01-24 19:00:29 +00:00
}
2021-09-24 19:32:56 +08:00
// SetEnginePagination sets pagination for a database engine
func SetEnginePagination ( e Engine , p Paginator ) Engine {
2021-09-14 19:48:27 +02:00
skip , take := p . GetSkipTake ( )
return e . Limit ( take , skip )
}
// ListOptions options to paginate results
type ListOptions struct {
PageSize int
2023-01-18 05:03:44 +08:00
Page int // start from 1
ListAll bool // if true, then PageSize and Page will not be taken
2021-09-14 19:48:27 +02:00
}
2020-01-24 19:00:29 +00:00
2023-01-18 05:03:44 +08:00
var _ Paginator = & ListOptions { }
2021-09-14 19:48:27 +02:00
// GetSkipTake returns the skip and take values
func ( opts * ListOptions ) GetSkipTake ( ) ( skip , take int ) {
2021-09-24 19:32:56 +08:00
opts . SetDefaultValues ( )
2021-09-14 19:48:27 +02:00
return ( opts . Page - 1 ) * opts . PageSize , opts . PageSize
2020-01-24 19:00:29 +00:00
}
2020-08-24 16:48:15 +01:00
// GetStartEnd returns the start and end of the ListOptions
2021-02-05 01:23:46 +08:00
func ( opts * ListOptions ) GetStartEnd ( ) ( start , end int ) {
2021-09-14 19:48:27 +02:00
start , take := opts . GetSkipTake ( )
end = start + take
2022-06-20 12:02:49 +02:00
return start , end
2020-08-24 16:48:15 +01:00
}
2023-01-18 05:03:44 +08:00
// IsListAll indicates PageSize and Page will be ignored
func ( opts * ListOptions ) IsListAll ( ) bool {
return opts . ListAll
}
2021-09-24 19:32:56 +08:00
// SetDefaultValues sets default values
func ( opts * ListOptions ) SetDefaultValues ( ) {
2020-06-10 18:23:22 +02:00
if opts . PageSize <= 0 {
opts . PageSize = setting . API . DefaultPagingNum
}
if opts . PageSize > setting . API . MaxResponseItems {
2020-01-24 19:00:29 +00:00
opts . PageSize = setting . API . MaxResponseItems
}
if opts . Page <= 0 {
opts . Page = 1
}
}
2021-09-14 19:48:27 +02:00
// AbsoluteListOptions absolute options to paginate results
type AbsoluteListOptions struct {
skip int
take int
}
2023-01-18 05:03:44 +08:00
var _ Paginator = & AbsoluteListOptions { }
2021-09-14 19:48:27 +02:00
// NewAbsoluteListOptions creates a list option with applied limits
func NewAbsoluteListOptions ( skip , take int ) * AbsoluteListOptions {
if skip < 0 {
skip = 0
}
if take <= 0 {
take = setting . API . DefaultPagingNum
}
if take > setting . API . MaxResponseItems {
take = setting . API . MaxResponseItems
}
return & AbsoluteListOptions { skip , take }
}
2023-01-18 05:03:44 +08:00
// IsListAll will always return false
func ( opts * AbsoluteListOptions ) IsListAll ( ) bool {
return false
}
2021-09-14 19:48:27 +02:00
// GetSkipTake returns the skip and take values
func ( opts * AbsoluteListOptions ) GetSkipTake ( ) ( skip , take int ) {
return opts . skip , opts . take
}
// GetStartEnd returns the start and end values
func ( opts * AbsoluteListOptions ) GetStartEnd ( ) ( start , end int ) {
return opts . skip , opts . skip + opts . take
}
2023-01-18 05:03:44 +08:00
// FindOptions represents a find options
type FindOptions interface {
Paginator
ToConds ( ) builder . Cond
}
// Find represents a common find function which accept an options interface
func Find [ T any ] ( ctx context . Context , opts FindOptions , objects * [ ] T ) error {
sess := GetEngine ( ctx ) . Where ( opts . ToConds ( ) )
if ! opts . IsListAll ( ) {
sess . Limit ( opts . GetSkipTake ( ) )
}
2023-02-24 21:17:09 +08:00
return sess . Find ( objects )
2023-01-18 05:03:44 +08:00
}
// Count represents a common count function which accept an options interface
func Count [ T any ] ( ctx context . Context , opts FindOptions , object T ) ( int64 , error ) {
return GetEngine ( ctx ) . Where ( opts . ToConds ( ) ) . Count ( object )
}
// FindAndCount represents a common findandcount function which accept an options interface
func FindAndCount [ T any ] ( ctx context . Context , opts FindOptions , objects * [ ] T ) ( int64 , error ) {
sess := GetEngine ( ctx ) . Where ( opts . ToConds ( ) )
if ! opts . IsListAll ( ) {
sess . Limit ( opts . GetSkipTake ( ) )
}
2023-02-24 21:17:09 +08:00
return sess . FindAndCount ( objects )
2023-01-18 05:03:44 +08:00
}