File tree 2 files changed +30
-15
lines changed
2 files changed +30
-15
lines changed Original file line number Diff line number Diff line change @@ -23,18 +23,19 @@ function ifObjectIsEmpty(object) {
23
23
24
24
exports . getAllProducts = catchAsync ( async ( req , res , next ) => {
25
25
const products = new APIFeatures ( Product . find ( ) , req . query )
26
- . filter ( )
26
+ ? .filter ( )
27
27
?. sort ( )
28
- ?. limitFields ( ) ;
28
+ ?. limitFields ( )
29
+ ?. limitResults ( ) ;
29
30
30
31
// Check if valid promise is got
31
- if ( ! products )
32
- return next (
33
- new AppError (
34
- 'Please provide a valid query parameters check documentation!' ,
35
- 400
36
- )
37
- ) ;
32
+ // if (!products)
33
+ // return next(
34
+ // new AppError(
35
+ // 'Please provide a valid query parameters check documentation!',
36
+ // 400
37
+ // )
38
+ // );
38
39
39
40
const result = await products . model ;
40
41
// check if first item got any item in there
Original file line number Diff line number Diff line change @@ -5,14 +5,20 @@ class APIFeatures {
5
5
}
6
6
7
7
filter ( ) {
8
- const queryObj = { ...this . queryString } ;
9
- const excludedFields = [ 'sort' , 'fields' , 'limit' ] ;
10
- excludedFields . forEach ( ( el ) => delete queryObj [ el ] ) ;
8
+ if ( this . queryString ) {
9
+ const queryObj = { ...this . queryString } ;
10
+ const excludedFields = [ 'sort' , 'fields' , 'limit' ] ;
11
+ excludedFields . forEach ( ( el ) => delete queryObj [ el ] ) ;
11
12
12
- let queryStr = JSON . stringify ( queryObj ) ;
13
- queryStr = queryStr . replace ( / \b ( g t | g t e | l t | l t e ) \b / g, ( match ) => `$${ match } ` ) ;
13
+ let queryStr = JSON . stringify ( queryObj ) ;
14
+ queryStr = queryStr . replace (
15
+ / \b ( g t | g t e | l t | l t e ) \b / g,
16
+ ( match ) => `$${ match } `
17
+ ) ;
14
18
15
- this . model = this . model . find ( JSON . parse ( queryStr ) ) ;
19
+ this . model = this . model . find ( JSON . parse ( queryStr ) ) ;
20
+ return this ;
21
+ }
16
22
return this ;
17
23
}
18
24
@@ -40,6 +46,14 @@ class APIFeatures {
40
46
41
47
return this ;
42
48
}
49
+
50
+ limitResults ( ) {
51
+ if ( this . queryString . limit ) {
52
+ this . model = this . model . limit ( this . queryString . limit * 1 ) ;
53
+ return this ;
54
+ }
55
+ return this ;
56
+ }
43
57
}
44
58
45
59
module . exports = APIFeatures ;
You can’t perform that action at this time.
0 commit comments