Merge remote-tracking branch 'refs/remotes/origin/master' into develop

v1.18.x
Baris Usakli 8 years ago
commit 30199f921e

@ -55,11 +55,11 @@
"morgan": "^1.3.2",
"mousetrap": "^1.5.3",
"nconf": "~0.8.2",
"nodebb-plugin-composer-default": "4.4.19",
"nodebb-plugin-composer-default": "5.0.0",
"nodebb-plugin-dbsearch": "2.0.4",
"nodebb-plugin-emoji-extended": "1.1.1",
"nodebb-plugin-emoji-one": "1.2.1",
"nodebb-plugin-markdown": "7.1.2",
"nodebb-plugin-markdown": "8.0.0",
"nodebb-plugin-mentions": "2.1.5",
"nodebb-plugin-soundpack-default": "1.0.0",
"nodebb-plugin-spam-be-gone": "0.5.0",

@ -34,9 +34,6 @@ settingsController.get = function (req, res, callback) {
languages: function (next) {
languages.list(next);
},
homePageRoutes: function (next) {
getHomePageRoutes(next);
},
soundsMapping: function (next) {
meta.sounds.getUserSoundMap(userData.uid, next);
},
@ -45,7 +42,6 @@ settingsController.get = function (req, res, callback) {
function (results, next) {
userData.settings = results.settings;
userData.languages = results.languages;
userData.homePageRoutes = results.homePageRoutes;
var types = [
'notification',
@ -89,6 +85,12 @@ settingsController.get = function (req, res, callback) {
plugins.fireHook('filter:user.customSettings', { settings: results.settings, customSettings: [], uid: req.uid }, next);
},
function (data, next) {
getHomePageRoutes(userData, function (err, routes) {
userData.homePageRoutes = routes;
next(err, data);
});
},
function (data, next) {
userData.customSettings = data.customSettings;
userData.disableEmailSubscriptions = parseInt(meta.config.disableEmailSubscriptions, 10) === 1;
@ -128,24 +130,6 @@ settingsController.get = function (req, res, callback) {
{ name: 'Yeti', value: 'yeti' },
];
var isCustom = true;
userData.homePageRoutes.forEach(function (route) {
route.selected = route.route === userData.settings.homePageRoute;
if (route.selected) {
isCustom = false;
}
});
if (isCustom && userData.settings.homePageRoute === 'none') {
isCustom = false;
}
userData.homePageRoutes.push({
route: 'custom',
name: 'Custom',
selected: isCustom,
});
userData.bootswatchSkinOptions.forEach(function (skin) {
skin.selected = skin.value === userData.settings.bootswatchSkin;
});
@ -168,7 +152,7 @@ settingsController.get = function (req, res, callback) {
};
function getHomePageRoutes(callback) {
function getHomePageRoutes(userData, callback) {
async.waterfall([
function (next) {
db.getSortedSetRange('cid:0:children', 0, -1, next);
@ -206,9 +190,36 @@ function getHomePageRoutes(callback) {
route: 'popular',
name: 'Popular',
},
].concat(categoryData) }, next);
].concat(categoryData, [
{
route: 'custom',
name: 'Custom',
},
]) }, next);
},
function (data, next) {
// Set selected for each route
var customIdx;
var hasSelected = false;
data.routes = data.routes.map(function (route, idx) {
if (route.route === userData.settings.homePageRoute) {
route.selected = true;
hasSelected = true;
} else {
route.selected = false;
}
if (route.route === 'custom') {
customIdx = idx;
}
return route;
});
if (!hasSelected && customIdx && userData.settings.homePageRoute !== 'none') {
data.routes[customIdx].selected = true;
}
next(null, data.routes);
},
], callback);

@ -10,7 +10,7 @@ var Meta = require('../meta');
var Tags = module.exports;
Tags.parse = function (req, meta, link, callback) {
Tags.parse = function (req, data, meta, link, callback) {
async.parallel({
tags: function (next) {
var defaultTags = [{
@ -50,7 +50,7 @@ Tags.parse = function (req, meta, link, callback) {
});
}
plugins.fireHook('filter:meta.getMetaTags', defaultTags, next);
plugins.fireHook('filter:meta.getMetaTags', { req: req, data: data, defaultTags: defaultTags }, next);
},
links: function (next) {
var defaultLinks = [{
@ -101,14 +101,14 @@ Tags.parse = function (req, meta, link, callback) {
href: nconf.get('relative_path') + '/assets/uploads/system/touchicon-192.png',
});
}
plugins.fireHook('filter:meta.getLinkTags', defaultLinks, next);
plugins.fireHook('filter:meta.getLinkTags', { req: req, data: data, defaultLinks: defaultLinks }, next);
},
}, function (err, results) {
if (err) {
return callback(err);
}
meta = results.tags.concat(meta || []).map(function (tag) {
meta = results.tags.defaultTags.concat(meta || []).map(function (tag) {
if (!tag || typeof tag.content !== 'string') {
winston.warn('Invalid meta tag. ', tag);
return tag;
@ -139,7 +139,7 @@ Tags.parse = function (req, meta, link, callback) {
addIfNotExists(meta, 'property', 'og:image:height', 200);
}
link = results.links.concat(link || []);
link = results.links.defaultLinks.concat(link || []);
callback(null, {
meta: meta,

@ -105,7 +105,7 @@ module.exports = function (middleware) {
});
},
navigation: async.apply(navigation.get),
tags: async.apply(meta.tags.parse, req, res.locals.metaTags, res.locals.linkTags),
tags: async.apply(meta.tags.parse, req, data, res.locals.metaTags, res.locals.linkTags),
banned: async.apply(user.isBanned, req.uid),
banReason: async.apply(user.getBannedReason, req.uid),
}, next);

Loading…
Cancel
Save