0.0.3 • Published 6 years ago

token-signature v0.0.3

Weekly downloads
14
License
-
Repository
github
Last release
6 years ago

token-signature

token add signature

Install

npm install token-signature

Usage

var Strategy = require('token-signature').Strategy

//covert body to json
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({ extended: true }));


//token check by req
passport.use(new Strategy(
    {
        passReqToCallback: true
    }, function (req, token, done) {
        //token check,check=token check result,next=continue signature handle
        done(null, {
            check: true,
            next: true
        });
    }));

//token check
// passport.use(new Strategy(function (token, done) {
//     //token check,check=token check result,next=continue signature handle
//     done(null, {
//         check: true,
//         next: true
//     });
// }));

//express loopback middleware
app.use(passport.authenticate('token-signature'));

test

./node_modules/mocha/bin/mocha test/reqtest.js

console log

Example app listening on port 3000!
  get /test
token hello
    ✓ respond with json

  post /test
token hello
    ✓ respond with json


  2 passing (65ms)

link

License

The MIT License (MIT)

Copyright (c) 2014 John Henry john@iamjohnhenry.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.