Sophie

Sophie

distrib > Mageia > 7 > x86_64 > by-pkgid > 5115223ba4624da18b45ffc97e65d34f > files > 11

nodejs-paperboy-0.0.5-3.mga7.noarch.rpm

var
  path = require('path'),
  http = require('http'),
  paperboy = require('../lib/paperboy'),

  PORT = 8003,
  WEBROOT = path.join(path.dirname(__filename), 'webroot');

http.createServer(function(req, res) {
  var ip = req.connection.remoteAddress;
  paperboy
    .deliver(WEBROOT, req, res)
    .addHeader('Expires', 300)
    .addHeader('X-PaperRoute', 'Node')
    .before(function() {
      console.log('Received Request');
    })
    .after(function(statCode) {
      log(statCode, req.url, ip);
    })
    // .error(function(statCode, msg) {
    //   res.writeHead(statCode, {'Content-Type': 'text/plain'});
    //   res.end("Error " + statCode);
    //   log(statCode, req.url, ip, msg);
    // })
    // .otherwise(function(err) {
    //   res.writeHead(404, {'Content-Type': 'text/plain'});
    //   res.end("Error 404: File not found");
    //   log(404, req.url, ip, err);
    // });
}).listen(PORT);

function log(statCode, url, ip, err) {
  var logStr = statCode + ' - ' + url + ' - ' + ip;
  if (err)
    logStr += ' - ' + err;
  console.log(logStr);
}