-
Notifications
You must be signed in to change notification settings - Fork 1
/
application.js
54 lines (44 loc) · 1.5 KB
/
application.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
var express=require("express");
var app=express();
var mbaasApi = require('fh-mbaas-api');
var mbaasExpress = mbaasApi.mbaasExpress();
var cors = require('cors');
// list the endpoints which you want to make securable here
var securableEndpoints;
securableEndpoints = [];
var app = express();
var server=require("http").Server(app);
var rhmapAuth=require("rhmap-auth");
require("hssh")(server,{
banner:"Welcome to RHMAP shell.",
auth:{
info:"Please provid RHMAP username and password.",
onAuth:function(obj,cb){
rhmapAuth(obj.username,obj.password,function(err,isValid){
if (isValid===true){
cb(true);
}else{
cb(false);
}
});
}
},
log:"debug"
});
// Enable CORS for all requests
app.use(cors());
// Note: the order which we add middleware to Express here is important!
app.use('/sys', mbaasExpress.sys(securableEndpoints));
app.use('/mbaas', mbaasExpress.mbaas);
// allow serving of static files from the public directory
// app.use(express.static(__dirname + '/public'));
// Note: important that this is added just before your own Routes
app.use(mbaasExpress.fhmiddleware());
// app.use('/v1', require('./routes/v1.js')());
// Important that this is last!
app.use(mbaasExpress.errorHandler());
var port = process.env.FH_PORT || process.env.OPENSHIFT_NODEJS_PORT || 8010;
var host = process.env.OPENSHIFT_NODEJS_IP || '0.0.0.0';
server.listen(port, host, function() {
console.log("App started at: " + new Date() + " on port: " + port);
});