mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-10-31 15:45:09 -04:00
72 lines
2.0 KiB
JavaScript
72 lines
2.0 KiB
JavaScript
var fs = require('fs');
|
|
var https = require('https');
|
|
var express = require('express');
|
|
var helmet = require('helmet');
|
|
var Moonboots = require('moonboots');
|
|
var config = require('getconfig');
|
|
var templatizer = require('templatizer');
|
|
|
|
|
|
var app = express();
|
|
app.use(express.compress());
|
|
app.use(express.static(__dirname + '/public'));
|
|
if (!config.isDev) {
|
|
app.use(helmet.xframe());
|
|
}
|
|
app.use(helmet.iexss());
|
|
app.use(helmet.contentTypeOptions());
|
|
|
|
|
|
var clientApp = new Moonboots({
|
|
main: __dirname + '/clientapp/app.js',
|
|
templateFile: __dirname + '/clientapp/template.html',
|
|
developmentMode: config.isDev,
|
|
libraries: [
|
|
__dirname + '/clientapp/libraries/zepto.js',
|
|
__dirname + '/clientapp/libraries/ui.js',
|
|
__dirname + '/clientapp/libraries/resampler.js',
|
|
__dirname + '/clientapp/libraries/IndexedDBShim.min.js'
|
|
],
|
|
stylesheets: [
|
|
__dirname + '/public/css/otalk.css'
|
|
],
|
|
server: app,
|
|
beforeBuild: function () {
|
|
if (config.isDev) {
|
|
var clientFolder = __dirname + '/clientapp';
|
|
templatizer(clientFolder + '/templates', clientFolder + '/templates.js');
|
|
}
|
|
}
|
|
});
|
|
|
|
app.set('view engine', 'jade');
|
|
|
|
app.get('/login', function (req, res) {
|
|
res.render('login');
|
|
});
|
|
app.get('/logout', function (req, res) {
|
|
res.render('logout');
|
|
});
|
|
app.get('/oauth/login', function (req, res) {
|
|
res.redirect('https://apps.andyet.com/oauth/authorize?client_id=' + config.andyetAuth.id + '&response_type=token');
|
|
});
|
|
app.get('/oauth/callback', function (req, res) {
|
|
res.render('oauthLogin');
|
|
});
|
|
|
|
app.get('/manifest.webapp', function (req, res) {
|
|
res.set('Content-Type', 'application/x-web-app-manifest+json');
|
|
res.sent(fs.readFileSync('public/manifest.webapp'));
|
|
});
|
|
|
|
// serves app on every other url
|
|
app.get('*', clientApp.html());
|
|
|
|
|
|
//https.createServer({
|
|
// key: fs.readFileSync(config.http.key),
|
|
// cert: fs.readFileSync(config.http.cert)
|
|
//}, app).listen(config.http.port);
|
|
app.listen(config.http.port);
|
|
console.log('demo.stanza.io running at: ' + config.http.baseUrl);
|