Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
clout-passport
Advanced tools
In the directory of your clout-js application, do the following;
npm install clout-passport
package.json
or clout.json
{
...
"modules": ["clout-passport"]
...
}
Create a new file passport.default.js
or passport.<YOUR_ENV>.js
in /conf
directory with the following JavaScript.
module.exports = {
passport: {
directory: '/strategies',
serializeUser: '<PATH_TO_FN>', // e.g. models.User.serializeUser
deserializeUser: '<PATH_TO_FN>', // e.g. models.User.deserializeUser
/** Configure strategies */
facebook: { // this can be seen in passport documentation
clientID: '<CLIENT_ID>',
clientSecret: '<CLIENT_SECRET>',
callbackURL: '<CALLBACK_URL>',
profileFields: ['id', 'displayName']
}
/** load stratergies from this module (default: false) */
useDefault: true, // load all strategies
useDefault: ['local'], // selective loading
/** configure provided stratergy */
_facebook: {
}
}
};
Create a new directory in your project called /strategies
. This directory will contain all your passport stratergies.
local.js
/**
* Local Stratergy Example
*/
const LocalStrategy = require('passport-local');
module.exports = function (conf) {
var self = this; // clout context
return new LocalStrategy(conf, function (username, password, cb) {
self.models.User
.authenticate(username, password)
.then(function (user) {
cb(null, user);
}).catch(cb);
});
};
These strategies can be enabled in the configuration.
{
...
passport: {
...
_local: {
authenticateFn: 'models.User.authenticate' // Path to authenticate function
}
...
}
...
}
Authenticate function should be defined in the models. An example of an authentication function is the following;
var User = module.exports = {},
clout = require('clout.js');
...
// User Sequalize Model
...
User.authenticate = function authenticate(username, password) {
var deferred = clout.Q.defer(),
User.query({
username: username,
password: password
}).then(function (user) {
if (!user) {
return deferred.reject('Username or Password is incorrect');
}
deferred.resolve(user);
}, deferred.reject);
return deferred.promise;
}
FAQs
Clout module to implement passport
The npm package clout-passport receives a total of 1 weekly downloads. As such, clout-passport popularity was classified as not popular.
We found that clout-passport demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.