Giter Site home page Giter Site logo

Comments (6)

kibertoad avatar kibertoad commented on July 28, 2024

@manwithsteelnerves Did you define custom error handler for your app? Error should bubble up there.

from openapi-validator-middleware.

manwithsteelnerves avatar manwithsteelnerves commented on July 28, 2024

Yes, I have custom handler. I see the error thrown up from the middleware too. But strange this is it's not getting caught nor giving a warning about uncaught promises are not valid.

from openapi-validator-middleware.

kibertoad avatar kibertoad commented on July 28, 2024

Then something is swallowing it. Do other errors bubble up correctly in GCF?

from openapi-validator-middleware.

kibertoad avatar kibertoad commented on July 28, 2024

Probably debugging it in something like WebStorm would be the easiest way to get down to the bottom of what is going on

from openapi-validator-middleware.

manwithsteelnerves avatar manwithsteelnerves commented on July 28, 2024

"Then something is swallowing it. Do other errors bubble up correctly in GCF?" - Yes the errors I throw manually does get caught fine. But only from this middleware i'm not able to.

from openapi-validator-middleware.

manwithsteelnerves avatar manwithsteelnerves commented on July 28, 2024

Ok, I got a work around. I'm not sure why wrapping the validate function made it work. But, would like to seek an advice.

import  * as validatorApi   from    'openapi-validator-middleware';
import { InputValidationError } from 'openapi-validator-middleware';
const ajvOptions = {
    beautifyErrors: true,
    firstError : true,
    ajvConfigBody : {
        removeAdditional: true,
        unknownFormats: ['int64', 'password', 'byte'],
        logger:console
    },
    ajvConfigParams: {
        removeAdditional: true,
        unknownFormats: ['int64', 'password', 'byte'],
        logger:console
    }
};

validatorApi.init('schema.json', ajvOptions);



const validator = {
    validate  : (req: any, res: any, next: Function) => {
        req.baseUrl = req.baseUrl.replace(req.baseUrlPrefix , ""); // Replacing the appended prefix here which was cached at start.
        return validatorApi.validate(req, res, next);
    }
}


export {  validator, InputValidationError };

And this is how I call validate

router.get("/signin", secure({ authorize : true, authenticate : true }), validator.validate, controller.signin);

from openapi-validator-middleware.

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.