| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658 |
- module.exports = function(crowi) {
- var debug = require('debug')('crowi:models:user')
- , mongoose = require('mongoose')
- , mongoosePaginate = require('mongoose-paginate')
- , crypto = require('crypto')
- , async = require('async')
- , ObjectId = mongoose.Schema.Types.ObjectId
- , STATUS_REGISTERED = 1
- , STATUS_ACTIVE = 2
- , STATUS_SUSPENDED = 3
- , STATUS_DELETED = 4
- , STATUS_INVITED = 5
- , USER_PUBLIC_FIELDS = '_id image googleId name username email introduction status createdAt admin' // TODO: どこか別の場所へ...
- , PAGE_ITEMS = 50
- , userEvent = crowi.event('user')
- , userSchema;
- userSchema = new mongoose.Schema({
- userId: String,
- image: String,
- googleId: String,
- name: { type: String },
- username: { type: String, index: true },
- email: { type: String, required: true, index: true },
- introduction: { type: String },
- password: String,
- apiToken: String,
- language: {type: String, enum: ['en', 'ja'], default: 'en'},
- status: { type: Number, required: true, default: STATUS_ACTIVE, index: true },
- createdAt: { type: Date, default: Date.now },
- admin: { type: Boolean, default: 0, index: true }
- });
- userSchema.plugin(mongoosePaginate);
- userEvent.on('activated', userEvent.onActivated);
- function decideUserStatusOnRegistration () {
- var Config = crowi.model('Config'),
- config = crowi.getConfig();
- if (!config.crowi) {
- return STATUS_ACTIVE; // is this ok?
- }
- // status decided depends on registrationMode
- switch (config.crowi['security:registrationMode']) {
- case Config.SECURITY_REGISTRATION_MODE_OPEN:
- return STATUS_ACTIVE;
- case Config.SECURITY_REGISTRATION_MODE_RESTRICTED:
- case Config.SECURITY_REGISTRATION_MODE_CLOSED: // 一応
- return STATUS_REGISTERED;
- default:
- return STATUS_ACTIVE; // どっちにすんのがいいんだろうな
- }
- }
- function generateRandomTempPassword () {
- var chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!=-_';
- var password = '';
- var len = 12;
- for (var i = 0; i < len; i++) {
- var randomPoz = Math.floor(Math.random() * chars.length);
- password += chars.substring(randomPoz, randomPoz+1);
- }
- return password;
- }
- function generatePassword (password) {
- var hasher = crypto.createHash('sha256');
- hasher.update(crowi.env.PASSWORD_SEED + password);
- return hasher.digest('hex');
- }
- function generateApiToken (user) {
- var hasher = crypto.createHash('sha256');
- hasher.update((new Date).getTime() + user._id);
- return hasher.digest('base64');
- }
- userSchema.methods.isPasswordSet = function() {
- if (this.password) {
- return true;
- }
- return false;
- };
- userSchema.methods.isPasswordValid = function(password) {
- return this.password == generatePassword(password);
- };
- userSchema.methods.setPassword = function(password) {
- this.password = generatePassword(password);
- return this;
- };
- userSchema.methods.isEmailSet = function() {
- if (this.email) {
- return true;
- }
- return false;
- };
- userSchema.methods.update = function(name, email, language, callback) {
- this.name = name;
- this.email = email;
- this.language = language;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.updatePassword = function(password, callback) {
- this.setPassword(password);
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.updateApiToken = function(callback) {
- var self = this;
- self.apiToken = generateApiToken(this);
- return new Promise(function(resolve, reject) {
- self.save(function(err, userData) {
- if (err) {
- return reject(err);
- } else {
- return resolve(userData);
- }
- });
- });
- };
- userSchema.methods.updateImage = function(image, callback) {
- this.image = image;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.deleteImage = function(callback) {
- return this.updateImage(null, callback);
- };
- userSchema.methods.updateGoogleId = function(googleId, callback) {
- this.googleId = googleId;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.deleteGoogleId = function(callback) {
- return this.updateGoogleId(null, callback);
- };
- userSchema.methods.activateInvitedUser = function(username, name, password, callback) {
- this.setPassword(password);
- this.name = name;
- this.username = username;
- this.status = STATUS_ACTIVE;
- this.save(function(err, userData) {
- userEvent.emit('activated', userData);
- return callback(err, userData);
- });
- };
- userSchema.methods.removeFromAdmin = function(callback) {
- debug('Remove from admin', this);
- this.admin = 0;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.makeAdmin = function(callback) {
- debug('Admin', this);
- this.admin = 1;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.statusActivate = function(callback) {
- debug('Activate User', this);
- this.status = STATUS_ACTIVE;
- this.save(function(err, userData) {
- userEvent.emit('activated', userData);
- return callback(err, userData);
- });
- };
- userSchema.methods.statusSuspend = function(callback) {
- debug('Suspend User', this);
- this.status = STATUS_SUSPENDED;
- if (this.email === undefined || this.email === null) { // migrate old data
- this.email = '-';
- }
- if (this.name === undefined || this.name === null) { // migrate old data
- this.name = '-' + Date.now();
- }
- if (this.username === undefined || this.usename === null) { // migrate old data
- this.username = '-';
- }
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.statusDelete = function(callback) {
- debug('Delete User', this);
- this.status = STATUS_DELETED;
- this.password = '';
- this.email = 'deleted@deleted';
- this.googleId = null;
- this.image = null;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.methods.updateGoogleId = function(googleId, callback) {
- this.googleId = googleId;
- this.save(function(err, userData) {
- return callback(err, userData);
- });
- };
- userSchema.statics.getUserStatusLabels = function() {
- var userStatus = {};
- userStatus[STATUS_REGISTERED] = '承認待ち';
- userStatus[STATUS_ACTIVE] = 'Active';
- userStatus[STATUS_SUSPENDED] = 'Suspended';
- userStatus[STATUS_DELETED] = 'Deleted';
- userStatus[STATUS_INVITED] = '招待済み';
- return userStatus;
- };
- userSchema.statics.isEmailValid = function(email, callback) {
- var config = crowi.getConfig()
- , whitelist = config.crowi['security:registrationWhiteList'];
- if (Array.isArray(whitelist) && whitelist.length > 0) {
- return config.crowi['security:registrationWhiteList'].some(function(allowedEmail) {
- var re = new RegExp(allowedEmail + '$');
- return re.test(email);
- });
- }
- return true;
- };
- userSchema.statics.filterToPublicFields = function(user) {
- var filteredUser = {};
- var fields = USER_PUBLIC_FIELDS.split(' ');
- for (var i = 0; i < fields.length; i++) {
- var key = fields[i];
- if (user[key]) {
- filteredUser[key] = user[key];
- }
- }
- return filteredUser;
- };
- userSchema.statics.findUsers = function(options, callback) {
- var sort = options.sort || {status: 1, createdAt: 1};
- this.find()
- .sort(sort)
- .skip(options.skip || 0)
- .limit(options.limit || 21)
- .exec(function (err, userData) {
- callback(err, userData);
- });
- };
- userSchema.statics.findAllUsers = function(option) {
- var User = this;
- var option = option || {}
- , sort = option.sort || {createdAt: -1}
- , status = option.status || STATUS_ACTIVE
- , fields = option.fields || USER_PUBLIC_FIELDS
- ;
- return new Promise(function(resolve, reject) {
- User
- .find({status: status })
- .select(fields)
- .sort(sort)
- .exec(function (err, userData) {
- if (err) {
- return reject(err);
- }
- return resolve(userData);
- });
- });
- };
- userSchema.statics.findUsersByIds = function(ids, option) {
- var User = this;
- var option = option || {}
- , sort = option.sort || {createdAt: -1}
- , status = option.status || STATUS_ACTIVE
- , fields = option.fields || USER_PUBLIC_FIELDS
- ;
- return new Promise(function(resolve, reject) {
- User
- .find({ _id: { $in: ids }, status: status })
- .select(fields)
- .sort(sort)
- .exec(function (err, userData) {
- if (err) {
- return reject(err);
- }
- return resolve(userData);
- });
- });
- };
- userSchema.statics.findAdmins = function(callback) {
- var User = this;
- this.find({admin: true})
- .exec(function(err, admins) {
- debug('Admins: ', admins);
- callback(err, admins);
- });
- };
- userSchema.statics.findUsersWithPagination = function(options, callback) {
- var sort = options.sort || {status: 1, username: 1, createdAt: 1};
- this.paginate({}, { page: options.page || 1, limit: PAGE_ITEMS }, function(err, paginatedResults, pageCount, itemCount) {
- if (err) {
- debug('Error on pagination:', err);
- return callback(err, null);
- }
- return callback(err, paginatedResults, pageCount, itemCount);
- }, { sortBy : sort });
- };
- userSchema.statics.findUsersByPartOfEmail = function(emailPart, options) {
- const status = options.status || null;
- const emailPartRegExp = new RegExp(emailPart.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&'));
- const User = this;
- return new Promise((resolve, reject) => {
- const query = User.find({ email: emailPartRegExp }, USER_PUBLIC_FIELDS);
- if (status) {
- query.and({status});
- }
- query
- .limit(PAGE_ITEMS + 1)
- .exec((err, userData) => {
- if (err) {
- return reject(err);
- }
- return resolve(userData);
- });
- });
- };
- userSchema.statics.findUserByUsername = function(username) {
- var User = this;
- return new Promise(function(resolve, reject) {
- User.findOne({username: username}, function (err, userData) {
- if (err) {
- return reject(err);
- }
- return resolve(userData);
- });
- });
- };
- userSchema.statics.findUserByApiToken = function(apiToken) {
- var self = this;
- return new Promise(function(resolve, reject) {
- self.findOne({apiToken: apiToken}, function (err, userData) {
- if (err) {
- return reject(err);
- } else {
- return resolve(userData);
- }
- });
- });
- };
- userSchema.statics.findUserByGoogleId = function(googleId, callback) {
- this.findOne({googleId: googleId}, function (err, userData) {
- callback(err, userData);
- });
- };
- userSchema.statics.findUserByEmailAndPassword = function(email, password, callback) {
- var hashedPassword = generatePassword(password);
- this.findOne({email: email, password: hashedPassword}, function (err, userData) {
- callback(err, userData);
- });
- };
- userSchema.statics.isRegisterableUsername = function(username, callback) {
- var User = this;
- var usernameUsable = true;
- this.findOne({username: username}, function (err, userData) {
- if (userData) {
- usernameUsable = false;
- }
- return callback(usernameUsable);
- });
- };
- userSchema.statics.isRegisterable = function(email, username, callback) {
- var User = this;
- var emailUsable = true;
- var usernameUsable = true;
- // username check
- this.findOne({username: username}, function (err, userData) {
- if (userData) {
- usernameUsable = false;
- }
- // email check
- User.findOne({email: email}, function (err, userData) {
- if (userData) {
- emailUsable = false;
- }
- if (!emailUsable || !usernameUsable) {
- return callback(false, {email: emailUsable, username: usernameUsable});
- }
- return callback(true, {});
- });
- });
- };
- userSchema.statics.removeCompletelyById = function(id, callback) {
- var User = this;
- User.findById(id, function (err, userData) {
- if (!userData) {
- return callback(err, null);
- }
- debug('Removing user:', userData);
- // 物理削除可能なのは、招待中ユーザーのみ
- // 利用を一度開始したユーザーは論理削除のみ可能
- if (userData.status !== STATUS_INVITED) {
- return callback(new Error('Cannot remove completely the user whoes status is not INVITED'), null);
- }
- userData.remove(function(err) {
- if (err) {
- return callback(err, null);
- }
- return callback(null, 1);
- });
- });
- };
- userSchema.statics.resetPasswordByRandomString = function(id) {
- var User = this;
- return new Promise(function(resolve, reject) {
- User.findById(id, function (err, userData) {
- if (!userData) {
- return reject(new Error('User not found'));
- }
- // is updatable check
- // if (userData.isUp
- var newPassword = generateRandomTempPassword();
- userData.setPassword(newPassword);
- userData.save(function(err, userData) {
- if (err) {
- return reject(err);
- }
- resolve({user: userData, newPassword: newPassword});
- });
- });
- });
- };
- userSchema.statics.createUsersByInvitation = function(emailList, toSendEmail, callback) {
- var User = this
- , createdUserList = []
- , config = crowi.getConfig()
- , mailer = crowi.getMailer()
- ;
- if (!Array.isArray(emailList)) {
- debug('emailList is not array');
- }
- async.each(
- emailList,
- function(email, next) {
- var newUser = new User()
- ,password;
- email = email.trim();
- // email check
- // TODO: 削除済みはチェック対象から外そう〜
- User.findOne({email: email}, function (err, userData) {
- // The user is exists
- if (userData) {
- createdUserList.push({
- email: email,
- password: null,
- user: null,
- });
- return next();
- }
- password = Math.random().toString(36).slice(-16);
- newUser.email = email;
- newUser.setPassword(password);
- newUser.createdAt = Date.now();
- newUser.status = STATUS_INVITED;
- newUser.save(function(err, userData) {
- if (err) {
- createdUserList.push({
- email: email,
- password: null,
- user: null,
- });
- debug('save failed!! ', email);
- } else {
- createdUserList.push({
- email: email,
- password: password,
- user: userData,
- });
- debug('saved!', email);
- }
- next();
- });
- });
- },
- function(err) {
- if (err) {
- debug('error occured while iterate email list');
- }
- if (toSendEmail) {
- // TODO: メール送信部分のロジックをサービス化する
- async.each(
- createdUserList,
- function(user, next) {
- if (user.password === null) {
- return next();
- }
- mailer.send({
- to: user.email,
- subject: 'Invitation to ' + config.crowi['app:title'],
- template: 'admin/userInvitation.txt',
- vars: {
- email: user.email,
- password: user.password,
- url: config.crowi['app:url'],
- appTitle: config.crowi['app:title'],
- }
- },
- function (err, s) {
- debug('completed to send email: ', err, s);
- next();
- }
- );
- },
- function(err) {
- debug('Sending invitation email completed.', err);
- }
- );
- }
- debug('createdUserList!!! ', createdUserList);
- return callback(null, createdUserList);
- }
- );
- };
- userSchema.statics.createUserByEmailAndPassword = function(name, username, email, password, language, callback) {
- var User = this
- , newUser = new User();
- newUser.name = name;
- newUser.username = username;
- newUser.email = email;
- newUser.setPassword(password);
- newUser.language = language;
- newUser.createdAt = Date.now();
- newUser.status = decideUserStatusOnRegistration();
- newUser.save(function(err, userData) {
- if (userData.status == STATUS_ACTIVE) {
- userEvent.emit('activated', userData);
- }
- return callback(err, userData);
- });
- };
- userSchema.statics.createUserPictureFilePath = function(user, name) {
- var ext = '.' + name.match(/(.*)(?:\.([^.]+$))/)[2];
- return 'user/' + user._id + ext;
- };
- userSchema.statics.getUsernameByPath = function(path) {
- var username = null;
- if (m = path.match(/^\/user\/([^\/]+)\/?/)) {
- username = m[1];
- }
- return username;
- };
- userSchema.statics.STATUS_REGISTERED = STATUS_REGISTERED;
- userSchema.statics.STATUS_ACTIVE = STATUS_ACTIVE;
- userSchema.statics.STATUS_SUSPENDED = STATUS_SUSPENDED;
- userSchema.statics.STATUS_DELETED = STATUS_DELETED;
- userSchema.statics.STATUS_INVITED = STATUS_INVITED;
- userSchema.statics.USER_PUBLIC_FIELDS = USER_PUBLIC_FIELDS;
- userSchema.statics.PAGE_ITEMS = PAGE_ITEMS;
- return mongoose.model('User', userSchema);
- };
|