From 089ff2f2046fdbaf9531726eea1f8c6726ebf0c0 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 16 Aug 2016 21:51:35 +0200 Subject: [PATCH] Server: optimize function to see if there are users or not --- server/initializers/checker.js | 4 ++-- server/models/user.js | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/server/initializers/checker.js b/server/initializers/checker.js index 3831efb8d..871d3cac2 100644 --- a/server/initializers/checker.js +++ b/server/initializers/checker.js @@ -39,10 +39,10 @@ function clientsExist (callback) { } function usersExist (callback) { - User.list(function (err, users) { + User.count(function (err, totalUsers) { if (err) return callback(err) - return callback(null, users.length !== 0) + return callback(null, totalUsers !== 0) }) } diff --git a/server/models/user.js b/server/models/user.js index 351ffef86..d289da19a 100644 --- a/server/models/user.js +++ b/server/models/user.js @@ -19,6 +19,7 @@ UserSchema.methods = { } UserSchema.statics = { + count: count, getByUsernameAndPassword: getByUsernameAndPassword, list: list, loadById: loadById, @@ -29,6 +30,10 @@ mongoose.model('User', UserSchema) // --------------------------------------------------------------------------- +function count (callback) { + return this.count(callback) +} + function getByUsernameAndPassword (username, password) { return this.findOne({ username: username, password: password }) }