Merge pull request 'update-limit' (#15) from update-limit into master

Reviewed-on: #15
This commit is contained in:
sinhluu 2023-04-05 11:03:07 +00:00
commit 3d1c1d7538
1 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,8 @@ import (
"go.mongodb.org/mongo-driver/mongo/options" "go.mongodb.org/mongo-driver/mongo/options"
) )
const maxLimit = 500
// CommonQuery ... // CommonQuery ...
type CommonQuery struct { type CommonQuery struct {
Page int64 Page int64
@ -78,9 +80,12 @@ func (q *CommonQuery) GetFindOptionsUsingPage() *options.FindOptions {
// SetDefaultLimit ... // SetDefaultLimit ...
func (q *CommonQuery) SetDefaultLimit() { func (q *CommonQuery) SetDefaultLimit() {
if q.Limit <= 0 || q.Limit > 20 { if q.Limit <= 0 {
q.Limit = 20 q.Limit = 20
} }
if q.Limit > maxLimit {
q.Limit = 500
}
} }
// AssignOther ... // AssignOther ...