Giter Club home page Giter Club logo

Comments (4)

kanongil avatar kanongil commented on June 17, 2024

Yes, hapi does handle the Expect: 100-continue header.

Hapi will automatically send HTTP/1.1 100 Continue after the onPreAuth hook has been called and the non-payload auth has succeeded. An error from either stage should prevent it from being sent.

Does that work for you?

from hapi.

sugarnaoming avatar sugarnaoming commented on June 17, 2024

Thank you for your response.

I understand that the onPreAuth hook is triggered, but the control I am looking to implement is a bit more specific. I would like to reject the request body only when both of the following conditions are met:

  • The Expect: 100-continue header is present in the request headers.
  • The Content-Length header value is below a certain threshold.

Is there a way to check for the presence of the Expect: 100-continue header within an event or hook, but only under the above conditions?

from hapi.

kanongil avatar kanongil commented on June 17, 2024

Yes, I suggest you add your logic to an onPreAuth hook. If you want to do it at the route level, you can do something like this (not tested):

server.route({
    ,
    options: {
        ext: {
            onPreAuth: {
                method(request, h) {

                     if (request.headers.expect === '100-continue' &&
                         request.headers['content-length'] &&
                         parseInt(request.headers['content-length']) < threshold) {

                         throw new Boom.badRequest();
                    }
                }
            }
        }
    }

Hapi doesn't have a public signal that there is continue pending, so I checked the header manually. Though it is probably safer to just use the internal request._expectContinue property.

from hapi.

sugarnaoming avatar sugarnaoming commented on June 17, 2024

Thank you very much.
I think I will be able to implement it successfully thanks to your advice.

from 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.