]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/middlewares/pagination.ts
Merge branch 'signup-hooks' into 'develop'
[github/Chocobozzz/PeerTube.git] / server / middlewares / pagination.ts
index cadd769805ae7f393e14187a867db86c6d60f56d..043869303f72f0139de9dcbd377a83fbdc89e276 100644 (file)
@@ -1,17 +1,20 @@
-import { PAGINATION_COUNT_DEFAULT } from '../initializers'
+import * as express from 'express'
+import { PAGINATION } from '../initializers/constants'
 
-function setPagination (req, res, next) {
+function setDefaultPagination (req: express.Request, res: express.Response, next: express.NextFunction) {
   if (!req.query.start) req.query.start = 0
   else req.query.start = parseInt(req.query.start, 10)
 
-  if (!req.query.count) req.query.count = PAGINATION_COUNT_DEFAULT
+  if (!req.query.count) req.query.count = PAGINATION.COUNT.DEFAULT
   else req.query.count = parseInt(req.query.count, 10)
 
+  if (req.query.count > PAGINATION.COUNT.MAX) req.query.count = PAGINATION.COUNT.MAX
+
   return next()
 }
 
 // ---------------------------------------------------------------------------
 
 export {
-  setPagination
+  setDefaultPagination
 }