diff --git a/src/categories.js b/src/categories.js index 2912bf40c3..985f2a3df8 100644 --- a/src/categories.js +++ b/src/categories.js @@ -1,4 +1,4 @@ -var RDB = require('./redis.js'), +var RDB = require('./redis.js'), posts = require('./posts.js'), utils = require('./../public/src/utils.js'), user = require('./user.js'), @@ -10,7 +10,7 @@ var RDB = require('./redis.js'), Categories.create = function(data, callback) { RDB.incr('global:next_category_id', function(err, cid) { - if(err) + if (err) return callback(err, null); var slug = cid + '/' + utils.slugify(data.name); @@ -57,16 +57,16 @@ var RDB = require('./redis.js'), active_users = results[1]; var categoryData = { - 'category_name' : category_name, + 'category_name': category_name, 'category_description': category_description, 'disabled': disabled, - 'show_sidebar' : 'show', + 'show_sidebar': 'show', 'show_topic_button': 'inline-block', 'no_topics_message': 'hidden', 'topic_row_size': 'col-md-9', 'category_id': category_id, 'active_users': [], - 'topics' : [], + 'topics': [], 'twitter-intent-url': 'https://twitter.com/intent/tweet?url=' + encodeURIComponent(nconf.get('url') + 'category/' + category_slug) + '&text=' + encodeURIComponent(category_name), 'facebook-share-url': 'https://www.facebook.com/sharer/sharer.php?u=' + encodeURIComponent(nconf.get('url') + 'category/' + category_slug), 'google-share-url': 'https://plus.google.com/share?url=' + encodeURIComponent(nconf.get('url') + 'category/' + category_slug) @@ -102,7 +102,7 @@ var RDB = require('./redis.js'), categoryData.moderator_block_class = results[1].length > 0 ? '' : 'none'; categoryData.moderators = results[1]; categoryData.active_users = results[2]; - categoryData.show_sidebar = categoryData.topics.length > 0 ? 'show':'hidden'; + categoryData.show_sidebar = categoryData.topics.length > 0 ? 'show' : 'hidden'; callback(null, categoryData); }); } @@ -136,8 +136,8 @@ var RDB = require('./redis.js'), Categories.getModerators = function(cid, callback) { RDB.smembers('cid:' + cid + ':moderators', function(err, mods) { - if(!err) { - if(mods && mods.length) { + if (!err) { + if (mods && mods.length) { user.getMultipleUserFields(mods, ['username'], function(err, moderators) { callback(err, moderators); }); @@ -155,14 +155,14 @@ var RDB = require('./redis.js'), Categories.privileges = function(cid, uid, callback) { function isModerator(next) { user.isModerator(uid, cid, function(isMod) { - next(null, isMod); - }); + next(null, isMod); + }); } function isAdministrator(next) { user.isAdministrator(uid, function(isAdmin) { - next(null, isAdmin); - }); + next(null, isAdmin); + }); } async.parallel([isModerator, isAdministrator], function(err, results) { @@ -179,8 +179,8 @@ var RDB = require('./redis.js'), topics.hasReadTopics(tids, uid, function(hasRead) { var allread = true; - for (var i=0, ii=tids.length; i count) { + if (postData.length > count) { postData = postData.slice(0, count); } callback(postData); @@ -246,9 +246,9 @@ var RDB = require('./redis.js'), } topics.getPids(tid, function(err, pids) { - if(!err) { + if (!err) { async.each(pids, movePost, function(err) { - if(!err) { + if (!err) { callback(null, 1); } else { winston.err(err); @@ -267,15 +267,15 @@ var RDB = require('./redis.js'), Categories.addActiveUser(cid, uid); Categories.isUserActiveIn(oldCid, uid, function(err, active) { - if(!err && !active) { + if (!err && !active) { Categories.removeActiveUser(oldCid, uid); } }); } topics.getUids(tid, function(err, uids) { - if(!err && uids) { - for(var i=0; i 0) { - var photoUrl = photos[0].value; + var photoUrl = photos[0].value; photoUrl = path.dirname(photoUrl) + '/' + path.basename(photoUrl, path.extname(photoUrl)).slice(0, -6) + 'bigger' + path.extname(photoUrl); user.setUserField(uid, 'uploadedpicture', photoUrl); user.setUserField(uid, 'picture', photoUrl); @@ -157,5 +160,4 @@ var user = require('./user.js'), }); } -}(exports)); - +}(exports)); \ No newline at end of file diff --git a/src/messaging.js b/src/messaging.js index cb6bd0b66c..27b9b6d8b2 100644 --- a/src/messaging.js +++ b/src/messaging.js @@ -1,4 +1,3 @@ - var RDB = require('./redis'), async = require('async'); @@ -15,7 +14,7 @@ var RDB = require('./redis'), var uids = sortUids(fromuid, touid); RDB.incr('global:next_message_id', function(err, mid) { - if(err) + if (err) return callback(err, null); var message = { @@ -36,10 +35,10 @@ var RDB = require('./redis'), var uids = sortUids(fromuid, touid); RDB.lrange('messages:' + uids[0] + ':' + uids[1], 0, -1, function(err, mids) { - if(err) + if (err) return callback(err, null); - if(!mids || !mids.length) { + if (!mids || !mids.length) { return callback(null, []); } @@ -50,10 +49,10 @@ var RDB = require('./redis'), function getMessage(mid, next) { RDB.hgetall('message:' + mid, function(err, message) { - if(err) + if (err) return next(err); - if(message.fromuid === fromuid) + if (message.fromuid === fromuid) message.content = 'You : ' + message.content; else message.content = tousername + ' : ' + message.content; @@ -64,7 +63,7 @@ var RDB = require('./redis'), } async.eachSeries(mids, getMessage, function(err) { - if(err) + if (err) return callback(err, null); callback(null, messages); diff --git a/src/meta.js b/src/meta.js index 25c8d49f4b..73a938a914 100644 --- a/src/meta.js +++ b/src/meta.js @@ -35,7 +35,7 @@ var utils = require('./../public/src/utils.js'), }, set: function(field, value, callback) { RDB.hset('config', field, value, function(err, res) { - if(callback) + if (callback) callback(err, res); }); }, @@ -52,7 +52,7 @@ var utils = require('./../public/src/utils.js'), Meta.themes = { get: function(callback) { - var themePath = path.join(__dirname, '../node_modules'); + var themePath = path.join(__dirname, '../node_modules'); fs.readdir(themePath, function(err, files) { async.filter(files, function(file, next) { fs.stat(path.join(themePath, file), function(err, fileStat) { @@ -62,11 +62,11 @@ var utils = require('./../public/src/utils.js'), }); }, function(themes) { async.map(themes, function(theme, next) { - var config = path.join(themePath, theme, 'theme.json'); + var config = path.join(themePath, theme, 'theme.json'); if (fs.existsSync(config)) { fs.readFile(config, function(err, file) { - var configObj = JSON.parse(file.toString()); + var configObj = JSON.parse(file.toString()); if (!configObj.screenshot) configObj.screenshot = nconf.get('relative_path') + '/images/themes/default.png'; next(err, configObj); }); @@ -84,7 +84,7 @@ var utils = require('./../public/src/utils.js'), Meta.title = { build: function(urlFragment, current_user, callback) { - var self = this, + var self = this, user = require('./user'); async.parallel({ @@ -95,7 +95,7 @@ var utils = require('./../public/src/utils.js'), user.notifications.getUnreadCount(current_user, next); } }, function(err, values) { - var title; + var title; if (err) title = Meta.config.title || 'NodeBB'; else title = (values.title ? values.title + ' | ' : '') + (Meta.config.title || 'NodeBB'); @@ -113,13 +113,13 @@ var utils = require('./../public/src/utils.js'), } else if (urlFragment === 'users') { callback(null, 'Registered Users'); } else if (/^category\/\d+\/?/.test(urlFragment)) { - var cid = urlFragment.match(/category\/(\d+)/)[1]; + var cid = urlFragment.match(/category\/(\d+)/)[1]; require('./categories').getCategoryField(cid, 'name', function(err, name) { callback(null, name); }); } else if (/^topic\/\d+\/?/.test(urlFragment)) { - var tid = urlFragment.match(/topic\/(\d+)/)[1]; + var tid = urlFragment.match(/topic\/(\d+)/)[1]; require('./topics').getTopicField(tid, 'title', function(err, title) { callback(null, title); @@ -129,5 +129,4 @@ var utils = require('./../public/src/utils.js'), } -}(exports)); - +}(exports)); \ No newline at end of file diff --git a/src/notifications.js b/src/notifications.js index 3e251628f5..b3fdd4eafa 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -1,4 +1,4 @@ -var RDB = require('./redis.js'), +var RDB = require('./redis.js'), async = require('async'), utils = require('../public/src/utils.js'), @@ -35,25 +35,25 @@ var RDB = require('./redis.js'), 'path', path || null, 'datetime', Date.now(), 'uniqueId', uniqueId || utils.generateUUID(), - function(err, status) { - if (status === 'OK') callback(nid); - }); + function(err, status) { + if (status === 'OK') callback(nid); + }); }); }, push: function(nid, uids, callback) { if (!Array.isArray(uids)) uids = [uids]; - var numUids = uids.length, + var numUids = uids.length, x; notifications.get(nid, function(notif_data) { - for(x=0;x 0) { (function(uid) { notifications.remove_by_uniqueId(notif_data.uniqueId, uid, function() { RDB.zadd('uid:' + uid + ':notifications:unread', notif_data.score, nid); RDB.set('uid:' + uid + ':notifications:flag', 1); - global.io.sockets.in('uid_' + uid).emit('event:new_notification'); + global.io.sockets. in ('uid_' + uid).emit('event:new_notification'); if (callback) callback(true); }); })(uids[x]); diff --git a/src/plugins.js b/src/plugins.js index 900292c622..1afdc3b211 100644 --- a/src/plugins.js +++ b/src/plugins.js @@ -1,4 +1,4 @@ -var fs = require('fs'), +var fs = require('fs'), path = require('path'), RDB = require('./redis.js'), async = require('async'), @@ -16,7 +16,7 @@ var fs = require('fs'), if (this.initialized) return; if (global.env === 'development') winston.info('[plugins] Initializing plugins system'); - var _self = this; + var _self = this; // Read the list of activated plugins and require their libraries async.waterfall([ @@ -27,13 +27,13 @@ var fs = require('fs'), if (plugins && Array.isArray(plugins) && plugins.length > 0) { async.each(plugins, function(plugin, next) { // TODO: Update this check to also check node_modules - var pluginPath = path.join(__dirname, '../plugins/', plugin), + var pluginPath = path.join(__dirname, '../plugins/', plugin), modulePath = path.join(__dirname, '../node_modules/', plugin); if (fs.existsSync(pluginPath)) _self.loadPlugin(pluginPath, next); else if (fs.existsSync(modulePath)) _self.loadPlugin(modulePath, next); else { if (global.env === 'development') winston.warn('[plugins] Plugin \'' + plugin + '\' not found'); - next(); // Ignore this plugin silently + next(); // Ignore this plugin silently } }, next); } else next(); @@ -41,7 +41,7 @@ var fs = require('fs'), function(next) { if (global.env === 'development') winston.info('[plugins] Sorting hooks to fire in priority sequence'); Object.keys(_self.loadedHooks).forEach(function(hook) { - var hooks = _self.loadedHooks[hook]; + var hooks = _self.loadedHooks[hook]; hooks = hooks.sort(function(a, b) { return a[3] - b[3]; }); @@ -65,12 +65,12 @@ var fs = require('fs'), }, initialized: false, loadPlugin: function(pluginPath, callback) { - var _self = this; + var _self = this; fs.readFile(path.join(pluginPath, 'plugin.json'), function(err, data) { if (err) return callback(err); - var pluginData = JSON.parse(data), + var pluginData = JSON.parse(data), libraryPath, staticDir; async.parallel([ @@ -119,30 +119,30 @@ var fs = require('fs'), `data.callbacked`, whether or not the hook expects a callback (true), or a return (false). Only used for filters. (Default: false) `data.priority`, the relative priority of the method when it is eventually called (default: 10) */ - var _self = this; + var _self = this; if (data.hook && data.method) { // Assign default priority of 10 if none is passed-in if (!data.priority) data.priority = 10; _self.loadedHooks[data.hook] = _self.loadedHooks[data.hook] || []; - _self.loadedHooks[data.hook].push([id, data.method, !!data.callbacked, data.priority]); + _self.loadedHooks[data.hook].push([id, data.method, !! data.callbacked, data.priority]); if (global.env === 'development') winston.info('[plugins] Hook registered: ' + data.hook + ' will call ' + id); callback(); } else return; }, fireHook: function(hook, args, callback) { - var _self = this - hookList = this.loadedHooks[hook]; + var _self = this + hookList = this.loadedHooks[hook]; if (hookList && Array.isArray(hookList)) { if (global.env === 'development') winston.info('[plugins] Firing hook: \'' + hook + '\''); - var hookType = hook.split(':')[0]; - switch(hookType) { + var hookType = hook.split(':')[0]; + switch (hookType) { case 'filter': // Filters only take one argument, so only args[0] will be passed in - var returnVal = (Array.isArray(args) ? args[0] : args); + var returnVal = (Array.isArray(args) ? args[0] : args); async.eachSeries(hookList, function(hookObj, next) { if (hookObj[2]) { @@ -163,7 +163,7 @@ var fs = require('fs'), callback(returnVal); }); - break; + break; case 'action': async.each(hookList, function(hookObj) { if ( @@ -176,14 +176,14 @@ var fs = require('fs'), if (global.env === 'development') winston.info('[plugins] Expected method \'' + hookObj[1] + '\' in plugin \'' + hookObj[0] + '\' not found, skipping.'); } }); - break; + break; default: // Do nothing... - break; + break; } } else { // Otherwise, this hook contains no methods - var returnVal = (Array.isArray(args) ? args[0] : args); + var returnVal = (Array.isArray(args) ? args[0] : args); if (callback) callback(returnVal); } }, @@ -214,9 +214,9 @@ var fs = require('fs'), }, showInstalled: function(callback) { // TODO: Also check /node_modules - var _self = this; - localPluginPath = path.join(__dirname, '../plugins'), - npmPluginPath = path.join(__dirname, '../node_modules'); + var _self = this; + localPluginPath = path.join(__dirname, '../plugins'), + npmPluginPath = path.join(__dirname, '../node_modules'); async.waterfall([ function(next) { @@ -233,7 +233,7 @@ var fs = require('fs'), dirs[0] = dirs[0].map(function(file) { return path.join(localPluginPath, file); }).filter(function(file) { - var stats = fs.statSync(file); + var stats = fs.statSync(file); if (stats.isDirectory()) return true; else return false; }); @@ -241,8 +241,8 @@ var fs = require('fs'), dirs[1] = dirs[1].map(function(file) { return path.join(npmPluginPath, file); }).filter(function(file) { - var stats = fs.statSync(file); - if (stats.isDirectory() && file.substr(npmPluginPath.length+1, 14) === 'nodebb-plugin-') return true; + var stats = fs.statSync(file); + if (stats.isDirectory() && file.substr(npmPluginPath.length + 1, 14) === 'nodebb-plugin-') return true; else return false; }); @@ -250,17 +250,17 @@ var fs = require('fs'), }); }, function(files, next) { - var plugins = []; + var plugins = []; async.each(files, function(file, next) { - var configPath; + var configPath; async.waterfall([ function(next) { fs.readFile(path.join(file, 'plugin.json'), next); }, function(configJSON, next) { - var config = JSON.parse(configJSON); + var config = JSON.parse(configJSON); _self.isActive(config.id, function(err, active) { if (err) next(new Error('no-active-state')); @@ -272,7 +272,7 @@ var fs = require('fs'), }); } ], function(err, config) { - if (err) return next(); // Silently fail + if (err) return next(); // Silently fail plugins.push(config); next(); diff --git a/src/postTools.js b/src/postTools.js index 2006abc0c2..78e64621fd 100644 --- a/src/postTools.js +++ b/src/postTools.js @@ -1,4 +1,4 @@ -var RDB = require('./redis.js'), +var RDB = require('./redis.js'), posts = require('./posts.js'), topics = require('./topics'), threadTools = require('./threadTools.js'), @@ -57,7 +57,7 @@ var RDB = require('./redis.js'), } PostTools.edit = function(uid, pid, title, content, images) { - var success = function() { + var success = function() { posts.setPostField(pid, 'content', content); posts.setPostField(pid, 'edited', Date.now()); posts.setPostField(pid, 'editor', uid); @@ -82,7 +82,10 @@ var RDB = require('./redis.js'), }); } - next(null, {tid:tid, isMainPost:isMainPost}); + next(null, { + tid: tid, + isMainPost: isMainPost + }); }); }); }, @@ -90,12 +93,12 @@ var RDB = require('./redis.js'), PostTools.toHTML(content, next); } ], function(err, results) { - io.sockets.in('topic_' + results[1].tid).emit('event:post_edited', { + io.sockets. in ('topic_' + results[1].tid).emit('event:post_edited', { pid: pid, title: title, isMainPost: results[1].isMainPost, content: results[2], - uploadedImages:results[0] + uploadedImages: results[0] }); }); }; @@ -117,13 +120,13 @@ var RDB = require('./redis.js'), postSearch.remove(pid); posts.getPostFields(pid, ['tid', 'uid'], function(postData) { - RDB.hincrby('topic:'+postData.tid, 'postcount', -1); + RDB.hincrby('topic:' + postData.tid, 'postcount', -1); user.decrementUserFieldBy(postData.uid, 'postcount', 1, function(err, postcount) { RDB.zadd('users:postcount', postcount, postData.uid); }); - io.sockets.in('topic_' + postData.tid).emit('event:post_deleted', { + io.sockets. in ('topic_' + postData.tid).emit('event:post_deleted', { pid: pid }); @@ -153,35 +156,35 @@ var RDB = require('./redis.js'), PostTools.restore = function(uid, pid) { var success = function() { - posts.setPostField(pid, 'deleted', 0); + posts.setPostField(pid, 'deleted', 0); - posts.getPostFields(pid, ['tid', 'uid', 'content'], function(postData) { - RDB.hincrby('topic:'+postData.tid, 'postcount', 1); + posts.getPostFields(pid, ['tid', 'uid', 'content'], function(postData) { + RDB.hincrby('topic:' + postData.tid, 'postcount', 1); - user.incrementUserFieldBy(postData.uid, 'postcount', 1); + user.incrementUserFieldBy(postData.uid, 'postcount', 1); - io.sockets.in('topic_' + postData.tid).emit('event:post_restored', { - pid: pid - }); + io.sockets. in ('topic_' + postData.tid).emit('event:post_restored', { + pid: pid + }); - threadTools.get_latest_undeleted_pid(postData.tid, function(err, pid) { - posts.getPostField(pid, 'timestamp', function(timestamp) { - topics.updateTimestamp(postData.tid, timestamp); - }); + threadTools.get_latest_undeleted_pid(postData.tid, function(err, pid) { + posts.getPostField(pid, 'timestamp', function(timestamp) { + topics.updateTimestamp(postData.tid, timestamp); }); + }); - // Restore topic if it is the only post - topics.getTopicField(postData.tid, 'postcount', function(err, count) { - if (count === '1') { - threadTools.restore(postData.tid, uid); - } - }); + // Restore topic if it is the only post + topics.getTopicField(postData.tid, 'postcount', function(err, count) { + if (count === '1') { + threadTools.restore(postData.tid, uid); + } + }); - Feed.updateTopic(postData.tid); + Feed.updateTopic(postData.tid); - postSearch.index(postData.content, pid); - }); - }; + postSearch.index(postData.content, pid); + }); + }; PostTools.privileges(pid, uid, function(privileges) { if (privileges.editable) { @@ -193,11 +196,11 @@ var RDB = require('./redis.js'), PostTools.toHTML = function(raw, callback) { raw = raw || ''; plugins.fireHook('filter:post.parse', raw, function(parsed) { - var cheerio = require('cheerio'); + var cheerio = require('cheerio'); if (parsed && parsed.length > 0) { - var parsedContentDOM = cheerio.load(parsed); - var domain = nconf.get('url'); + var parsedContentDOM = cheerio.load(parsed); + var domain = nconf.get('url'); parsedContentDOM('a').each(function() { this.attr('rel', 'nofollow'); diff --git a/src/posts.js b/src/posts.js index ca56201021..84e9c655a0 100644 --- a/src/posts.js +++ b/src/posts.js @@ -1,4 +1,4 @@ -var RDB = require('./redis.js'), +var RDB = require('./redis.js'), utils = require('./../public/src/utils.js'), schema = require('./schema.js'), user = require('./user.js'), @@ -34,7 +34,7 @@ var RDB = require('./redis.js'), Posts.addUserInfoToPost = function(post, callback) { user.getUserFields(post.uid, ['username', 'userslug', 'reputation', 'postcount', 'picture', 'signature', 'banned'], function(err, userData) { - if(err) return callback(); + if (err) return callback(); postTools.toHTML(userData.signature, function(err, signature) { post.username = userData.username || 'anonymous'; @@ -42,12 +42,12 @@ var RDB = require('./redis.js'), post.user_rep = userData.reputation || 0; post.user_postcount = userData.postcount || 0; post.user_banned = userData.banned || '0'; - post.picture = userData.picture || require('gravatar').url('', {}, https=nconf.get('https')); + post.picture = userData.picture || require('gravatar').url('', {}, https = nconf.get('https')); post.signature = signature; - if(post.editor !== '') { + if (post.editor !== '') { user.getUserFields(post.editor, ['username', 'userslug'], function(err, editorData) { - if(err) return callback(); + if (err) return callback(); post.editorname = editorData.username; post.editorslug = editorData.userslug; @@ -104,7 +104,7 @@ var RDB = require('./redis.js'), } async.eachSeries(pids, getPostSummary, function(err) { - if(!err) { + if (!err) { callback(null, posts); } else { callback(err, null); @@ -120,22 +120,20 @@ var RDB = require('./redis.js'), Posts.getPostData = function(pid, callback) { RDB.hgetall('post:' + pid, function(err, data) { - if(err === null) { + if (err === null) { plugins.fireHook('filter:post.get', data, function(data) { callback(data); }); - } - else + } else console.log(err); }); } Posts.getPostFields = function(pid, fields, callback) { RDB.hmgetObject('post:' + pid, fields, function(err, data) { - if(err === null) { + if (err === null) { callback(data); - } - else { + } else { console.log(err); } }); @@ -143,7 +141,7 @@ var RDB = require('./redis.js'), Posts.getPostField = function(pid, field, callback) { RDB.hget('post:' + pid, field, function(err, data) { - if(err === null) + if (err === null) callback(data); else console.log(err); @@ -158,18 +156,18 @@ var RDB = require('./redis.js'), Posts.getPostsByPids = function(pids, callback) { var posts = []; - async.eachSeries(pids, function (pid, callback) { + async.eachSeries(pids, function(pid, callback) { Posts.getPostData(pid, function(postData) { - if(postData) { + if (postData) { postData.relativeTime = utils.relativeTime(postData.timestamp); postData.post_rep = postData.reputation; postData['edited-class'] = postData.editor !== '' ? '' : 'none'; postData['relativeEditTime'] = postData.edited !== '0' ? utils.relativeTime(postData.edited) : ''; - if(postData.uploadedImages) { + if (postData.uploadedImages) { try { postData.uploadedImages = JSON.parse(postData.uploadedImages); - } catch(err) { + } catch (err) { postData.uploadedImages = []; winston.err(err); } @@ -185,7 +183,7 @@ var RDB = require('./redis.js'), } }); }, function(err) { - if(!err) { + if (!err) { callback(null, posts); } else { callback(err, null); @@ -220,14 +218,14 @@ var RDB = require('./redis.js'), Posts.emitTooManyPostsAlert = function(socket) { socket.emit('event:alert', { title: 'Too many posts!', - message: 'You can only post every '+ meta.config.postDelay/1000 + ' seconds.', + message: 'You can only post every ' + meta.config.postDelay / 1000 + ' seconds.', type: 'danger', timeout: 2000 }); } Posts.reply = function(tid, uid, content, images, callback) { - if(content) { + if (content) { content = content.trim(); } @@ -237,7 +235,7 @@ var RDB = require('./redis.js'), } user.getUserField(uid, 'lastposttime', function(lastposttime) { - if(Date.now() - lastposttime < meta.config.postDelay) { + if (Date.now() - lastposttime < meta.config.postDelay) { callback(new Error('too-many-posts'), null); return; } @@ -256,10 +254,12 @@ var RDB = require('./redis.js'), threadTools.notify_followers(tid, uid); Posts.addUserInfoToPost(postData, function() { - var socketData = { posts: [postData] }; - io.sockets.in('topic_' + tid).emit('event:new_post', socketData); - io.sockets.in('recent_posts').emit('event:new_post', socketData); - io.sockets.in('users/' + uid).emit('event:new_post', socketData); + var socketData = { + posts: [postData] + }; + io.sockets. in ('topic_' + tid).emit('event:new_post', socketData); + io.sockets. in ('recent_posts').emit('event:new_post', socketData); + io.sockets. in ('users/' + uid).emit('event:new_post', socketData); }); callback(null, 'Reply successful'); @@ -333,7 +333,7 @@ var RDB = require('./redis.js'), async.parallel({ uploadedImages: function(next) { Posts.uploadPostImages(postData.pid, images, function(err, uploadedImages) { - if(err) { + if (err) { winston.error('Uploading images failed!', err.stack); next(null, []); } else { @@ -369,21 +369,26 @@ var RDB = require('./redis.js'), var imgur = require('./imgur'); imgur.setClientID(meta.config.imgurClientID); - if(!images) + if (!images) return callback(null, []); - var uploadedImages = images.filter(function(image) { return !!image.url; }); + var uploadedImages = images.filter(function(image) { + return !!image.url; + }); function uploadImage(image, next) { - if(!image.data) + if (!image.data) return next(null); imgur.upload(image.data, 'base64', function(err, data) { - if(err) { + if (err) { next(err); } else { - if(data.success) { - var img= {url:data.data.link, name:image.name}; + if (data.success) { + var img = { + url: data.data.link, + name: image.name + }; uploadedImages.push(img); next(null); } else { @@ -395,7 +400,7 @@ var RDB = require('./redis.js'), } async.each(images, uploadImage, function(err) { - if(!err) { + if (!err) { Posts.setPostField(pid, 'uploadedImages', JSON.stringify(uploadedImages)); callback(null, uploadedImages); } else { @@ -409,28 +414,26 @@ var RDB = require('./redis.js'), user.getPostIds(uid, start, end, function(pids) { - if(pids && pids.length) { + if (pids && pids.length) { Posts.getPostsByPids(pids, function(err, posts) { callback(posts); }); - } - else + } else callback([]); }); } Posts.getTopicPostStats = function(socket) { RDB.mget(['totaltopiccount', 'totalpostcount'], function(err, data) { - if(err === null) { + if (err === null) { var stats = { - topics: data[0]?data[0]:0, - posts: data[1]?data[1]:0 + topics: data[0] ? data[0] : 0, + posts: data[1] ? data[1] : 0 }; socket.emit('post.stats', stats); - } - else + } else console.log(err); }); } @@ -442,7 +445,7 @@ var RDB = require('./redis.js'), Posts.getPostField(pid, 'content', function(content) { postSearch.remove(pid, function() { - if(content && content.length) { + if (content && content.length) { postSearch.index(content, pid); } callback(null); @@ -451,7 +454,7 @@ var RDB = require('./redis.js'), } async.each(pids, reIndex, function(err) { - if(err) { + if (err) { callback(err, null); } else { callback(null, 'Posts reindexed'); @@ -461,11 +464,11 @@ var RDB = require('./redis.js'), Posts.getFavourites = function(uid, callback) { RDB.zrevrange('uid:' + uid + ':favourites', 0, -1, function(err, pids) { - if(err) + if (err) return callback(err, null); Posts.getPostSummaryByPids(pids, function(err, posts) { - if(err) + if (err) return callback(err, null); callback(null, posts); diff --git a/src/redis.js b/src/redis.js index 6f80a2c5c7..d8e1c750ba 100644 --- a/src/redis.js +++ b/src/redis.js @@ -5,7 +5,7 @@ RedisDB.exports = redis.createClient(nconf.get('redis:port'), nconf.get('redis:host')); - if(nconf.get('redis:password')) { + if (nconf.get('redis:password')) { RedisDB.exports.auth(nconf.get('redis:password')); } @@ -20,8 +20,8 @@ /* - * A possibly more efficient way of doing multiple sismember calls - */ + * A possibly more efficient way of doing multiple sismember calls + */ RedisDB.exports.sismembers = function(key, needles, callback) { var tempkey = key + ':temp:' + utils.generateUUID(); RedisDB.exports.sadd(tempkey, needles, function() { @@ -35,18 +35,17 @@ /* * gets fields of a hash as an object instead of an array */ - RedisDB.exports.hmgetObject = function (key, fields, callback) { + RedisDB.exports.hmgetObject = function(key, fields, callback) { RedisDB.exports.hmget(key, fields, function(err, data) { - if(err === null) { + if (err === null) { var returnData = {}; - for(var i=0, ii=fields.length; i= after) { tids = tids.slice(0, x); break; @@ -457,7 +464,9 @@ var RDB = require('./redis.js') } // Sort into descending order - tids.sort(function(a, b) { return b - a; }); + tids.sort(function(a, b) { + return b - a; + }); async.each(tids, function(tid, next) { Topics.getTopicDataWithUsername(tid, function(topicData) { @@ -472,14 +481,14 @@ var RDB = require('./redis.js') Topics.markAllRead = function(uid, callback) { RDB.smembers('topics:tid', function(err, tids) { - if(err) { + if (err) { console.log(err); callback(err, null); return; } - if(tids && tids.length) { - for(var i=0; i 150) { - next({error:'Signature can\'t be longer than 150 characters!'}, false); + if (data['signature'] !== undefined && data['signature'].length > 150) { + next({ + error: 'Signature can\'t be longer than 150 characters!' + }, false); } else { next(null, true); } } function isEmailAvailable(next) { - if(!data['email']) { + if (!data['email']) { return next(null, true); } User.getUserField(uid, 'email', function(err, email) { - if(email !== data['email']) { + if (email !== data['email']) { User.isEmailAvailable(data['email'], function(err, available) { - if(err) + if (err) return next(err, null); - if(!available) { - next({error:'Email not available!'}, false); + if (!available) { + next({ + error: 'Email not available!' + }, false); } else { next(null, true); } @@ -228,11 +239,11 @@ var utils = require('./../public/src/utils.js'), } async.series([isSignatureValid, isEmailAvailable], function(err, results) { - if(err) { + if (err) { callback(err, returnData); } else { async.each(fields, updateField, function(err) { - if(err) { + if (err) { callback(err, returnData); } else { returnData.success = true; @@ -243,18 +254,18 @@ var utils = require('./../public/src/utils.js'), }); function updateField(field, next) { - if(data[field] !== undefined) { - if(field === 'email') { + if (data[field] !== undefined) { + if (field === 'email') { var gravatarpicture = User.createGravatarURLFromEmail(data[field]); User.setUserField(uid, 'gravatarpicture', gravatarpicture); User.getUserFields(uid, ['email', 'picture', 'uploadedpicture'], function(err, userData) { - if(err) + if (err) return next(err); RDB.hdel('email:uid', userData['email']); RDB.hset('email:uid', data['email'], uid); User.setUserField(uid, field, data[field]); - if(userData.picture !== userData.uploadedpicture) { + if (userData.picture !== userData.uploadedpicture) { returnData.picture = gravatarpicture; User.setUserField(uid, 'picture', gravatarpicture); } @@ -262,7 +273,7 @@ var utils = require('./../public/src/utils.js'), next(null); }); return; - } else if(field === 'signature') { + } else if (field === 'signature') { data[field] = utils.strip_tags(data[field]); } @@ -282,13 +293,15 @@ var utils = require('./../public/src/utils.js'), } User.changePassword = function(uid, data, callback) { - if(!utils.isPasswordValid(data.newPassword)) { - return callback({error:'Invalid password!'}); + if (!utils.isPasswordValid(data.newPassword)) { + return callback({ + error: 'Invalid password!' + }); } User.getUserField(uid, 'password', function(err, user_password) { bcrypt.compare(data.currentPassword, user_password, function(err, res) { - if(err) { + if (err) { return callback(err); } @@ -299,7 +312,9 @@ var utils = require('./../public/src/utils.js'), callback(null); }); } else { - callback({error:'Your current password is not correct!'}); + callback({ + error: 'Your current password is not correct!' + }); } }); }); @@ -325,13 +340,13 @@ var utils = require('./../public/src/utils.js'), var data = []; RDB.zrevrange(set, start, stop, function(err, uids) { - if(err) { + if (err) { return callback(err, null); } function iterator(uid, callback) { User.getUserData(uid, function(err, userData) { - if(userData) { + if (userData) { data.push(userData); } callback(null); @@ -356,11 +371,11 @@ var utils = require('./../public/src/utils.js'), options.forcedefault = 'y'; } - return require('gravatar').url(email, options, https=nconf.get('https')); + return require('gravatar').url(email, options, https = nconf.get('https')); } User.hashPassword = function(password, callback) { - if(!password) { + if (!password) { callback(password); return; } @@ -372,17 +387,17 @@ var utils = require('./../public/src/utils.js'), User.reIndexAll = function(callback) { User.getUsers('users:joindate', 0, -1, function(err, usersData) { - if(err) { + if (err) { return callback(err, null); } function reIndexUser(uid, username) { - userSearch.remove(uid, function(){ + userSearch.remove(uid, function() { userSearch.index(username, uid); }) } - for(var i=0; i made a new post'; - notifications.create(message, 5, nconf.get('relative_path') + '/topic/' + slug + '#' + pid, 'topic:'+ tid, function(nid) { - notifications.push(nid, followers); + notifications.create(message, 5, nconf.get('relative_path') + '/topic/' + slug + '#' + pid, 'topic:' + tid, function(nid) { + notifications.push(nid, followers); }); }); }); @@ -594,7 +611,7 @@ var utils = require('./../public/src/utils.js'), User.isFollowing = function(uid, theirid, callback) { RDB.sismember('following:' + uid, theirid, function(err, data) { - if(!err) { + if (!err) { callback(data === 1); } else { console.log(err); @@ -604,7 +621,7 @@ var utils = require('./../public/src/utils.js'), User.exists = function(userslug, callback) { User.get_uid_by_userslug(userslug, function(err, exists) { - callback(!!exists); + callback( !! exists); }); }; @@ -612,7 +629,9 @@ var utils = require('./../public/src/utils.js'), RDB.get('usercount', function(err, count) { RDB.handle(err); - socket.emit('user.count', { count: count ? count : 0 }); + socket.emit('user.count', { + count: count ? count : 0 + }); }); }; @@ -621,8 +640,11 @@ var utils = require('./../public/src/utils.js'), RDB.handle(err); User.getUserFields(uid, ['username', 'userslug'], function(err, userData) { - if(!err && userData) - socket.emit('user.latest', {userslug: userData.userslug, username: userData.username}); + if (!err && userData) + socket.emit('user.latest', { + userslug: userData.userslug, + username: userData.username + }); }); }); } @@ -725,7 +747,7 @@ var utils = require('./../public/src/utils.js'), RDB.handle(err); } - var expiry = 60*60*24*14, // Login valid for two weeks + var expiry = 60 * 60 * 24 * 14, // Login valid for two weeks sess_key = 'sess:' + sessionID + ':uid', uid_key = 'uid:' + uid + ':session'; @@ -739,14 +761,14 @@ var utils = require('./../public/src/utils.js'), User.isModerator = function(uid, cid, callback) { RDB.sismember('cid:' + cid + ':moderators', uid, function(err, exists) { RDB.handle(err); - callback(!!exists); + callback( !! exists); }); } User.isAdministrator = function(uid, callback) { Groups.getGidFromName('Administrators', function(err, gid) { Groups.isMember(uid, gid, function(err, isAdmin) { - callback(!!isAdmin); + callback( !! isAdmin); }); }); } @@ -769,9 +791,11 @@ var utils = require('./../public/src/utils.js'), RDB.handle(err); } - if (expiry >= +Date.now()/1000|0) { + if (expiry >= +Date.now() / 1000 | 0) { if (!callback) { - socket.emit('user:reset.valid', { valid: true }); + socket.emit('user:reset.valid', { + valid: true + }); } else { callback(true); } @@ -780,7 +804,9 @@ var utils = require('./../public/src/utils.js'), RDB.del('reset:' + code + ':uid'); RDB.del('reset:' + code + ':expiry'); if (!callback) { - socket.emit('user:reset.valid', { valid: false }); + socket.emit('user:reset.valid', { + valid: false + }); } else { callback(false); } @@ -788,7 +814,9 @@ var utils = require('./../public/src/utils.js'), }); } else { if (!callback) { - socket.emit('user:reset.valid', { valid: false }); + socket.emit('user:reset.valid', { + valid: false + }); } else { callback(false); } @@ -801,23 +829,25 @@ var utils = require('./../public/src/utils.js'), // Generate a new reset code var reset_code = utils.generateUUID(); RDB.set('reset:' + reset_code + ':uid', uid); - RDB.set('reset:' + reset_code + ':expiry', (60*60)+new Date()/1000|0); // Active for one hour + RDB.set('reset:' + reset_code + ':expiry', (60 * 60) + new Date() / 1000 | 0); // Active for one hour var reset_link = nconf.get('url') + 'reset/' + reset_code, - reset_email = global.templates['emails/reset'].parse({'RESET_LINK': reset_link}), - reset_email_plaintext = global.templates['emails/reset_plaintext'].parse({ 'RESET_LINK': reset_link }); + reset_email = global.templates['emails/reset'].parse({ + 'RESET_LINK': reset_link + }), + reset_email_plaintext = global.templates['emails/reset_plaintext'].parse({ + 'RESET_LINK': reset_link + }); var message = emailjs.message.create({ text: reset_email_plaintext, - from: meta.config.mailer?meta.config.mailer.from:'localhost@example.org', + from: meta.config.mailer ? meta.config.mailer.from : 'localhost@example.org', to: email, subject: 'Password Reset Requested', - attachment: [ - { - data: reset_email, - alternative: true - } - ] + attachment: [{ + data: reset_email, + alternative: true + }] }); emailjsServer.send(message, function(err, success) { @@ -860,7 +890,9 @@ var utils = require('./../public/src/utils.js'), RDB.del('reset:' + code + ':uid'); RDB.del('reset:' + code + ':expiry'); - socket.emit('user:reset.commit', { status: 'ok' }); + socket.emit('user:reset.commit', { + status: 'ok' + }); }); } }); @@ -870,9 +902,11 @@ var utils = require('./../public/src/utils.js'), User.email = { exists: function(socket, email, callback) { User.get_uid_by_email(email, function(exists) { - exists = !!exists; + exists = !! exists; if (typeof callback !== 'function') { - socket.emit('user.email.exists', { exists: exists }); + socket.emit('user.email.exists', { + exists: exists + }); } else { callback(exists); } @@ -887,9 +921,13 @@ var utils = require('./../public/src/utils.js'), if (email !== null) { RDB.set('email:' + email + ':confirm', true); RDB.del('confirm:' + code + ':email'); - callback({ status: 'ok' }); + callback({ + status: 'ok' + }); } else { - callback({ status: 'not_ok' }); + callback({ + status: 'not_ok' + }); } }); } @@ -897,7 +935,7 @@ var utils = require('./../public/src/utils.js'), User.notifications = { get: function(uid, callback) { - var maxNotifs = 15; + var maxNotifs = 15; async.parallel({ unread: function(next) { @@ -946,7 +984,7 @@ var utils = require('./../public/src/utils.js'), } }, function(err, notifications) { // While maintaining score sorting, sort by time - var readCount = notifications.read.length, + var readCount = notifications.read.length, unreadCount = notifications.unread.length; notifications.read.sort(function(a, b) { @@ -985,4 +1023,4 @@ var utils = require('./../public/src/utils.js'), }); } } -}(exports)); +}(exports)); \ No newline at end of file diff --git a/src/webserver.js b/src/webserver.js index ca1c9c8f4d..7dff3c792b 100644 --- a/src/webserver.js +++ b/src/webserver.js @@ -31,12 +31,19 @@ var express = require('express'), * accepts: metaTags */ app.build_header = function(options, callback) { - var defaultMetaTags = [ - { name: 'viewport', content: 'width=device-width, initial-scale=1.0' }, - { name: 'content-type', content: 'text/html; charset=UTF-8' }, - { name: 'apple-mobile-web-app-capable', content: 'yes' }, - { property: 'og:site_name', content: meta.config.title || 'NodeBB' }, - ], + var defaultMetaTags = [{ + name: 'viewport', + content: 'width=device-width, initial-scale=1.0' + }, { + name: 'content-type', + content: 'text/html; charset=UTF-8' + }, { + name: 'apple-mobile-web-app-capable', + content: 'yes' + }, { + property: 'og:site_name', + content: meta.config.title || 'NodeBB' + }, ], metaString = utils.buildMetaTags(defaultMetaTags.concat(options.metaTags || [])), templateValues = { cssSrc: meta.config['theme:src'] || nconf.get('relative_path') + '/vendor/bootstrap/css/bootstrap.min.css', @@ -58,21 +65,24 @@ var express = require('express'), // Middlewares app.use(express.favicon(path.join(__dirname, '../', 'public', 'favicon.ico'))); - app.use(require('less-middleware')({ src: path.join(__dirname, '../', 'public'), prefix:nconf.get('relative_path') })); + app.use(require('less-middleware')({ + src: path.join(__dirname, '../', 'public'), + prefix: nconf.get('relative_path') + })); app.use(nconf.get('relative_path'), express.static(path.join(__dirname, '../', 'public'))); - app.use(express.bodyParser()); // Puts POST vars in request.body + app.use(express.bodyParser()); // Puts POST vars in request.body - app.use(express.cookieParser()); // If you want to parse cookies (res.cookies) + app.use(express.cookieParser()); // If you want to parse cookies (res.cookies) app.use(express.compress()); app.use(express.session({ store: new RedisStore({ client: RDB, - ttl: 60*60*24*30 + ttl: 60 * 60 * 24 * 30 }), secret: nconf.get('secret'), key: 'express.sid', cookie: { - maxAge: 60*60*24*30*1000 // 30 days + maxAge: 60 * 60 * 24 * 30 * 1000 // 30 days } })); app.use(express.csrf()); @@ -83,7 +93,7 @@ var express = require('express'), // Static Directories for NodeBB Plugins app.configure(function() { - var tailMiddlewares = []; + var tailMiddlewares = []; plugins.ready(function() { // Remove some middlewares until the router is gone @@ -92,7 +102,7 @@ var express = require('express'), tailMiddlewares.push(app.stack.pop()); tailMiddlewares.push(app.stack.pop()); tailMiddlewares.push(app.stack.pop()); - for(d in plugins.staticDirs) { + for (d in plugins.staticDirs) { app.use(nconf.get('relative_path') + '/plugins/' + d, express.static(plugins.staticDirs[d])); } @@ -138,7 +148,9 @@ var express = require('express'), // respond with json if (req.accepts('json')) { - res.send({ error: 'Not found' }); + res.send({ + error: 'Not found' + }); return; } @@ -155,7 +167,9 @@ var express = require('express'), res.status(err.status || 500); - res.json('500', { error: err.message }); + res.json('500', { + error: err.message + }); }); @@ -177,19 +191,22 @@ var express = require('express'), (function() { var routes = ['login', 'register', 'account', 'recent', 'unread', 'popular', 'active', '403', '404']; - for (var i=0, ii=routes.length; i 0)) { + if ((route === 'login' || route === 'register') && (req.user && req.user.uid > 0)) { user.getUserField(req.user.uid, 'userslug', function(err, userslug) { - res.redirect('/users/'+userslug); + res.redirect('/users/' + userslug); }); return; } - app.build_header({ req: req, res: res }, function(err, header) { + app.build_header({ + req: req, + res: res + }, function(err, header) { res.send(header + app.create_route(route) + templates['footer']); }); }); @@ -204,12 +221,19 @@ var express = require('express'), app.build_header({ req: req, res: res, - metaTags: [ - { name: "title", content: meta.config.title || 'NodeBB' }, - { name: "description", content: meta.config.description || '' }, - { property: 'og:title', content: 'Index | ' + (meta.config.title || 'NodeBB') }, - { property: "og:type", content: 'website' } - ] + metaTags: [{ + name: "title", + content: meta.config.title || 'NodeBB' + }, { + name: "description", + content: meta.config.description || '' + }, { + property: 'og:title', + content: 'Index | ' + (meta.config.title || 'NodeBB') + }, { + property: "og:type", + content: 'website' + }] }, next); }, "categories": function(next) { @@ -233,9 +257,9 @@ var express = require('express'), if (tid.match(/^\d+\.rss$/)) { tid = tid.slice(0, -4); - var rssPath = path.join(__dirname, '../', 'feeds/topics', tid + '.rss'), + var rssPath = path.join(__dirname, '../', 'feeds/topics', tid + '.rss'), loadFeed = function() { - fs.readFile(rssPath, function (err, data) { + fs.readFile(rssPath, function(err, data) { if (err) res.type('text').send(404, "Unable to locate an rss feed at this location."); else res.type('xml').set('Content-Length', data.length).send(data); }); @@ -255,8 +279,8 @@ var express = require('express'), async.waterfall([ function(next) { topics.getTopicWithPosts(tid, ((req.user) ? req.user.uid : 0), 0, -1, function(err, topicData) { - if(topicData) { - if(topicData.deleted === '1' && topicData.expose_tools === 0) + if (topicData) { + if (topicData.deleted === '1' && topicData.expose_tools === 0) return next(new Error('Topic deleted'), null); } @@ -267,7 +291,7 @@ var express = require('express'), var lastMod = 0, timestamp; - for(var x=0,numPosts=topicData.posts.length;x lastMod) lastMod = timestamp; } @@ -275,16 +299,31 @@ var express = require('express'), app.build_header({ req: req, res: res, - metaTags: [ - { name: "title", content: topicData.topic_name }, - { property: 'og:title', content: topicData.topic_name + ' | ' + (meta.config.title || 'NodeBB') }, - { property: "og:type", content: 'article' }, - { property: "og:url", content: nconf.get('url') + 'topic/' + topicData.slug }, - { property: 'og:image', content: topicData.main_posts[0].picture }, - { property: "article:published_time", content: new Date(parseInt(topicData.main_posts[0].timestamp, 10)).toISOString() }, - { property: 'article:modified_time', content: new Date(lastMod).toISOString() }, - { property: 'article:section', content: topicData.category_name } - ] + metaTags: [{ + name: "title", + content: topicData.topic_name + }, { + property: 'og:title', + content: topicData.topic_name + ' | ' + (meta.config.title || 'NodeBB') + }, { + property: "og:type", + content: 'article' + }, { + property: "og:url", + content: nconf.get('url') + 'topic/' + topicData.slug + }, { + property: 'og:image', + content: topicData.main_posts[0].picture + }, { + property: "article:published_time", + content: new Date(parseInt(topicData.main_posts[0].timestamp, 10)).toISOString() + }, { + property: 'article:modified_time', + content: new Date(lastMod).toISOString() + }, { + property: 'article:section', + content: topicData.category_name + }] }, function(err, header) { next(err, { header: header, @@ -310,9 +349,9 @@ var express = require('express'), if (cid.match(/^\d+\.rss$/)) { cid = cid.slice(0, -4); - var rssPath = path.join(__dirname, '../', 'feeds/categories', cid + '.rss'), + var rssPath = path.join(__dirname, '../', 'feeds/categories', cid + '.rss'), loadFeed = function() { - fs.readFile(rssPath, function (err, data) { + fs.readFile(rssPath, function(err, data) { if (err) res.type('text').send(404, "Unable to locate an rss feed at this location."); else res.type('xml').set('Content-Length', data.length).send(data); }); @@ -333,8 +372,8 @@ var express = require('express'), function(next) { categories.getCategoryById(cid, 0, function(err, categoryData) { - if(categoryData) { - if(categoryData.disabled === '1') + if (categoryData) { + if (categoryData.disabled === '1') return next(new Error('Category disabled'), null); } next(err, categoryData); @@ -344,11 +383,16 @@ var express = require('express'), app.build_header({ req: req, res: res, - metaTags: [ - { name: 'title', content: categoryData.category_name }, - { name: 'description', content: categoryData.category_description }, - { property: "og:type", content: 'website' } - ] + metaTags: [{ + name: 'title', + content: categoryData.category_name + }, { + name: 'description', + content: categoryData.category_description + }, { + property: "og:type", + content: 'website' + }] }, function(err, header) { next(err, { header: header, @@ -357,7 +401,7 @@ var express = require('express'), }); } ], function(err, data) { - if(err) return res.redirect('404'); + if (err) return res.redirect('404'); var category_url = cid + (req.params.slug ? '/' + req.params.slug : ''); res.send( @@ -370,13 +414,16 @@ var express = require('express'), }); app.get('/confirm/:code', function(req, res) { - app.build_header({ req: req, res: res }, function(err, header) { + app.build_header({ + req: req, + res: res + }, function(err, header) { res.send(header + '' + templates['footer']); }); }); app.get('/sitemap.xml', function(req, res) { - var sitemap = require('./sitemap.js'); + var sitemap = require('./sitemap.js'); sitemap.render(function(xml) { res.type('xml').set('Content-Length', xml.length).send(xml); @@ -385,15 +432,15 @@ var express = require('express'), app.get('/robots.txt', function(req, res) { res.set('Content-Type', 'text/plain'); - res.send( "User-agent: *\n" + - "Disallow: \n" + - "Disallow: /admin/\n" + - "Sitemap: " + nconf.get('url') + "sitemap.xml"); + res.send("User-agent: *\n" + + "Disallow: \n" + + "Disallow: /admin/\n" + + "Sitemap: " + nconf.get('url') + "sitemap.xml"); }); app.get('/cid/:cid', function(req, res) { categories.getCategoryData(req.params.cid, function(err, data) { - if(data) + if (data) res.send(data); else res.send(404, "Category doesn't exist!"); @@ -401,8 +448,8 @@ var express = require('express'), }); app.get('/tid/:tid', function(req, res) { - topics.getTopicData(req.params.tid, function(data){ - if(data) + topics.getTopicData(req.params.tid, function(data) { + if (data) res.send(data); else res.send(404, "Topic doesn't exist!"); @@ -410,8 +457,8 @@ var express = require('express'), }); app.get('/pid/:pid', function(req, res) { - posts.getPostData(req.params.pid, function(data){ - if(data) + posts.getPostData(req.params.pid, function(data) { + if (data) res.send(data); else res.send(404, "Post doesn't exist!"); @@ -421,7 +468,10 @@ var express = require('express'), app.get('/outgoing', function(req, res) { if (!req.query.url) return res.redirect('/404'); - app.build_header({ req: req, res: res }, function(err, header) { + app.build_header({ + req: req, + res: res + }, function(err, header) { res.send( header + '\n\t' + @@ -431,25 +481,31 @@ var express = require('express'), }); app.get('/search', function(req, res) { - app.build_header({ req: req, res: res }, function(err, header) { + app.build_header({ + req: req, + res: res + }, function(err, header) { res.send(header + app.create_route("search", null, "search") + templates['footer']); }); }); app.get('/search/:term', function(req, res) { - app.build_header({ req: req, res: res }, function(err, header) { - res.send(header + app.create_route("search/"+req.params.term, null, "search") + templates['footer']); + app.build_header({ + req: req, + res: res + }, function(err, header) { + res.send(header + app.create_route("search/" + req.params.term, null, "search") + templates['footer']); }); }); app.get('/reindex', function(req, res) { topics.reIndexAll(function(err) { - if(err) { + if (err) { return res.json(err); } user.reIndexAll(function(err) { - if(err) { + if (err) { return res.json(err); } else { res.send('Topics and users reindexed'); @@ -462,4 +518,4 @@ var express = require('express'), }(WebServer)); server.listen(nconf.get('PORT') || nconf.get('port')); -global.server = server; +global.server = server; \ No newline at end of file diff --git a/src/websockets.js b/src/websockets.js index ea18ef15bc..c67046cb28 100644 --- a/src/websockets.js +++ b/src/websockets.js @@ -1,8 +1,7 @@ - var SocketIO = require('socket.io').listen(global.server, { - log: false, - transports: ['websocket', 'xhr-polling', 'jsonp-polling', 'flashsocket'] - }), + log: false, + transports: ['websocket', 'xhr-polling', 'jsonp-polling', 'flashsocket'] +}), cookie = require('cookie'), express = require('express'), user = require('./user.js'), @@ -22,7 +21,7 @@ var SocketIO = require('socket.io').listen(global.server, { RDB = require('./redis'), RedisStore = new RedisStoreLib({ client: RDB, - ttl: 60*60*24*14 + ttl: 60 * 60 * 24 * 14 }), socketCookieParser = express.cookieParser(nconf.get('secret')), admin = { @@ -40,7 +39,7 @@ var SocketIO = require('socket.io').listen(global.server, { global.io = io; io.sockets.on('connection', function(socket) { - var hs = socket.handshake, + var hs = socket.handshake, sessionID, uid; // Validate the session, if present @@ -53,12 +52,16 @@ var SocketIO = require('socket.io').listen(global.server, { userSockets[uid] = userSockets[uid] || []; userSockets[uid].push(socket); - if(uid) { + if (uid) { socket.join('uid_' + uid); - io.sockets.in('global').emit('api:user.isOnline', isUserOnline(uid)); + io.sockets. in ('global').emit('api:user.isOnline', isUserOnline(uid)); user.getUserField(uid, 'username', function(err, username) { - socket.emit('event:connect', {status: 1, username:username, uid:uid}); + socket.emit('event:connect', { + status: 1, + username: username, + uid: uid + }); }); } }); @@ -69,25 +72,25 @@ var SocketIO = require('socket.io').listen(global.server, { socket.on('disconnect', function() { var index = userSockets[uid].indexOf(socket); - if(index !== -1) { + if (index !== -1) { userSockets[uid].splice(index, 1); } - if(userSockets[uid].length === 0) { + if (userSockets[uid].length === 0) { delete users[sessionID]; delete userSockets[uid]; - if(uid) { - io.sockets.in('global').emit('api:user.isOnline', isUserOnline(uid)); + if (uid) { + io.sockets. in ('global').emit('api:user.isOnline', isUserOnline(uid)); } } emitOnlineUserCount(); - for(var roomName in rooms) { + for (var roomName in rooms) { socket.leave(roomName); - if(rooms[roomName][socket.id]) { + if (rooms[roomName][socket.id]) { delete rooms[roomName][socket.id]; } @@ -103,8 +106,8 @@ var SocketIO = require('socket.io').listen(global.server, { function getUidsInRoom(room) { var uids = []; - for(var socketId in room) { - if(uids.indexOf(room[socketId]) === -1) + for (var socketId in room) { + if (uids.indexOf(room[socketId]) === -1) uids.push(room[socketId]); } return uids; @@ -114,10 +117,10 @@ var SocketIO = require('socket.io').listen(global.server, { var clients = io.sockets.clients(roomName); var anonCount = 0; - for(var i=0; i' + users[i].username + ''; + for (var i = 0, ii = users.length; i < ii; ++i) { + usernames[i] = '' + '' + users[i].username + ''; } var joiner = anonymousCount + userCount == 1 ? 'is' : 'are', - userList = anonymousCount > 0 ? usernames.concat(util.format('%d guest%s', anonymousCount, anonymousCount > 1 ? 's' : '')) : usernames, - lastUser = userList.length > 1 ? ' and ' + userList.pop() : ''; + userList = anonymousCount > 0 ? usernames.concat(util.format('%d guest%s', anonymousCount, anonymousCount > 1 ? 's' : '')) : usernames, + lastUser = userList.length > 1 ? ' and ' + userList.pop() : ''; return util.format('%s%s %s browsing this thread', userList.join(', '), lastUser, joiner); } if (uids.length === 0) { - io.sockets.in(roomName).emit('api:get_users_in_room', userList([], anonymousCount, 0)); + io.sockets. in (roomName).emit('api:get_users_in_room', userList([], anonymousCount, 0)); } else { user.getMultipleUserFields(uids, ['username', 'userslug'], function(err, users) { - if(!err) - io.sockets.in(roomName).emit('api:get_users_in_room', userList(users, anonymousCount, users.length)); + if (!err) + io.sockets. in (roomName).emit('api:get_users_in_room', userList(users, anonymousCount, users.length)); }); } } @@ -171,42 +174,45 @@ var SocketIO = require('socket.io').listen(global.server, { } } - if(data.leave) + if (data.leave) updateRoomBrowsingText(data.leave); updateRoomBrowsingText(data.enter); if (data.enter != 'admin') - io.sockets.in('admin').emit('api:get_all_rooms', io.sockets.manager.rooms); + io.sockets. in ('admin').emit('api:get_all_rooms', io.sockets.manager.rooms); }); // BEGIN: API calls (todo: organize) socket.on('api:updateHeader', function(data) { - if(uid) { + if (uid) { user.getUserFields(uid, data.fields, function(err, fields) { - if(!err && fields) { + if (!err && fields) { fields.uid = uid; socket.emit('api:updateHeader', fields); } }); - } - else { + } else { socket.emit('api:updateHeader', { - uid:0, + uid: 0, username: "Anonymous User", email: '', - picture: require('gravatar').url('', {s:'24'}, https=nconf.get('https')) + picture: require('gravatar').url('', { + s: '24' + }, https = nconf.get('https')) }); } }); socket.on('user.exists', function(data) { - if(data.username) { - user.exists(utils.slugify(data.username), function(exists){ - socket.emit('user.exists', {exists: exists}); + if (data.username) { + user.exists(utils.slugify(data.username), function(exists) { + socket.emit('user.exists', { + exists: exists + }); }); } }); @@ -246,9 +252,9 @@ var SocketIO = require('socket.io').listen(global.server, { socket.on('api:user.get_online_users', function(data) { var returnData = []; - for(var i=0; i'; - if(!isUserOnline(touid)) { - notifications.create(notifText, 5, 'javascript:app.openChat(''+username+'', '+uid+');', 'notification_' + uid + '_' + touid, function(nid) { + if (!isUserOnline(touid)) { + notifications.create(notifText, 5, 'javascript:app.openChat('' + username + '', ' + uid + ');', 'notification_' + uid + '_' + touid, function(nid) { notifications.push(nid, [touid], function(success) { }); @@ -558,20 +569,30 @@ var SocketIO = require('socket.io').listen(global.server, { require('./messaging').addMessage(uid, touid, msg, function(err, message) { var numSockets = 0; - if(userSockets[touid]) { + if (userSockets[touid]) { numSockets = userSockets[touid].length; - for(var x=0; x 0) { user.getUserFields(uid, ['username', 'picture'], function(err, userData) { - if(!err && userData) { + if (!err && userData) { socket.emit('api:composer.push', { tid: 0, cid: data.cid, @@ -626,7 +649,7 @@ var SocketIO = require('socket.io').listen(global.server, { posts.getPostFields(data.pid, ['content', 'uploadedImages'], function(raw) { try { raw.uploadedImages = JSON.parse(raw.uploadedImages); - } catch(e) { + } catch (e) { winston.err(e); raw.uploadedImages = []; } @@ -696,7 +719,9 @@ var SocketIO = require('socket.io').listen(global.server, { end = start + 9; topics.getTopicPosts(data.tid, start, end, uid, function(posts) { - callback({posts:posts}); + callback({ + posts: posts + }); }); }); @@ -705,7 +730,9 @@ var SocketIO = require('socket.io').listen(global.server, { end = start + 9; categories.getCategoryTopics(data.cid, start, end, uid, function(topics) { - callback({topics:topics}); + callback({ + topics: topics + }); }); }); @@ -732,10 +759,12 @@ var SocketIO = require('socket.io').listen(global.server, { end = start + 19; user.getUsers(data.set, start, end, function(err, data) { - if(err) { + if (err) { winston.err(err); } else { - callback({users:data}); + callback({ + users: data + }); } }); }); @@ -757,37 +786,37 @@ var SocketIO = require('socket.io').listen(global.server, { }); socket.on('api:admin.user.makeAdmin', function(theirid) { - if(uid && uid > 0) { + if (uid && uid > 0) { admin.user.makeAdmin(uid, theirid, socket); } }); socket.on('api:admin.user.removeAdmin', function(theirid) { - if(uid && uid > 0) { + if (uid && uid > 0) { admin.user.removeAdmin(uid, theirid, socket); } }); socket.on('api:admin.user.deleteUser', function(theirid) { - if(uid && uid > 0) { + if (uid && uid > 0) { admin.user.deleteUser(uid, theirid, socket); } }); socket.on('api:admin.user.banUser', function(theirid) { - if(uid && uid > 0) { + if (uid && uid > 0) { admin.user.banUser(uid, theirid, socket); } }); socket.on('api:admin.user.unbanUser', function(theirid) { - if(uid && uid > 0) { + if (uid && uid > 0) { admin.user.unbanUser(uid, theirid, socket); } }); socket.on('api:admin.user.search', function(username, callback) { - if(uid && uid > 0) { + if (uid && uid > 0) { user.search(username, function(data) { if (!callback) socket.emit('api:admin.user.search', data); else callback(null, data); @@ -855,4 +884,4 @@ var SocketIO = require('socket.io').listen(global.server, { }); }); -}(SocketIO)); +}(SocketIO)); \ No newline at end of file