2015-07-20 00:09:47 -07:00
'use strict' ;
exports = module . exports = {
2016-04-17 18:27:11 +02:00
get : get ,
2015-07-20 00:09:47 -07:00
update : update ,
2016-04-17 18:27:11 +02:00
list : list ,
create : create ,
remove : remove ,
2015-07-20 00:09:47 -07:00
verifyPassword : verifyPassword ,
2016-02-09 15:47:02 -08:00
sendInvite : sendInvite ,
2018-01-25 18:03:26 +01:00
setGroups : setGroups
2015-07-20 00:09:47 -07:00
} ;
2018-04-30 23:03:28 -07:00
var assert = require ( 'assert' ) ,
2016-09-20 15:07:11 -07:00
constants = require ( '../constants.js' ) ,
2016-01-20 15:33:11 +01:00
generatePassword = require ( '../password.js' ) . generate ,
2015-07-20 00:09:47 -07:00
HttpError = require ( 'connect-lastmile' ) . HttpError ,
HttpSuccess = require ( 'connect-lastmile' ) . HttpSuccess ,
2018-04-29 10:58:45 -07:00
users = require ( '../users.js' ) ,
2018-04-29 17:37:53 -07:00
UsersError = users . UsersError ;
2015-07-20 00:09:47 -07:00
2016-05-01 20:01:34 -07:00
function auditSource ( req ) {
var ip = req . headers [ 'x-forwarded-for' ] || req . connection . remoteAddress || null ;
return { ip : ip , username : req . user ? req . user . username : null , userId : req . user ? req . user . id : null } ;
}
2016-04-17 18:27:11 +02:00
function create ( req , res , next ) {
2015-07-20 00:09:47 -07:00
assert . strictEqual ( typeof req . body , 'object' ) ;
if ( typeof req . body . email !== 'string' ) return next ( new HttpError ( 400 , 'email must be string' ) ) ;
2016-01-18 16:53:51 +01:00
if ( typeof req . body . invite !== 'boolean' ) return next ( new HttpError ( 400 , 'invite must be boolean' ) ) ;
2016-04-01 16:48:50 +02:00
if ( 'username' in req . body && typeof req . body . username !== 'string' ) return next ( new HttpError ( 400 , 'username must be string' ) ) ;
2016-01-20 00:05:06 -08:00
if ( 'displayName' in req . body && typeof req . body . displayName !== 'string' ) return next ( new HttpError ( 400 , 'displayName must be string' ) ) ;
2018-04-26 13:58:21 -07:00
if ( 'password' in req . body && typeof req . body . password !== 'string' ) return next ( new HttpError ( 400 , 'password must be string' ) ) ;
2015-07-20 00:09:47 -07:00
2018-04-26 13:58:21 -07:00
var password = req . body . password || generatePassword ( ) ;
2015-07-20 00:09:47 -07:00
var email = req . body . email ;
2016-01-18 16:53:51 +01:00
var sendInvite = req . body . invite ;
2017-02-02 00:23:11 -08:00
var username = 'username' in req . body ? req . body . username : null ;
2016-01-19 23:34:49 -08:00
var displayName = req . body . displayName || '' ;
2015-07-20 00:09:47 -07:00
2018-04-29 10:58:45 -07:00
users . create ( username , password , email , displayName , auditSource ( req ) , { invitor : req . user , sendInvite : sendInvite } , function ( error , user ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . BAD _FIELD ) return next ( new HttpError ( 400 , error . message ) ) ;
if ( error && error . reason === UsersError . ALREADY _EXISTS ) return next ( new HttpError ( 409 , error . message ) ) ;
2015-07-20 00:09:47 -07:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
var userInfo = {
id : user . id ,
username : user . username ,
2016-04-01 16:48:50 +02:00
displayName : user . displayName ,
2015-07-20 00:09:47 -07:00
email : user . email ,
2018-01-21 14:25:39 +01:00
fallbackEmail : user . fallbackEmail ,
2015-07-20 00:09:47 -07:00
admin : user . admin ,
2016-05-31 11:49:59 -07:00
groupIds : [ ] ,
2015-07-20 00:09:47 -07:00
resetToken : user . resetToken
} ;
2016-04-06 10:20:32 -07:00
next ( new HttpSuccess ( 201 , userInfo ) ) ;
2015-07-20 00:09:47 -07:00
} ) ;
}
function update ( req , res , next ) {
2016-01-25 14:58:02 +01:00
assert . strictEqual ( typeof req . params . userId , 'string' ) ;
2015-07-20 00:09:47 -07:00
assert . strictEqual ( typeof req . user , 'object' ) ;
assert . strictEqual ( typeof req . body , 'object' ) ;
2016-01-25 14:12:09 +01:00
if ( 'email' in req . body && typeof req . body . email !== 'string' ) return next ( new HttpError ( 400 , 'email must be string' ) ) ;
2018-01-21 14:25:39 +01:00
if ( 'fallbackEmail' in req . body && typeof req . body . fallbackEmail !== 'string' ) return next ( new HttpError ( 400 , 'fallbackEmail must be string' ) ) ;
2016-01-25 14:08:11 +01:00
if ( 'displayName' in req . body && typeof req . body . displayName !== 'string' ) return next ( new HttpError ( 400 , 'displayName must be string' ) ) ;
2016-06-02 23:53:06 -07:00
if ( 'username' in req . body && typeof req . body . username !== 'string' ) return next ( new HttpError ( 400 , 'username must be a string' ) ) ;
2015-07-20 00:09:47 -07:00
2016-02-25 14:03:42 +01:00
if ( req . user . id !== req . params . userId && ! req . user . admin ) return next ( new HttpError ( 403 , 'Not allowed' ) ) ;
2015-07-20 00:09:47 -07:00
2018-04-29 10:58:45 -07:00
users . update ( req . params . userId , req . body , auditSource ( req ) , function ( error ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . BAD _FIELD ) return next ( new HttpError ( 400 , error . message ) ) ;
if ( error && error . reason === UsersError . ALREADY _EXISTS ) return next ( new HttpError ( 409 , error . message ) ) ;
if ( error && error . reason === UsersError . NOT _FOUND ) return next ( new HttpError ( 404 , 'User not found' ) ) ;
2015-07-20 00:09:47 -07:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
2016-06-02 23:53:06 -07:00
next ( new HttpSuccess ( 204 ) ) ;
2015-07-20 00:09:47 -07:00
} ) ;
}
2016-04-17 18:27:11 +02:00
function list ( req , res , next ) {
2018-04-29 10:58:45 -07:00
users . list ( function ( error , results ) {
2015-07-20 00:09:47 -07:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
2016-06-03 00:04:17 -07:00
2018-04-29 10:58:45 -07:00
results = results . map ( users . removePrivateFields ) ;
2016-06-03 00:04:17 -07:00
2018-04-29 10:58:45 -07:00
next ( new HttpSuccess ( 200 , { users : results } ) ) ;
2015-07-20 00:09:47 -07:00
} ) ;
}
2016-04-17 18:27:11 +02:00
function get ( req , res , next ) {
2015-07-20 00:09:47 -07:00
assert . strictEqual ( typeof req . params . userId , 'string' ) ;
2016-02-25 14:03:42 +01:00
assert . strictEqual ( typeof req . user , 'object' ) ;
2015-07-20 00:09:47 -07:00
2016-02-25 13:44:53 +01:00
if ( req . user . id !== req . params . userId && ! req . user . admin ) return next ( new HttpError ( 403 , 'Not allowed' ) ) ;
2018-04-29 10:58:45 -07:00
users . get ( req . params . userId , function ( error , result ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . NOT _FOUND ) return next ( new HttpError ( 404 , 'No such user' ) ) ;
2015-07-20 00:09:47 -07:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
2018-04-29 10:58:45 -07:00
next ( new HttpSuccess ( 200 , users . removePrivateFields ( result ) ) ) ;
2015-07-20 00:09:47 -07:00
} ) ;
}
2016-04-17 18:27:11 +02:00
function remove ( req , res , next ) {
2015-07-20 00:09:47 -07:00
assert . strictEqual ( typeof req . params . userId , 'string' ) ;
// rules:
// - admin can remove any user
// - admin cannot remove admin
// - user cannot remove himself <- TODO should this actually work?
if ( req . user . id === req . params . userId ) return next ( new HttpError ( 403 , 'Not allowed to remove yourself.' ) ) ;
2018-04-29 10:58:45 -07:00
users . remove ( req . params . userId , auditSource ( req ) , function ( error ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . BAD _FIELD ) return next ( new HttpError ( 400 , error . message ) ) ;
if ( error && error . reason === UsersError . NOT _FOUND ) return next ( new HttpError ( 404 , 'No such user' ) ) ;
2015-07-20 00:09:47 -07:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
2016-06-02 22:25:48 -07:00
next ( new HttpSuccess ( 204 ) ) ;
2015-07-20 00:09:47 -07:00
} ) ;
}
function verifyPassword ( req , res , next ) {
assert . strictEqual ( typeof req . body , 'object' ) ;
2016-06-03 10:17:52 +02:00
// using an 'sdk' token we skip password checks
2018-04-30 23:03:28 -07:00
if ( req . authInfo . clientId === 'cid-sdk' || req . authInfo . clientId === 'cid-cli' ) return next ( ) ;
2015-07-20 00:09:47 -07:00
if ( typeof req . body . password !== 'string' ) return next ( new HttpError ( 400 , 'API call requires user password' ) ) ;
2018-04-29 10:58:45 -07:00
users . verifyWithUsername ( req . user . username , req . body . password , function ( error ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . WRONG _PASSWORD ) return next ( new HttpError ( 403 , 'Password incorrect' ) ) ;
if ( error && error . reason === UsersError . NOT _FOUND ) return next ( new HttpError ( 403 , 'Password incorrect' ) ) ;
2015-07-20 00:09:47 -07:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
2017-05-05 15:36:47 -07:00
req . body . password = '<redacted>' ; // this will prevent logs from displaying plain text password
2016-04-17 19:17:01 +02:00
next ( ) ;
2015-07-20 00:09:47 -07:00
} ) ;
}
2016-01-18 15:37:03 +01:00
function sendInvite ( req , res , next ) {
assert . strictEqual ( typeof req . params . userId , 'string' ) ;
2018-04-29 10:58:45 -07:00
users . sendInvite ( req . params . userId , { invitor : req . user } , function ( error , result ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . NOT _FOUND ) return next ( new HttpError ( 404 , 'User not found' ) ) ;
2016-01-18 15:37:03 +01:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
2016-04-04 18:14:07 +02:00
next ( new HttpSuccess ( 200 , { resetToken : result } ) ) ;
2016-01-18 15:37:03 +01:00
} ) ;
}
2016-02-09 15:47:02 -08:00
function setGroups ( req , res , next ) {
assert . strictEqual ( typeof req . body , 'object' ) ;
assert . strictEqual ( typeof req . params . userId , 'string' ) ;
if ( ! Array . isArray ( req . body . groupIds ) ) return next ( new HttpError ( 400 , 'API call requires a groups array.' ) ) ;
2016-02-11 11:29:04 +01:00
// this route is only allowed for admins, so req.user has to be an admin
2016-09-20 15:07:11 -07:00
if ( req . user . id === req . params . userId && req . body . groupIds . indexOf ( constants . ADMIN _GROUP _ID ) === - 1 ) return next ( new HttpError ( 403 , 'Admin removing itself from admins is not allowed' ) ) ;
2016-02-11 11:29:04 +01:00
2018-04-29 10:58:45 -07:00
users . setGroups ( req . params . userId , req . body . groupIds , function ( error ) {
2018-04-29 17:37:53 -07:00
if ( error && error . reason === UsersError . NOT _FOUND ) return next ( new HttpError ( 404 , 'One or more groups not found' ) ) ;
2016-02-09 15:47:02 -08:00
if ( error ) return next ( new HttpError ( 500 , error ) ) ;
next ( new HttpSuccess ( 204 ) ) ;
} ) ;
}