more refactors
parent
bc8d297377
commit
b1b87d339f
@ -1,24 +1,38 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async');
|
||||||
|
|
||||||
var posts = require('../posts');
|
var posts = require('../posts');
|
||||||
var helpers = require('./helpers');
|
var helpers = require('./helpers');
|
||||||
|
|
||||||
var postsController = {};
|
var postsController = module.exports;
|
||||||
|
|
||||||
postsController.redirectToPost = function (req, res, callback) {
|
postsController.redirectToPost = function (req, res, next) {
|
||||||
var pid = parseInt(req.params.pid, 10);
|
var pid = parseInt(req.params.pid, 10);
|
||||||
if (!pid) {
|
if (!pid) {
|
||||||
return callback();
|
return next();
|
||||||
}
|
}
|
||||||
|
|
||||||
posts.generatePostPath(pid, req.uid, function (err, path) {
|
async.waterfall([
|
||||||
if (err || !path) {
|
function (next) {
|
||||||
return callback(err);
|
posts.generatePostPath(pid, req.uid, next);
|
||||||
}
|
},
|
||||||
|
function (path, next) {
|
||||||
helpers.redirect(res, path);
|
if (!path) {
|
||||||
});
|
return next();
|
||||||
|
}
|
||||||
|
helpers.redirect(res, path);
|
||||||
|
},
|
||||||
|
], next);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
postsController.getRecentPosts = function (req, res, next) {
|
||||||
module.exports = postsController;
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
posts.getRecentPosts(req.uid, 0, 19, req.params.term, next);
|
||||||
|
},
|
||||||
|
function (data) {
|
||||||
|
res.json(data);
|
||||||
|
},
|
||||||
|
], next);
|
||||||
|
};
|
||||||
|
@ -0,0 +1,94 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async');
|
||||||
|
|
||||||
|
var user = require('../user');
|
||||||
|
var meta = require('../meta');
|
||||||
|
var accountHelpers = require('./accounts/helpers');
|
||||||
|
|
||||||
|
var userController = module.exports;
|
||||||
|
|
||||||
|
userController.getCurrentUser = function (req, res, next) {
|
||||||
|
if (!req.uid) {
|
||||||
|
return res.status(401).json('not-authorized');
|
||||||
|
}
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
user.getUserField(req.uid, 'userslug', next);
|
||||||
|
},
|
||||||
|
function (userslug, next) {
|
||||||
|
accountHelpers.getUserDataByUserSlug(userslug, req.uid, next);
|
||||||
|
},
|
||||||
|
function (userData) {
|
||||||
|
res.json(userData);
|
||||||
|
},
|
||||||
|
], next);
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
userController.getUserByUID = function (req, res, next) {
|
||||||
|
byType('uid', req, res, next);
|
||||||
|
};
|
||||||
|
|
||||||
|
userController.getUserByUsername = function (req, res, next) {
|
||||||
|
byType('username', req, res, next);
|
||||||
|
};
|
||||||
|
|
||||||
|
userController.getUserByEmail = function (req, res, next) {
|
||||||
|
byType('email', req, res, next);
|
||||||
|
};
|
||||||
|
|
||||||
|
function byType(type, req, res, next) {
|
||||||
|
userController.getUserDataByField(req.uid, type, req.params[type], function (err, data) {
|
||||||
|
if (err || !data) {
|
||||||
|
return next(err);
|
||||||
|
}
|
||||||
|
res.json(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
userController.getUserDataByField = function (callerUid, field, fieldValue, callback) {
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
if (field === 'uid') {
|
||||||
|
next(null, fieldValue);
|
||||||
|
} else if (field === 'username') {
|
||||||
|
user.getUidByUsername(fieldValue, next);
|
||||||
|
} else if (field === 'email') {
|
||||||
|
user.getUidByEmail(fieldValue, next);
|
||||||
|
} else {
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
function (uid, next) {
|
||||||
|
if (!uid) {
|
||||||
|
return next();
|
||||||
|
}
|
||||||
|
userController.getUserDataByUID(callerUid, uid, next);
|
||||||
|
},
|
||||||
|
], callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
userController.getUserDataByUID = function (callerUid, uid, callback) {
|
||||||
|
if (!parseInt(callerUid, 10) && parseInt(meta.config.privateUserInfo, 10) === 1) {
|
||||||
|
return callback(new Error('[[error:no-privileges]]'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!parseInt(uid, 10)) {
|
||||||
|
return callback(new Error('[[error:no-user]]'));
|
||||||
|
}
|
||||||
|
|
||||||
|
async.parallel({
|
||||||
|
userData: async.apply(user.getUserData, uid),
|
||||||
|
settings: async.apply(user.getSettings, uid),
|
||||||
|
}, function (err, results) {
|
||||||
|
if (err || !results.userData) {
|
||||||
|
return callback(err || new Error('[[error:no-user]]'));
|
||||||
|
}
|
||||||
|
|
||||||
|
results.userData.email = results.settings.showemail ? results.userData.email : undefined;
|
||||||
|
results.userData.fullname = results.settings.showfullname ? results.userData.fullname : undefined;
|
||||||
|
|
||||||
|
callback(null, results.userData);
|
||||||
|
});
|
||||||
|
};
|
@ -0,0 +1,70 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var async = require('async');
|
||||||
|
|
||||||
|
var db = require('../database');
|
||||||
|
var topics = require('../topics');
|
||||||
|
var plugins = require('../plugins');
|
||||||
|
|
||||||
|
module.exports = function (User) {
|
||||||
|
User.updateLastOnlineTime = function (uid, callback) {
|
||||||
|
callback = callback || function () {};
|
||||||
|
db.getObjectFields('user:' + uid, ['status', 'lastonline'], function (err, userData) {
|
||||||
|
var now = Date.now();
|
||||||
|
if (err || userData.status === 'offline' || now - parseInt(userData.lastonline, 10) < 300000) {
|
||||||
|
return callback(err);
|
||||||
|
}
|
||||||
|
User.setUserField(uid, 'lastonline', now, callback);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
User.updateOnlineUsers = function (uid, callback) {
|
||||||
|
callback = callback || function () {};
|
||||||
|
|
||||||
|
var now = Date.now();
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
db.sortedSetScore('users:online', uid, next);
|
||||||
|
},
|
||||||
|
function (userOnlineTime, next) {
|
||||||
|
if (now - parseInt(userOnlineTime, 10) < 300000) {
|
||||||
|
return callback();
|
||||||
|
}
|
||||||
|
db.sortedSetAdd('users:online', now, uid, next);
|
||||||
|
},
|
||||||
|
function (next) {
|
||||||
|
topics.pushUnreadCount(uid);
|
||||||
|
plugins.fireHook('action:user.online', { uid: uid, timestamp: now });
|
||||||
|
next();
|
||||||
|
},
|
||||||
|
], callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
User.isOnline = function (uid, callback) {
|
||||||
|
var now = Date.now();
|
||||||
|
async.waterfall([
|
||||||
|
function (next) {
|
||||||
|
if (Array.isArray(uid)) {
|
||||||
|
db.sortedSetScores('users:online', uid, next);
|
||||||
|
} else {
|
||||||
|
db.sortedSetScore('users:online', uid, next);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
function (lastonline, next) {
|
||||||
|
function checkOnline(lastonline) {
|
||||||
|
return now - lastonline < 300000;
|
||||||
|
}
|
||||||
|
|
||||||
|
var isOnline;
|
||||||
|
if (Array.isArray(uid)) {
|
||||||
|
isOnline = uid.map(function (uid, index) {
|
||||||
|
return checkOnline(lastonline[index]);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
isOnline = checkOnline(lastonline);
|
||||||
|
}
|
||||||
|
next(null, isOnline);
|
||||||
|
},
|
||||||
|
], callback);
|
||||||
|
};
|
||||||
|
};
|
Loading…
Reference in New Issue