|
|
|
var user = require('./../user.js'),
|
|
|
|
posts = require('./../posts.js'),
|
|
|
|
postTools = require('../postTools'),
|
|
|
|
fs = require('fs'),
|
|
|
|
utils = require('./../../public/src/utils.js'),
|
|
|
|
path = require('path'),
|
|
|
|
winston = require('winston'),
|
|
|
|
nconf = require('nconf');
|
|
|
|
|
|
|
|
(function(User) {
|
|
|
|
User.create_routes = function(app) {
|
|
|
|
|
|
|
|
app.get('/uid/:uid', function(req, res) {
|
|
|
|
|
|
|
|
if (!req.params.uid)
|
|
|
|
return res.redirect('/404');
|
|
|
|
|
|
|
|
user.getUserData(req.params.uid, function(err, data) {
|
|
|
|
if (data) {
|
|
|
|
res.send(data);
|
|
|
|
} else {
|
|
|
|
res.json(404, {
|
|
|
|
error: "User doesn't exist!"
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/users', function(req, res) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route("users", "users") + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/users/latest', function(req, res) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route("users/latest", "users") + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/users/sort-posts', function(req, res) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route("users/sort-posts", "users") + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/users/sort-reputation', function(req, res) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route("users/sort-reputation", "users") + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/users/search', function(req, res) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route("users/search", "users") + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/user/:userslug', function(req, res, next) {
|
|
|
|
|
|
|
|
if (!req.params.userslug) {
|
|
|
|
next();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
user.get_uid_by_userslug(req.params.userslug, function(err, uid) {
|
|
|
|
if (!uid) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route('user/' + req.params.userslug, 'account') + templates['footer']);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/user/:userslug/edit', function(req, res) {
|
|
|
|
|
|
|
|
if (!req.user)
|
|
|
|
return res.redirect('/403');
|
|
|
|
|
|
|
|
user.getUserField(req.user.uid, 'userslug', function(err, userslug) {
|
|
|
|
if (req.params.userslug && userslug === req.params.userslug) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route('user/' + req.params.userslug + '/edit', 'accountedit') + templates['footer']);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return res.redirect('/404');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/user/:userslug/settings', function(req, res) {
|
|
|
|
|
|
|
|
if (!req.user)
|
|
|
|
return res.redirect('/403');
|
|
|
|
|
|
|
|
user.getUserField(req.user.uid, 'userslug', function(err, userslug) {
|
|
|
|
if (req.params.userslug && userslug === req.params.userslug) {
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route('user/' + req.params.userslug + '/settings', 'accountsettings') + templates['footer']);
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
return res.redirect('/404');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.post('/user/uploadpicture', function(req, res) {
|
|
|
|
if (!req.user)
|
|
|
|
return res.redirect('/403');
|
|
|
|
|
|
|
|
if (req.files.userPhoto.size > 262144) {
|
|
|
|
res.send({
|
|
|
|
error: 'Images must be smaller than 256kb!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var allowedTypes = ['image/png', 'image/jpeg', 'image/jpg', 'image/gif'];
|
|
|
|
|
|
|
|
if (allowedTypes.indexOf(req.files.userPhoto.type) === -1) {
|
|
|
|
res.send({
|
|
|
|
error: 'Allowed image types are png, jpg and gif!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
user.getUserField(req.user.uid, 'uploadedpicture', function(err, oldpicture) {
|
|
|
|
if (!oldpicture) {
|
|
|
|
uploadUserPicture(req.user.uid, path.extname(req.files.userPhoto.name), req.files.userPhoto.path, res);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var absolutePath = path.join(process.cwd(), nconf.get('upload_path'), path.basename(oldpicture));
|
|
|
|
|
|
|
|
fs.unlink(absolutePath, function(err) {
|
|
|
|
if (err) {
|
|
|
|
winston.err(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
uploadUserPicture(req.user.uid, path.extname(req.files.userPhoto.name), req.files.userPhoto.path, res);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
function uploadUserPicture(uid, extension, tempPath, res) {
|
|
|
|
if (!extension) {
|
|
|
|
res.send({
|
|
|
|
error: 'Error uploading file! Error : Invalid extension!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var filename = uid + '-profileimg' + extension;
|
|
|
|
var uploadPath = path.join(process.cwd(), nconf.get('upload_path'), filename);
|
|
|
|
|
|
|
|
winston.info('Attempting upload to: ' + uploadPath);
|
|
|
|
|
|
|
|
var is = fs.createReadStream(tempPath);
|
|
|
|
var os = fs.createWriteStream(uploadPath);
|
|
|
|
|
|
|
|
is.on('end', function() {
|
|
|
|
fs.unlinkSync(tempPath);
|
|
|
|
|
|
|
|
var imageUrl = nconf.get('upload_url') + filename;
|
|
|
|
|
|
|
|
user.setUserField(uid, 'uploadedpicture', imageUrl);
|
|
|
|
user.setUserField(uid, 'picture', imageUrl);
|
|
|
|
|
|
|
|
require('node-imagemagick').crop({
|
|
|
|
srcPath: uploadPath,
|
|
|
|
dstPath: uploadPath,
|
|
|
|
width: 128,
|
|
|
|
height: 128
|
|
|
|
}, function(err, stdout, stderr) {
|
|
|
|
if (err) {
|
|
|
|
winston.err(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
res.json({
|
|
|
|
path: imageUrl
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
os.on('error', function(err) {
|
|
|
|
fs.unlinkSync(tempPath);
|
|
|
|
winston.err(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
is.pipe(os);
|
|
|
|
}
|
|
|
|
|
|
|
|
app.get('/user/:userslug/following', function(req, res) {
|
|
|
|
|
|
|
|
if (!req.user)
|
|
|
|
return res.redirect('/403');
|
|
|
|
|
|
|
|
user.get_uid_by_userslug(req.params.userslug, function(err, uid) {
|
|
|
|
if (!uid) {
|
|
|
|
res.redirect('/404');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route('user/' + req.params.userslug + '/following', 'following') + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/user/:userslug/followers', function(req, res) {
|
|
|
|
|
|
|
|
if (!req.user)
|
|
|
|
return res.redirect('/403');
|
|
|
|
|
|
|
|
user.get_uid_by_userslug(req.params.userslug, function(err, uid) {
|
|
|
|
if (!uid) {
|
|
|
|
res.redirect('/404');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route('user/' + req.params.userslug + '/followers', 'followers') + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/user/:userslug/favourites', function(req, res) {
|
|
|
|
|
|
|
|
if (!req.user)
|
|
|
|
return res.redirect('/403');
|
|
|
|
|
|
|
|
user.get_uid_by_userslug(req.params.userslug, function(err, uid) {
|
|
|
|
if (!uid) {
|
|
|
|
res.redirect('/404');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
app.build_header({
|
|
|
|
req: req,
|
|
|
|
res: res
|
|
|
|
}, function(err, header) {
|
|
|
|
res.send(header + app.create_route('user/' + req.params.userslug + '/favourites', 'favourites') + templates['footer']);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/user/:userslug/following', function(req, res) {
|
|
|
|
var callerUID = req.user ? req.user.uid : '0';
|
|
|
|
|
|
|
|
getUserDataByUserSlug(req.params.userslug, callerUID, function(userData) {
|
|
|
|
if (userData) {
|
|
|
|
user.getFollowing(userData.uid, function(followingData) {
|
|
|
|
userData.following = followingData;
|
|
|
|
userData.followingCount = followingData.length;
|
|
|
|
res.json(userData);
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/user/:userslug/followers', function(req, res) {
|
|
|
|
var callerUID = req.user ? req.user.uid : '0';
|
|
|
|
|
|
|
|
getUserDataByUserSlug(req.params.userslug, callerUID, function(userData) {
|
|
|
|
if (userData) {
|
|
|
|
user.getFollowers(userData.uid, function(followersData) {
|
|
|
|
userData.followers = followersData;
|
|
|
|
userData.followersCount = followersData.length;
|
|
|
|
res.json(userData);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/user/:userslug/edit', function(req, res) {
|
|
|
|
var callerUID = req.user ? req.user.uid : '0';
|
|
|
|
|
|
|
|
getUserDataByUserSlug(req.params.userslug, callerUID, function(userData) {
|
|
|
|
res.json(userData);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/user/:userslug/settings', function(req, res, next) {
|
|
|
|
var callerUID = req.user ? req.user.uid : '0';
|
|
|
|
|
|
|
|
user.get_uid_by_userslug(req.params.userslug, function(err, uid) {
|
|
|
|
if (!uid) {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uid != callerUID || callerUID == '0') {
|
|
|
|
res.json(403, {
|
|
|
|
error: 'Not allowed!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
user.getUserFields(uid, ['username', 'userslug', 'showemail'], function(err, userData) {
|
|
|
|
if (err)
|
|
|
|
return next(err);
|
|
|
|
|
|
|
|
if (userData) {
|
|
|
|
if (userData.showemail && userData.showemail === "1")
|
|
|
|
userData.showemail = "checked";
|
|
|
|
else
|
|
|
|
userData.showemail = "";
|
|
|
|
res.json(userData);
|
|
|
|
} else {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/user/:userslug/favourites', function(req, res, next) {
|
|
|
|
var callerUID = req.user ? req.user.uid : '0';
|
|
|
|
|
|
|
|
user.get_uid_by_userslug(req.params.userslug, function(err, uid) {
|
|
|
|
if (!uid) {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uid != callerUID || callerUID == '0') {
|
|
|
|
res.json(403, {
|
|
|
|
error: 'Not allowed!'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
user.getUserFields(uid, ['username', 'userslug'], function(err, userData) {
|
|
|
|
if (err)
|
|
|
|
return next(err);
|
|
|
|
|
|
|
|
if (userData) {
|
|
|
|
posts.getFavourites(uid, function(err, posts) {
|
|
|
|
if (err)
|
|
|
|
return next(err);
|
|
|
|
userData.posts = posts;
|
|
|
|
userData.show_nofavourites = posts.length ? 'hide' : 'show';
|
|
|
|
res.json(userData);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/user/:userslug', function(req, res) {
|
|
|
|
var callerUID = req.user ? req.user.uid : '0';
|
|
|
|
|
|
|
|
getUserDataByUserSlug(req.params.userslug, callerUID, function(userData) {
|
|
|
|
if (userData) {
|
|
|
|
user.isFollowing(callerUID, userData.theirid, function(isFollowing) {
|
|
|
|
posts.getPostsByUid(userData.theirid, 0, 9, function(posts) {
|
|
|
|
|
|
|
|
userData.posts = posts.filter(function(p) {
|
|
|
|
return p.deleted !== "1";
|
|
|
|
});
|
|
|
|
userData.isFollowing = isFollowing;
|
|
|
|
if (!userData.profileviews)
|
|
|
|
userData.profileviews = 1;
|
|
|
|
if (callerUID !== userData.uid)
|
|
|
|
user.incrementUserFieldBy(userData.uid, 'profileviews', 1);
|
|
|
|
|
|
|
|
postTools.toHTML(userData.signature, function(err, signature) {
|
|
|
|
userData.signature = signature;
|
|
|
|
res.json(userData);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
res.json(404, {
|
|
|
|
error: 'User not found!'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
app.get('/api/users', getUsersSortedByJoinDate);
|
|
|
|
app.get('/api/users/sort-posts', getUsersSortedByPosts);
|
|
|
|
app.get('/api/users/sort-reputation', getUsersSortedByReputation);
|
|
|
|
app.get('/api/users/latest', getUsersSortedByJoinDate);
|
|
|
|
app.get('/api/users/search', getUsersForSearch);
|
|
|
|
|
|
|
|
|
|
|
|
function getUsersSortedByJoinDate(req, res) {
|
|
|
|
user.getUsers('users:joindate', 0, 49, function(err, data) {
|
|
|
|
res.json({
|
|
|
|
search_display: 'none',
|
|
|
|
loadmore_display: 'block',
|
|
|
|
users: data
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getUsersSortedByPosts(req, res) {
|
|
|
|
user.getUsers('users:postcount', 0, 49, function(err, data) {
|
|
|
|
res.json({
|
|
|
|
search_display: 'none',
|
|
|
|
loadmore_display: 'block',
|
|
|
|
users: data
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getUsersSortedByReputation(req, res) {
|
|
|
|
user.getUsers('users:reputation', 0, 49, function(err, data) {
|
|
|
|
res.json({
|
|
|
|
search_display: 'none',
|
|
|
|
loadmore_display: 'block',
|
|
|
|
users: data
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getUsersForSearch(req, res) {
|
|
|
|
res.json({
|
|
|
|
search_display: 'block',
|
|
|
|
loadmore_display: 'none',
|
|
|
|
users: []
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function getUserDataByUserSlug(userslug, callerUID, callback) {
|
|
|
|
user.get_uid_by_userslug(userslug, function(err, uid) {
|
|
|
|
|
|
|
|
if (uid === null) {
|
|
|
|
callback(null);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
user.getUserData(uid, function(err, data) {
|
|
|
|
if (data) {
|
|
|
|
data.joindate = new Date(parseInt(data.joindate, 10)).toISOString();
|
|
|
|
|
|
|
|
if (!data.birthday) {
|
|
|
|
data.age = '';
|
|
|
|
} else {
|
|
|
|
data.age = new Date().getFullYear() - new Date(data.birthday).getFullYear();
|
|
|
|
}
|
|
|
|
|
|
|
|
function canSeeEmail() {
|
|
|
|
return callerUID == uid || (data.email && (data.showemail && data.showemail === "1"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!canSeeEmail())
|
|
|
|
data.email = "";
|
|
|
|
|
|
|
|
if (callerUID == uid && (!data.showemail || data.showemail === "0"))
|
|
|
|
data.emailClass = "";
|
|
|
|
else
|
|
|
|
data.emailClass = "hide";
|
|
|
|
|
|
|
|
data.show_banned = data.banned === '1' ? '' : 'hide';
|
|
|
|
|
|
|
|
data.uid = uid;
|
|
|
|
data.yourid = callerUID;
|
|
|
|
data.theirid = uid;
|
|
|
|
|
|
|
|
user.getFollowingCount(uid, function(followingCount) {
|
|
|
|
user.getFollowerCount(uid, function(followerCount) {
|
|
|
|
data.followingCount = followingCount;
|
|
|
|
data.followerCount = followerCount;
|
|
|
|
callback(data);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
callback(null);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}(exports));
|