-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
61 lines (53 loc) · 2.33 KB
/
server.js
File metadata and controls
61 lines (53 loc) · 2.33 KB
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
/////////////////////////////////////////////////////////////////////////////////
// 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 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 passport = require('passport');
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
}));
//Middlewares
app.use(passport.initialize());
app.use(passport.session());
//API Routes
app.use(config.host + '/embed', require('./routes/embed'));
app.use(config.host + '/api/auth', require('./routes/api/auth'));
app.use(config.host + '/api/token', require('./routes/api/token'));
app.use(config.host + '/api/states', require('./routes/api/states'));
app.use(config.host + '/api/models', require('./routes/api/models'));
app.use(config.host + '/api/extensions', require('./routes/api/extensions'));
app.use(config.host + '/api/thumbnails', require('./routes/api/thumbnails'));
app.set('port', process.env.PORT || 3000);
var server = app.listen(app.get('port'), function() {
console.log('Server listening on port ' +
server.address().port);
});