Validator functionality for Mandrill's somewhat complex webhook request signing.
Getting Started
Install the module with: npm install mandrill-webhook-validator --save
Documentation
Direct usage
var validator = signature = request; if signature === validator // signed correctly!
In Express
A middleware generator is provided for quick use with express. On a successful
authentication, it'll set mandrill_signature
on the request
object.
By default, it will forward an error with proper HTTP status codes on invalid
webhook requests for the application to handle however. If you would like for
it to bypass default error handling and end the response immediately (with a
plain text status message), use the option { end_on_failure: true }
.
var validator = express = router = express; // To use the normal express `next(err)` on authentication failurerouter; // To end the respone immediately on a failed authentication, use `end_on_failure`router;
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
Release History
(Nothing yet)
License
Copyright (c) 2015 Alexa Grey Licensed under the MIT license.