| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  | 'use strict'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // IMPORTANT !!!
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // None of this is authenticated or encrypted
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports.create = function (app, xconfx, models) { | 
					
						
							|  |  |  |   var PromiseA = require('bluebird'); | 
					
						
							|  |  |  |   var path = require('path'); | 
					
						
							|  |  |  |   var fs = PromiseA.promisifyAll(require('fs')); | 
					
						
							|  |  |  |   var dns = PromiseA.promisifyAll(require('dns')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |   function isInitialized () { | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |     // TODO read from file only, not db
 | 
					
						
							|  |  |  |     return models.ComDaplieWalnutConfig.get('config').then(function (conf) { | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |       if (!conf || !conf.primaryDomain/* || !conf.primaryEmail*/) { | 
					
						
							| 
									
										
										
										
											2017-05-19 05:26:26 +00:00
										 |  |  |         console.log('[DEBUG] uninitialized or incomplete config:', JSON.stringify(conf)); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |         return false; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       xconfx.primaryDomain = xconfx.primaryDomain || conf.primaryDomain; | 
					
						
							| 
									
										
										
										
											2017-06-12 16:06:18 -06:00
										 |  |  |       // backwards compat for something or other
 | 
					
						
							|  |  |  |       return true; | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   function initialize() { | 
					
						
							|  |  |  |     var express = require('express'); | 
					
						
							|  |  |  |     var getIpAddresses = require('./ip-checker').getExternalAddresses; | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |     var resolveInit; | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function getConfig(req, res) { | 
					
						
							|  |  |  |       getIpAddresses().then(function (inets) { | 
					
						
							|  |  |  |         var results = { | 
					
						
							|  |  |  |           hostname: require('os').hostname() | 
					
						
							|  |  |  |         , inets: inets.addresses.map(function (a) { | 
					
						
							|  |  |  |             a.time = undefined; | 
					
						
							|  |  |  |             return a; | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |         //res.send({ inets: require('os').networkInterfaces() });
 | 
					
						
							|  |  |  |         res.send(results); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function verifyIps(inets, hostname) { | 
					
						
							|  |  |  |       var map = {}; | 
					
						
							|  |  |  |       var arr = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       inets.forEach(function (addr) { | 
					
						
							|  |  |  |         if (!map[addr.family]) { | 
					
						
							|  |  |  |           map[addr.family] = true; | 
					
						
							|  |  |  |           if (4 === addr.family) { | 
					
						
							|  |  |  |             arr.push(dns.resolve4Async(hostname).then(function (arr) { | 
					
						
							|  |  |  |               return arr; | 
					
						
							|  |  |  |             }, function (/*err*/) { | 
					
						
							|  |  |  |               return []; | 
					
						
							|  |  |  |             })); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |           if (6 === addr.family) { | 
					
						
							|  |  |  |             arr.push(dns.resolve6Async(hostname).then(function (arr) { | 
					
						
							|  |  |  |               return arr; | 
					
						
							|  |  |  |             }, function (/*err*/) { | 
					
						
							|  |  |  |               return []; | 
					
						
							|  |  |  |             })); | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return PromiseA.all(arr).then(function (fams) { | 
					
						
							|  |  |  |         console.log('DEBUG hostname', hostname); | 
					
						
							|  |  |  |         var ips = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fams.forEach(function (addrs) { | 
					
						
							|  |  |  |           console.log('DEBUG ipv46'); | 
					
						
							|  |  |  |           console.log(addrs); | 
					
						
							|  |  |  |           addrs.forEach(function (addr) { | 
					
						
							|  |  |  |             inets.forEach(function (a) { | 
					
						
							|  |  |  |               if (a.address === addr) { | 
					
						
							|  |  |  |                 a.time = undefined; | 
					
						
							|  |  |  |                 ips.push(a); | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  |           console.log(''); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return ips; | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function setConfig(req, res) { | 
					
						
							|  |  |  |       return PromiseA.resolve().then(function () { | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         // TODO expect authenticated oauth3 user
 | 
					
						
							|  |  |  |         var config = req.body; | 
					
						
							|  |  |  |         var safeConfig = {}; | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         if ('string' !== typeof config.domain) { | 
					
						
							|  |  |  |           return PromiseA.reject(new Error("'domain' should be a string specifying a valid domain name")); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         config.domain = (config.domain||'').replace(/^www\./, ''); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         // TODO url-testing lib
 | 
					
						
							|  |  |  |         if (!/\w+\.\w+/.test(config.domain)) { | 
					
						
							|  |  |  |           return PromiseA.reject(new Error("'domain' should be a string specifying a valid domain name")); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         var configpath = path.join(__dirname, '..', '..', 'config', config.domain + '.json'); | 
					
						
							|  |  |  |         safeConfig = { primaryDomain: config.domain }; | 
					
						
							| 
									
										
										
										
											2017-05-19 05:26:26 +00:00
										 |  |  |         xconfx.primaryDomain = safeConfig.primaryDomain; | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         return fs.writeFileAsync(configpath, JSON.stringify(safeConfig, null, '  '), 'utf8').then(function () { | 
					
						
							|  |  |  |           // TODO nix SQL
 | 
					
						
							|  |  |  |           return models.ComDaplieWalnutConfig.upsert('config', safeConfig); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }).then(function () { | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         if (resolveInit) { | 
					
						
							|  |  |  |           resolveInit(); | 
					
						
							|  |  |  |           resolveInit = null; | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         res.send({ success: true }); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |       }, function (err) { | 
					
						
							|  |  |  |         console.error('Error lib/bootstrap.js'); | 
					
						
							|  |  |  |         console.error(err.stack || err); | 
					
						
							|  |  |  |         res.send({ error: { message: err.message || err.toString() } }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     var CORS = require('connect-cors'); | 
					
						
							|  |  |  |     var cors = CORS({ credentials: true, headers: [ | 
					
						
							|  |  |  |       'X-Requested-With' | 
					
						
							|  |  |  |     , 'X-HTTP-Method-Override' | 
					
						
							|  |  |  |     , 'Content-Type' | 
					
						
							|  |  |  |     , 'Accept' | 
					
						
							|  |  |  |     , 'Authorization' | 
					
						
							|  |  |  |     ], methods: [ "GET", "POST", "PATCH", "PUT", "DELETE" ] }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     app.use('/', function (req, res, next) { | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |       console.log('[lib/bootstrap.js] req.url', req.url); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |       return isInitialized().then(function (initialized) { | 
					
						
							|  |  |  |         if (!initialized) { | 
					
						
							|  |  |  |           next(); | 
					
						
							|  |  |  |           return; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 23:37:28 +00:00
										 |  |  |         // init is always considered to be
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         resolveInit(true); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         // TODO feed this request back through the route stack from the top to avoid forced refresh?
 | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |         res.statusCode = 302; | 
					
						
							|  |  |  |         res.setHeader('Location', req.url); | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |         res.end("<!-- App bootstraping complete, but you got here somehow anyway. Let's redirect you so you get to the main app. -->"); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-05-19 23:37:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |     // NOTE Allows CORS access to API with ?access_token=
 | 
					
						
							|  |  |  |     // TODO Access-Control-Max-Age: 600
 | 
					
						
							|  |  |  |     // TODO How can we help apps handle this? token?
 | 
					
						
							|  |  |  |     // TODO allow apps to configure trustedDomains, auth, etc
 | 
					
						
							|  |  |  |     app.use('/api', cors); | 
					
						
							| 
									
										
										
										
											2017-07-28 17:24:19 -06:00
										 |  |  |     app.get('/api/walnut@daplie.com/init', getConfig); | 
					
						
							|  |  |  |     app.get('/api/com.daplie.walnut.init', getConfig); // deprecated
 | 
					
						
							|  |  |  |     app.post('/api/walnut@daplie.com/init', setConfig); | 
					
						
							|  |  |  |     app.post('/api/com.daplie.walnut.init', setConfig); // deprecated
 | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // TODO use package loader
 | 
					
						
							| 
									
										
										
										
											2017-07-28 17:24:19 -06:00
										 |  |  |     //app.use('/', express.static(path.join(__dirname, '..', '..', 'packages', 'pages', 'walnut@daplie.com', 'init')));
 | 
					
						
							|  |  |  |     app.use('/', express.static(path.join(__dirname, 'walnut@daplie.com', 'init'))); | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |     app.use('/', function (req, res, next) { | 
					
						
							|  |  |  |       res.statusCode = 404; | 
					
						
							| 
									
										
										
										
											2017-07-28 17:24:19 -06:00
										 |  |  |       res.end('Walnut Bootstrap Not Found. Mising walnut@daplie.com/init'); | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  |     return new PromiseA(function (_resolve) { | 
					
						
							| 
									
										
										
										
											2017-05-19 01:00:17 +00:00
										 |  |  |       resolveInit = _resolve; | 
					
						
							| 
									
										
										
										
											2016-04-09 19:14:00 -04:00
										 |  |  |     }); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return isInitialized().then(function (initialized) { | 
					
						
							|  |  |  |     if (initialized) { | 
					
						
							|  |  |  |       return true; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return initialize(); | 
					
						
							|  |  |  |   }, function (err) { | 
					
						
							|  |  |  |     console.error('FATAL ERROR:'); | 
					
						
							|  |  |  |     console.error(err.stack || err); | 
					
						
							|  |  |  |     app.use('/', function (req, res) { | 
					
						
							|  |  |  |       res.send({ | 
					
						
							|  |  |  |         error: { | 
					
						
							|  |  |  |           message: "Unrecoverable Error Requires manual server update: " + (err.message || err.toString()) | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }; |