Coder Social home page Coder Social logo

Comments (4)

jobberwalker avatar jobberwalker commented on May 18, 2024

Hello, that would be perfect to have request object in middleware functions. For now, I had to register hapi js server extensions.
Thanks
JB

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

@jobberwalker, in case you haven't already, you can view #19 for a current workaround.

from rest-hapi.

tamias avatar tamias commented on May 18, 2024

I'm curious about the progress of this feature. I've implemented a custom create endpoint, as suggested in #19. However, I need to access the request object for all the CRUD endpoints, to make sure users can only access their own content. List in particular seems to have a lot of code that goes into generating the endpoint, which I think I'd have to duplicate.
Thanks!

from rest-hapi.

JKHeadley avatar JKHeadley commented on May 18, 2024

@tamias I haven't had a lot of time for features lately, but given the amount of interest in this feature I will try to work this in the next version.

For now you should still be able to take advantage of most of the generated code with the below workaround for list. The main functionality that you will lose is the Joi validation, swagger docs, and generate scopes/authorization.

'use strict';

const RestHapi = require('rest-hapi');

module.exports = function (server, mongoose, logger) {
      server.route({
            method: 'GET',
            path: '/pathName',
            config: {
                handler: function(request, reply) {
                    /* modify request.query here and access auth info through request.auth.credentials */

                    const Model = mongoose.model('modelName');
                    return RestHapi.list(Model, request.query, logger)
                        .then(function (result) {
                            return reply(result);
                        })
                        .catch(function (error) {
                            return reply(error);
                        });
                },
                tags: ['api'],
                plugins: {
                    'hapi-swagger': {}
                }
            }
        });
};

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.