mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-12 11:25:13 +00:00
Initial commit 🚀
This commit is contained in:
53
4-natours/after-section-10/utils/apiFeatures.js
Normal file
53
4-natours/after-section-10/utils/apiFeatures.js
Normal file
@@ -0,0 +1,53 @@
|
||||
class APIFeatures {
|
||||
constructor(query, queryString) {
|
||||
this.query = query;
|
||||
this.queryString = queryString;
|
||||
}
|
||||
|
||||
filter() {
|
||||
const queryObj = { ...this.queryString };
|
||||
const excludedFields = ['page', 'sort', 'limit', 'fields'];
|
||||
excludedFields.forEach(el => delete queryObj[el]);
|
||||
|
||||
// 1B) Advanced filtering
|
||||
let queryStr = JSON.stringify(queryObj);
|
||||
queryStr = queryStr.replace(/\b(gte|gt|lte|lt)\b/g, match => `$${match}`);
|
||||
|
||||
this.query = this.query.find(JSON.parse(queryStr));
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
sort() {
|
||||
if (this.queryString.sort) {
|
||||
const sortBy = this.queryString.sort.split(',').join(' ');
|
||||
this.query = this.query.sort(sortBy);
|
||||
} else {
|
||||
this.query = this.query.sort('-createdAt');
|
||||
}
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
limitFields() {
|
||||
if (this.queryString.fields) {
|
||||
const fields = this.queryString.fields.split(',').join(' ');
|
||||
this.query = this.query.select(fields);
|
||||
} else {
|
||||
this.query = this.query.select('-__v');
|
||||
}
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
paginate() {
|
||||
const page = this.queryString.page * 1 || 1;
|
||||
const limit = this.queryString.limit * 1 || 100;
|
||||
const skip = (page - 1) * limit;
|
||||
|
||||
this.query = this.query.skip(skip).limit(limit);
|
||||
|
||||
return this;
|
||||
}
|
||||
}
|
||||
module.exports = APIFeatures;
|
||||
Reference in New Issue
Block a user