app.js 1.36 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
var express = require('express');
var path = require('path');
var logger = require('morgan');
var bodyParser = require('body-parser');

var storage = require('./routes/storage');
var services = require('./routes/services');

var app = express();

app.use(logger('dev'));
app.use(bodyParser.json());

andreagerino's avatar
andreagerino committed
14 15 16
//enable CORS
app.use(function(req, res, next) {

andreagerino's avatar
andreagerino committed
17 18 19
  res.header("Access-Control-Allow-Origin", "*");
  res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization");
  res.header("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS");
andreagerino's avatar
andreagerino committed
20

andreagerino's avatar
andreagerino committed
21
  if(req.method=="OPTIONS"){
andreagerino's avatar
andreagerino committed
22 23 24 25 26 27 28 29 30 31 32

    res.sendStatus(204);

  }else{

    next();

  }

});

andreagerino's avatar
andreagerino committed
33 34
app.use('/icarus/str', storage);
app.use('/icarus/svc', services);
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

// catch 404 and forward to error handler
app.use(function(req, res, next) {
  var err = new Error('Not Found');
  err.status = 404;
  next(err);
});

// error handlers

// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
  app.use(function(err, req, res, next) {
    res.status(err.status || 500);
    res.send({
      message: err.message,
      error: err
    });
  });
}

// production error handler
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
  res.status(err.status || 500);
  res.send({
    message: err.message,
    error: {}
  });
});

module.exports = app;