PHP Classes

File: public/js/lib/director/test/browser/backend/backend.js

Recommend this page to a friend!
  Classes of Sergey Beskorovayniy   Silex MVC Blog   public/js/lib/director/test/browser/backend/backend.js   Download  
File: public/js/lib/director/test/browser/backend/backend.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Silex MVC Blog
MVC based blog using on the Silex micro-framework
Author: By
Last change:
Date: 7 years ago
Size: 1,643 bytes
 

Contents

Class file image Download
var http = require('http'), fs = require('fs'), path = require('path'), director = require('../../../lib/director'), index; fs.readFile(path.join(__dirname, '..', 'html5-routes-harness.html'), function (err, data) { if (err) { throw err; } index = data; }); var CONTENT_TYPES = { '.js' : 'text/javascript', '.css' : 'text/css' }; var dirname = path.dirname(module.uri); // Dummy file server function fileServer(folder, file) { var root = path.resolve(__dirname, '..'); if (folder === 'build' || folder === 'node_modules') { root = path.resolve(root, '..', '..'); } if (file === undefined) { file = folder; folder = '.'; } var filepath = path.resolve(root, folder, file); var res = this.res; (fs.exists || path.exists)(filepath, function (exists) { if (exists) { fs.readFile(filepath, function (err, data) { if (err) { res.writeHead(404); res.end(); } res.writeHead(200, {'Content-Type': CONTENT_TYPES[path.extname(filepath)]}); res.end(data); }); } else { res.writeHead(404); res.end(); } }); } var router = new director.http.Router({ '/files': { '/:folder': { '/(.+)': { get: fileServer }, get: fileServer } } }); var server = http.createServer(function (req, res) { router.dispatch(req, res, function (err) { if (err && req.url !== '/favicon.ico') { // By default just reply with the index page this.res.writeHead(200, {'Content-Type': 'text/html'}); this.res.end(index); } }); }); server.listen(8080);