Mercurial > psgxs
view modules.js @ 45:8b20f2efb939
Add an option to choose the host and port of the connection.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 08 Mar 2011 00:25:17 +0100 |
parents | 023f767662d3 |
children | 0d3f18bb1d36 |
line wrap: on
line source
/* * Copyright (C) 2010 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> * * This file is part of PSĜS, a PubSub server written in JavaScript. * * PSĜS is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License. * * PSĜS is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with PSĜS. If not, see <http://www.gnu.org/licenses/>. */ 'use strict'; var modules = exports; var fs = require('fs'); var dir = require('./configuration').pluginsDir; var files = fs.readdirSync(dir); var regex = /^mod_.*\.js/; var Script = process.binding('evals').Script; var sandbox = { process: process, config: require('./configuration'), xmpp: require('xmpp'), errors: require('./errors'), forms: require('./forms'), makeError: require('./errors').makeError, notifs: require('./notifs'), NS: require('./namespaces'), require: require, storage: require('./storage'), toBareJID: require('./fdsq').toBareJID, exports: {} }; for (var i in files) { var file = files[i]; if (!regex.test(file)) continue; fs.readFile(dir + '/' + file, function(err, data) { if (err) { console.log('ERROR: loading module “'+file+'”.'); // FIXME: file is always the last file of the list… return; } Script.runInNewContext(data, sandbox, dir + '/' + file); // FIXME: the same. var module = sandbox.exports; sandbox.exports = {}; for (var j in module) { if (typeof modules[j] != 'undefined') console.log('WARNING: module '+j+' already loaded.'); modules[j] = module[j]; } }); }