freeCodeCamp/common/models/user.js

184 lines
4.2 KiB
JavaScript
Raw Normal View History

2015-06-11 23:11:07 +00:00
var debug = require('debug')('freecc:user:remote');
2015-06-11 23:46:31 +00:00
var blacklistedUsernames =
require('../../server/utils/constants').blacklistedUsernames;
2015-06-11 23:11:07 +00:00
module.exports = function(User) {
// NOTE(berks): user email validation currently not needed but build in. This
// work around should let us sneak by
// see:
// https://github.com/strongloop/loopback/issues/1137#issuecomment-109200135
delete User.validations.email;
2015-06-12 18:38:00 +00:00
// set salt factor for passwords
User.settings.saltWorkFactor = 5;
// username should not be in blacklist
User.validatesExclusionOf('username', {
'in': blacklistedUsernames,
message: 'is taken'
});
// username should be unique
User.validatesUniquenessOf('username');
2015-06-11 23:11:07 +00:00
debug('setting up user hooks');
User.afterRemote('confirm', function(ctx) {
2015-06-12 01:03:01 +00:00
ctx.req.flash('success', {
msg: [
'You\'re email has been confirmed!'
]
});
ctx.res.redirect('/email-signin');
});
User.afterRemote('login', function(ctx, user, next) {
2015-06-11 23:11:07 +00:00
var res = ctx.res;
var req = ctx.req;
// var args = ctx.args;
2015-06-11 23:11:07 +00:00
var accessToken = {};
var config = {
signed: !!req.signedCookies,
maxAge: accessToken.ttl
};
if (accessToken && accessToken.id) {
res.cookie('access_token', accessToken.id, config);
res.cookie('userId', accessToken.userId, config);
}
2015-06-16 04:27:32 +00:00
debug('before pass login');
return req.logIn(user, function(err) {
if (err) {
return next(err);
}
req.flash('success', { msg: 'Success! You are logged in.' });
return res.redirect('/');
});
2015-06-11 23:11:07 +00:00
});
2015-06-16 04:29:32 +00:00
User.afterRemoteError('login', function(ctx) {
2015-06-16 04:27:32 +00:00
var res = ctx.res;
var req = ctx.req;
req.flash('errors', {
msg: 'Invalid username or password.'
});
return res.redirect('/');
});
2015-06-11 23:11:07 +00:00
User.afterRemote('logout', function(ctx, result, next) {
var res = ctx.result;
res.clearCookie('access_token');
res.clearCookie('userId');
next();
});
User.doesExist = function doesExist(username, email, cb) {
if (!username && !email) {
return process.nextTick(function() {
cb(null, false);
});
}
debug('checking existence');
2015-06-11 23:46:31 +00:00
// check to see if username is on blacklist
if (username && blacklistedUsernames.indexOf(username) !== -1) {
return cb(null, true);
}
2015-06-11 23:11:07 +00:00
var where = {};
if (username) {
where.username = username.toLowerCase();
} else {
where.email = email ? email.toLowerCase() : email;
}
debug('where', where);
User.count(
where,
2015-07-29 18:32:16 +00:00
function(err, count) {
2015-06-11 23:11:07 +00:00
if (err) {
debug('err checking existance: ', err);
return cb(err);
}
if (count > 0) {
return cb(null, true);
}
return cb(null, false);
}
);
};
User.remoteMethod(
'doesExist',
{
description: 'checks whether a user exists using email or username',
accepts: [
{
arg: 'username',
type: 'string'
},
{
arg: 'email',
type: 'string'
}
],
returns: [
{
arg: 'exists',
type: 'boolean'
}
],
http: {
path: '/exists',
verb: 'get'
}
}
);
2015-07-29 18:32:16 +00:00
User.about = function about(username, cb) {
if (!username) {
// Zalgo!!
return process.nextTick(() => {
cb(
new TypeError('FCC: username should be a string but got %s', username)
);
});
}
User.findOne({ where: { username } }, (err, user) => {
if (err) {
cb(err);
}
if (!user || user.username !== username) {
cb(new Error('FCC: no user found for %s', username));
}
const aboutUser = {
username: user.username,
bio: user.bio,
github: user.githubProfile
};
cb(null, aboutUser);
});
};
User.remoteMethod(
'about',
{
description: 'get public info about user',
accepts: [
{
arg: 'username',
type: 'string'
}
],
returns: [
{
arg: 'about',
type: 'object'
}
],
http: {
path: '/about',
verb: 'get'
}
}
);
2015-06-11 23:11:07 +00:00
};