mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-31 19:15:58 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			127 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| var meta = require('./../meta'),
 | |
| 	user = require('./../user'),
 | |
| 	plugins = require('./../plugins'),
 | |
| 	widgets = require('../widgets'),
 | |
| 
 | |
| 	validator = require('validator'),
 | |
| 	nconf = require('nconf');
 | |
| 
 | |
| var apiController = {};
 | |
| 
 | |
| apiController.getConfig = function(req, res, next) {
 | |
| 	function filterConfig() {
 | |
| 		plugins.fireHook('filter:config.get', config, function(err, config) {
 | |
| 			if (res.locals.isAPI) {
 | |
| 				res.status(200).json(config);
 | |
| 			} else {
 | |
| 				next(err, config);
 | |
| 			}
 | |
| 		});
 | |
| 	}
 | |
| 
 | |
| 	var config = {};
 | |
| 	config.relative_path = nconf.get('relative_path');
 | |
| 	config.socketioTransports = nconf.get('socket.io:transports') || ['polling', 'websocket'];
 | |
| 	config.websocketAddress = nconf.get('socket.io:address') || '';
 | |
| 	config.version = nconf.get('version');
 | |
| 	config.siteTitle = validator.escape(meta.config.title || meta.config.browserTitle || 'NodeBB');
 | |
| 	config.showSiteTitle = parseInt(meta.config.showSiteTitle, 10) === 1;
 | |
| 	config.postDelay = meta.config.postDelay;
 | |
| 	config.minimumTitleLength = meta.config.minimumTitleLength;
 | |
| 	config.maximumTitleLength = meta.config.maximumTitleLength;
 | |
| 	config.minimumPostLength = meta.config.minimumPostLength;
 | |
| 	config.maximumPostLength = meta.config.maximumPostLength;
 | |
| 	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.maximumAboutMeLength = meta.config.maximumAboutMeLength;
 | |
| 	config.useOutgoingLinksPage = parseInt(meta.config.useOutgoingLinksPage, 10) === 1;
 | |
| 	config.allowGuestSearching = parseInt(meta.config.allowGuestSearching, 10) === 1;
 | |
| 	config.allowGuestHandles = parseInt(meta.config.allowGuestHandles, 10) === 1;
 | |
| 	config.allowFileUploads = parseInt(meta.config.allowFileUploads, 10) === 1;
 | |
| 	config.allowProfileImageUploads = parseInt(meta.config.allowProfileImageUploads) === 1;
 | |
| 	config.allowTopicsThumbnail = parseInt(meta.config.allowTopicsThumbnail, 10) === 1;
 | |
| 	config.allowAccountDelete = parseInt(meta.config.allowAccountDelete, 10) === 1;
 | |
| 	config.privateUserInfo = parseInt(meta.config.privateUserInfo, 10) === 1;
 | |
| 	config.privateTagListing = parseInt(meta.config.privateTagListing, 10) === 1;
 | |
| 	config.usePagination = parseInt(meta.config.usePagination, 10) === 1;
 | |
| 	config.disableSocialButtons = parseInt(meta.config.disableSocialButtons, 10) === 1;
 | |
| 	config.disableChat = parseInt(meta.config.disableChat, 10) === 1;
 | |
| 	config.maxReconnectionAttempts = meta.config.maxReconnectionAttempts || 5;
 | |
| 	config.reconnectionDelay = meta.config.reconnectionDelay || 1500;
 | |
| 	config.tagsPerTopic = meta.config.tagsPerTopic || 5;
 | |
| 	config.minimumTagLength = meta.config.minimumTagLength || 3;
 | |
| 	config.maximumTagLength = meta.config.maximumTagLength || 15;
 | |
| 	config.topicsPerPage = meta.config.topicsPerPage || 20;
 | |
| 	config.postsPerPage = meta.config.postsPerPage || 20;
 | |
| 	config.maximumFileSize = meta.config.maximumFileSize;
 | |
| 	config['theme:id'] = meta.config['theme:id'];
 | |
| 	config.defaultLang = meta.config.defaultLang || 'en_GB';
 | |
| 	config.userLang = config.defaultLang;
 | |
| 	config.environment = process.env.NODE_ENV;
 | |
| 	config.loggedIn = !!req.user;
 | |
| 	config['cache-buster'] = meta.config['cache-buster'] || '';
 | |
| 	config['script-buster'] = meta.js.hash;
 | |
| 	config['css-buster'] = meta.css.hash;
 | |
| 	config.requireEmailConfirmation = parseInt(meta.config.requireEmailConfirmation, 10) === 1;
 | |
| 	config.topicPostSort = meta.config.topicPostSort || 'oldest_to_newest';
 | |
| 	config.categoryTopicSort = meta.config.categoryTopicSort || 'newest_to_oldest';
 | |
| 	config.csrf_token = req.csrfToken();
 | |
| 	config.searchEnabled = plugins.hasListeners('filter:search.query');
 | |
| 
 | |
| 	if (!req.user) {
 | |
| 		return filterConfig();
 | |
| 	}
 | |
| 
 | |
| 	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;
 | |
| 		config.notificationSounds = settings.notificationSounds;
 | |
| 		config.userLang = settings.userLang || config.defaultLang;
 | |
| 		config.openOutgoingLinksInNewTab = settings.openOutgoingLinksInNewTab;
 | |
| 		config.topicPostSort = settings.topicPostSort || config.topicPostSort;
 | |
| 		config.categoryTopicSort = settings.categoryTopicSort || config.categoryTopicSort;
 | |
| 		config.topicSearchEnabled = settings.topicSearchEnabled || false;
 | |
| 
 | |
| 		filterConfig();
 | |
| 	});
 | |
| };
 | |
| 
 | |
| 
 | |
| apiController.renderWidgets = function(req, res, next) {
 | |
| 	var async = require('async'),
 | |
| 		areas = {
 | |
| 			template: req.query.template,
 | |
| 			locations: req.query.locations,
 | |
| 			url: req.query.url
 | |
| 		},
 | |
| 		renderedWidgets = [];
 | |
| 
 | |
| 	if (!areas.template || !areas.locations) {
 | |
| 		return res.status(200).json({});
 | |
| 	}
 | |
| 
 | |
| 	widgets.render(req.uid, {
 | |
| 		template: areas.template,
 | |
| 		url: areas.url,
 | |
| 		locations: areas.locations
 | |
| 	}, function(err, widgets) {
 | |
| 		if (err) {
 | |
| 			return next(err);
 | |
| 		}
 | |
| 		res.status(200).json(widgets);
 | |
| 	});
 | |
| };
 | |
| 
 | |
| module.exports = apiController;
 |