GithubHelp home page GithubHelp logo

Comments (3)

bitbay avatar bitbay commented on May 27, 2024 2

Isn't this akin to what's mentioned at mongoose tutorials on working with dates - querying?

Users.find({ createdAt: { $gte: '2009-01-02', $lte: '2022-05-12' } }).
  then(users => {
    //
});

EDIT: My bad, was missing the "in listHandler" part from the title. 🤦

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 27, 2024 2

@alsabbahy @bitbay Hi! Thanks for the great questions. @bitbay is on the right track. This is not yet a feature included out-of-the-box, however there are some tricks that should get you what you need without too much effort.

We can add this query option by including a dateRange model property (with appropriate validation properties), then handling query parameters for that property in middleware.

For example:

example-model.js

...
var Schema = new mongoose.Schema(
    {
      ...
      dateRange: {
        type: Types.String,
        allowOnCreate: false,
        allowOnUpdate: false,
      }
    },
    { collection: modelName }
  );
...

Schema.statics = {
    collectionName: modelName,
    routeOptions: {
    ...
      list: {
        pre: async function (query, request, Log) {
          if (query.dateRange) {
            let dateRange
            try {
              dateRange = JSON.parse(query.dateRange)
            } catch {
              throw Boom.badRequest('Invalid JSON for \'dateRange\'');
            }
            const validate = RestHapi.joi.object({
              start: RestHapi.joi.string().required(),
              end: RestHapi.joi.string().required(),
            })
            const test = validate.validate(dateRange)
            if (test.error) {
              throw Boom.badRequest(test.error)
            }
            query.$where = `{ 
              "createdAt": {
                "$gte": "${dateRange.start}",
                "$lte": "${dateRange.end}"
              }
            }`
            delete query.dateRange
          }
          return query
        }
      }
    ...

This would allow you to query a dateRange based on createdAt for this model using a query string such as:

http://localhost:8080/example?dateRange={"start": "2020-04-11T22:26:26.564Z", "end": "2020-04-11T22:40:20.266Z"}

You could easily modify this to accept other properties to compare against other than createdAt. Note that if you would like to apply this functionality to multiple models I believe you could alternatively implement a custom policy. If you would like an example of this let me know.

Hope this helps!

from rest-hapi.

alsabbahy avatar alsabbahy commented on May 27, 2024 1

@JKHeadley thanks for the quick reply.
Your example is very helpful, I'll try it and will try to make a policy for all models.
I'll let you know if I need help with policy.

from rest-hapi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.