started moving out api functionality out of the route file into controllers/api.js
parent
138b12e815
commit
7bef58deb1
@ -0,0 +1,61 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
var pkg = require('./../../package.json'),
|
||||||
|
meta = require('./../meta'),
|
||||||
|
user = require('./../user'),
|
||||||
|
plugins = require('./../plugins');
|
||||||
|
|
||||||
|
var apiController = {};
|
||||||
|
|
||||||
|
|
||||||
|
apiController.getConfig = function(req, res, next, callback) {
|
||||||
|
var config = require('../../public/config.json');
|
||||||
|
|
||||||
|
config.version = pkg.version;
|
||||||
|
config.postDelay = meta.config.postDelay;
|
||||||
|
config.minimumTitleLength = meta.config.minimumTitleLength;
|
||||||
|
config.maximumTitleLength = meta.config.maximumTitleLength;
|
||||||
|
config.minimumPostLength = meta.config.minimumPostLength;
|
||||||
|
config.hasImageUploadPlugin = plugins.hasListeners('filter:uploadImage');
|
||||||
|
config.maximumProfileImageSize = meta.config.maximumProfileImageSize;
|
||||||
|
config.minimumUsernameLength = meta.config.minimumUsernameLength;
|
||||||
|
config.maximumUsernameLength = meta.config.maximumUsernameLength;
|
||||||
|
config.minimumPasswordLength = meta.config.minimumPasswordLength;
|
||||||
|
config.maximumSignatureLength = meta.config.maximumSignatureLength;
|
||||||
|
config.useOutgoingLinksPage = parseInt(meta.config.useOutgoingLinksPage, 10) === 1;
|
||||||
|
config.allowGuestPosting = parseInt(meta.config.allowGuestPosting, 10) === 1;
|
||||||
|
config.allowFileUploads = parseInt(meta.config.allowFileUploads, 10) === 1;
|
||||||
|
config.allowTopicsThumbnail = parseInt(meta.config.allowTopicsThumbnail, 10) === 1;
|
||||||
|
config.usePagination = parseInt(meta.config.usePagination, 10) === 1;
|
||||||
|
config.disableSocialButtons = parseInt(meta.config.disableSocialButtons, 10) === 1;
|
||||||
|
config.topicsPerPage = meta.config.topicsPerPage || 20;
|
||||||
|
config.postsPerPage = meta.config.postsPerPage || 20;
|
||||||
|
config.maximumFileSize = meta.config.maximumFileSize;
|
||||||
|
config.defaultLang = meta.config.defaultLang || 'en_GB';
|
||||||
|
config.environment = process.env.NODE_ENV;
|
||||||
|
|
||||||
|
if (!req.user) {
|
||||||
|
return res.json(200, config);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(req.user) {
|
||||||
|
user.getSettings(req.user.uid, function(err, settings) {
|
||||||
|
if(err) {
|
||||||
|
return next(err);
|
||||||
|
}
|
||||||
|
|
||||||
|
config.usePagination = settings.usePagination;
|
||||||
|
config.topicsPerPage = settings.topicsPerPage;
|
||||||
|
config.postsPerPage = settings.postsPerPage;
|
||||||
|
|
||||||
|
if (callback) {
|
||||||
|
callback(err, config);
|
||||||
|
} else {
|
||||||
|
res.json(200, config);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
module.exports = apiController;
|
Loading…
Reference in New Issue