Created
July 1, 2015 09:08
-
-
Save robhrt7/d1b7a0f2f73ae434e90a to your computer and use it in GitHub Desktop.
SourceJS route example: bower_components from root to local
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var url = require('url'); | |
var path = require('path'); | |
var fs = require('fs'); | |
var specUtils = require(path.join(global.pathToApp, 'core/lib/specUtils')); | |
var prevRef = 'http://google.com'; | |
// Search requested resource in ref path first | |
var searchInRefPath = function(req, res, next){ | |
var originalUrl = req.originalUrl; | |
var ref = req.headers && req.headers.referer ? req.headers.referer : prevRef; | |
// caching last ref for .map requests without ref | |
prevRef = ref; | |
var parsedRefUrl = url.parse(ref); | |
var refPath = parsedRefUrl.pathname; | |
var parsedSpecPath = specUtils.parseSpecUrlPath(parsedRefUrl.pathname); | |
var specInfo = specUtils.getSpecInfo(parsedSpecPath.pathToSpec); | |
if (specInfo && specInfo.custom && specInfo.custom.bowerRoute) { | |
originalUrl = path.join(specInfo.custom.bowerRoute, originalUrl) | |
} | |
var filePathToCheck = path.join(global.app.get('user'), refPath, originalUrl); | |
fs.exists(filePathToCheck, function (exists) { | |
if (exists) { | |
res.sendFile(filePathToCheck); | |
} else { | |
next(); | |
} | |
}); | |
}; | |
global.app.use('/bower_components', searchInRefPath); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment