Skip to content

Instantly share code, notes, and snippets.

@ndugger
Last active August 29, 2015 14:17
Show Gist options
  • Save ndugger/037e51f07a0d6bb9ab8f to your computer and use it in GitHub Desktop.
Save ndugger/037e51f07a0d6bb9ab8f to your computer and use it in GitHub Desktop.
class Router {
static read(routes, path) {
let pattern = new RegExp("\{(.*)\}"),
path = path.split('/');
for (let route in routes) {
let variables = {};
if (route.match(pattern)) { // Route contains variables
route = route.split('/');
if (route.length === path.length) { // Route is compatable with path
for (let i = 0, count = path.length; i < count; i++) {
if (route[i].match(pattern)) { // 'Directory' is a variable
variables[route[i].match(pattern).pop()] = path[i];
} else if (route[i] === path[i]) { // 'Directory' is same as path
continue;
} else { // No match, try new route
break;
}
}
if (Object.keys(variables).length) { // Found correct route
return {
path: route.join('/'),
data: variables
}
}
}
}
}
return {
path: path.join('/')
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment