-
Notifications
You must be signed in to change notification settings - Fork 3
/
server.js
79 lines (61 loc) · 2.63 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
/////////////////////////////////////////////////////////////////////////////////
// Copyright (c) Autodesk, Inc. All rights reserved
// Written by Philippe Leefsma 2015 - ADN/Developer Technical Services
//
// Permission to use, copy, modify, and distribute this software in
// object code form for any purpose and without fee is hereby granted,
// provided that the above copyright notice appears in all copies and
// that both that copyright notice and the limited warranty and
// restricted rights notice below appear in all supporting
// documentation.
//
// AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.
// AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF
// MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.
// DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE
// UNINTERRUPTED OR ERROR FREE.
/////////////////////////////////////////////////////////////////////////////////
var lmvConfig = require('./config/config-view-and-data');
var dbConnector = require('./routes/dbConnector');
var config = require('./config/config-server');
var cookieParser = require('cookie-parser');
var session = require('express-session');
var bodyParser = require('body-parser');
var favicon = require('serve-favicon');
var Lmv = require('view-and-data');
var express = require('express');
var app = express();
app.use(config.host, express.static(__dirname + '/www'));
app.use(favicon(__dirname + '/www/img/favicon.ico'));
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
app.use(cookieParser());
app.use(session(
{
//Randomly generated GUID
secret: '352EB973-A522-4362-87C0-4A87A7A8D33D',
saveUninitialized: true,
resave: false
}));
var lmv = new Lmv(lmvConfig);
function onError(error) {
console.log(error);
}
//async init of our token API
lmv.initialise().then(
function() {
app.use(config.host + '/api/token', require('./routes/api/token')(lmv));
var connector = new dbConnector(config);
connector.initializeDb(
function(db){
app.use(config.host + '/api/states', require('./routes/api/states')(db));
app.use(config.host + '/api/models', require('./routes/api/models')(db));
app.use(config.host + '/api/extensions', require('./routes/api/extensions')(db));
app.use(config.host + '/api/thumbnails', require('./routes/api/thumbnails')(db));
}, onError);
}, onError);
app.set('port', process.env.PORT || 3000);
var server = app.listen(app.get('port'), function() {
console.log('Server listening on port ' +
server.address().port);
});