forked from formio/formio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.js
145 lines (124 loc) · 3.87 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
'use strict';
/**
* This is the Form.io application server.
*/
const express = require('express');
const nunjucks = require('nunjucks');
const fs = require('fs-extra');
const path = require('path');
const util = require('./src/util/util');
require('colors');
const Q = require('q');
const cors = require('cors');
const test = process.env.TEST_SUITE;
const noInstall = process.env.NO_INSTALL;
module.exports = function(options) {
options = options || {};
const q = Q.defer();
util.log('');
const rl = require('readline').createInterface({
input: require('fs').createReadStream('logo.txt')
});
rl.on('line', function(line) {
util.log(
line.substring(0,4) +
line.substring(4, 30).cyan.bold +
line.substring(30, 33) +
line.substring(33, 42).green.bold +
line.substring(42)
);
});
rl.on('close', function() {
// Print the welcome screen.
util.log('');
util.log(fs.readFileSync('welcome.txt').toString().green);
});
// Use the express application.
const app = options.app || express();
// Use the given config.
const config = options.config || require('config');
// Configure nunjucks.
nunjucks.configure('client', {
autoescape: true,
express: app
});
//cors configuration
if (config.allowedOrigins) {
app.use(cors({
origin: function(origin, callback) {
if (!origin) {
return callback(null, true);
}
if (config.allowedOrigins.indexOf(origin) === -1 && config.allowedOrigins.indexOf("*") === -1) {
var msg = 'The CORS policy for this site does not allow access from the specified Origin.';
return callback(new Error(msg), false);
}
return callback(null, true);
}
}));
}
// Mount the client application.
app.use('/', express.static(path.join(__dirname, '/client/dist')));
// Load the form.io server.
const server = options.server || require('./index')(config);
const hooks = options.hooks || {};
app.use(server.formio.middleware.restrictRequestTypes);
server.init(hooks).then(function(formio) {
// Called when we are ready to start the server.
const start = function() {
// Start the application.
if (fs.existsSync('app')) {
const application = express();
application.use('/', express.static(path.join(__dirname, '/app/dist')));
config.appPort = config.appPort || 8080;
application.listen(config.appPort);
const appHost = `http://localhost:${config.appPort}`;
util.log(` > Serving application at ${appHost.green}`);
}
// Mount the Form.io API platform.
app.use(options.mount || '/', server);
// Allow tests access server internals.
app.formio = formio;
// Listen on the configured port.
return q.resolve({
server: app,
config: config
});
};
// Which items should be installed.
const install = {
download: false,
extract: false,
import: false,
user: false
};
// Check for the client folder.
if (!fs.existsSync('client') && !test && !noInstall) {
install.download = true;
install.extract = true;
}
// See if they have any forms available.
formio.db.collection('forms').estimatedDocumentCount(function(err, numForms) {
// If there are forms, then go ahead and start the server.
if ((!err && numForms > 0) || test || noInstall) {
if (!install.download && !install.extract) {
return start();
}
}
// Import the project and create the user.
install.import = true;
install.user = true;
// Install.
require('./install')(formio, install, function(err) {
if (err) {
if (err !== 'Installation canceled.') {
return util.log(err.message);
}
}
// Start the server.
start();
});
});
});
return q.promise;
};