/** *

RouteMap holds an internal table of route patterns and method names in addition to some * adding/removing/utility methods and a handler for request routing.

*

It does not have any dependencies and is written in "plain old" JS, but it does require JS 1.8 array methods, so * if the environment it will run in does not have those, the reference implementations from * Mozilla should be * supplied external to this library.

*

It is designed to be used in both a browser setting and a server-side context (for example in node.js).

* LICENSING INFORMATION: *
 * Copyright 2011 OpenGamma Inc. and the OpenGamma group of companies
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
* @see OpenGamma * @see Apache License, Version 2.0 * @see Mozilla Developer * Network * @name RouteMap * @namespace RouteMap * @author Afshin Darian * @static * @throws {Error} if JS 1.8 Array.prototype methods don't exist */ (function (pub, namespace) { // defaults to exports, uses window if exports does not exist (function (arr, url) { // plain old JS, but needs some JS 1.8 array methods if (!arr.every || !arr.filter || !arr.indexOf || !arr.map || !arr.reduce || !arr.some || !arr.forEach) throw new Error('See ' + url + ' for reference versions of Array.prototype methods available in JS 1.8'); })([], 'https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/array/'); var routes /* internal reference to RouteMap */, active_routes = {}, added_routes = {}, flat_pages = [], last = 0, current = 0, encode = encodeURIComponent, decode = decodeURIComponent, has = 'hasOwnProperty', EQ = '=' /* equal string */, SL = '/' /* slash string */, PR = '#' /* default prefix string */, token_exp = /\*|:|\?/, star_exp = /(^([^\*:\?]+):\*)|(^\*$)/, scalar_exp = /^:([^\*:\?]+)(\??)$/, keyval_exp = /^([^\*:\?]+):(\??)$/, slash_exp = new RegExp('([^' + SL + '])$'), context = typeof window !== 'undefined' ? window : {}, // where listeners reside, routes.context() overwrites it /** @ignore */ invalid_str = function (str) {return typeof str !== 'string' || !str.length;}, /** @ignore */ fingerprint = function (rule) {return [rule.method, rule.route].join('|');}, /** * merges one or more objects into a new object by value (nothing is a reference), useful for cloning * @name RouteMap#merge * @inner * @function * @type Object * @returns {Object} a merged object * @throws {TypeError} if one of the arguments is not a mergeable object (i.e. a primitive, null or array) */ merge = function () { var self = 'merge', to_string = Object.prototype.toString, clone = function (obj) { return typeof obj !== 'object' || obj === null ? obj // primitives : to_string.call(obj) === '[object Array]' ? obj.map(clone) // arrays : merge(obj); // objects }; return Array.prototype.reduce.call(arguments, function (acc, obj) { if (!obj || typeof obj !== 'object' || to_string.call(obj) === '[object Array]') throw new TypeError(self + ': ' + to_string.call(obj) + ' is not mergeable'); for (var key in obj) if (obj[has](key)) acc[key] = clone(obj[key]); return acc; }, {}); }, /** * parses a path and returns a list of objects that contain argument dictionaries, methods, and raw hash values * @name RouteMap#parse * @inner * @function * @param {String} path * @type Array * @returns {Array} a list of parsed objects in descending order of matched hash length * @throws {TypeError} if the method specified by a rule specification does not exist during parse time */ parse = function (path) { // go with the first matching page (longest) or any pages with * rules var self = 'parse', pages = flat_pages.filter(function (val) { // add slash to paths so all vals match return path.replace(slash_exp, '$1' + SL).indexOf(val) === 0; }) .filter(function (page, index) { return !index || active_routes[page].some(function (val) {return !!val.rules.star;}); }); return !pages.length ? [] : pages.reduce(function (acc, page) { // flatten parsed rules for all pages var current_page = active_routes[page].map(function (rule_set) { var args = {}, scalars = rule_set.rules.scalars, keyvals = rule_set.rules.keyvals, method, // populate the current request object as a collection of keys/values and scalars request = path.replace(page, '').split(SL).reduce(function (acc, val) { var split = val.split(EQ), key = split[0], value = split.slice(1).join(EQ); return !val.length ? acc // discard empty values, separate rest into scalars or keyvals : (value ? acc.keyvals[key] = value : acc.scalars.push(val)), acc; }, {keyvals: {}, scalars: []}), star, keyval, keyval_keys = keyvals.reduce(function (acc, val) {return (acc[val.name] = 0) || acc;}, {}), required_scalars_length = scalars.filter(function (val) {return val.required;}).length, required_keyvals = keyvals.filter(function (val) {return val.required;}) .every(function (val) {return request.keyvals[has](val.name);}); // not enough parameters are supplied in the request for this rule if (required_scalars_length > request.scalars.length || !required_keyvals) return 0; if (!rule_set.rules.star) { // too many params are only a problem if the rule isn't a wildcard if (request.scalars.length > scalars.length) return 0; // if too many scalars are supplied for (keyval in request.keyvals) // if too many keyvals are supplied if (request.keyvals[has](keyval) && !keyval_keys[has](keyval)) return 0; } request.scalars.slice(0, scalars.length) // populate args scalars .forEach(function (scalar, index) {args[scalars[index].name] = decode(scalar);}); keyvals.forEach(function (keyval) { // populate args keyvals if (request.keyvals[keyval.name]) args[keyval.name] = decode(request.keyvals[keyval.name]); delete request.keyvals[keyval.name]; // remove so that * can be constructed }); if (rule_set.rules.star) { // all unused scalars and keyvals go into the * argument (still encoded) star = request.scalars.slice(scalars.length, request.scalars.length); for (keyval in request.keyvals) if (request.keyvals[has](keyval)) star.push([keyval, request.keyvals[keyval]].join(EQ)); args[rule_set.rules.star] = star.join(SL); } try { // make sure the rule's method actually exists and can be accessed method = rule_set.method.split('.').reduce(function (acc, val) {return acc[val];}, context); if (typeof method !== 'function') throw new Error; } catch (error) { throw new TypeError(self + ': ' + rule_set.method + ' is not a function in current context'); } return {page: page, hash: routes.hash({route: rule_set.raw}, args), method: method, args: args}; }); return acc.concat(current_page).filter(Boolean); // only return the parsed rules that matched }, []).sort(function (a, b) {return b.hash.length - a.hash.length;}); // order in descending hash length }, /** * builds the internal representation of a rule based on the route definition * @inner * @name RouteMap#compile * @function * @param {String} route * @throws {SyntaxError} if any portion of a rule definition follows a * directive * @throws {SyntaxError} if a required scalar follows an optional scalar * @throws {SyntaxError} if a rule cannot be parsed * @type {Object} * @returns {Object} a compiled object, for example, the rule '/foo/:id/type:?/rest:*' would return * an object of the form:
{
         *     page:'/foo',
         *     rules:{
         *         keyvals:[{name: 'type', required: false}],
         *         scalars:[{name: 'id', required: true}],
         *         star:'rest' // false if not defined
         *     }
         * }
         * @see RouteMap.add
         * @see RouteMap.hash
         * @see RouteMap.remove
         */
        compile = (function (memo) { // compile is slow so cache compiled objects in a memo
            return function (orig) {
                var self = 'compile', compiled, index, names = {},
                    route = orig[0] === SL ? orig : ~(index = orig.indexOf(SL)) ? orig.slice(index) : 0,
                    /** @ignore */
                    valid_name = function (name) {
                        if (names[has](name) || (names[name] = 0))
                            throw new SyntaxError(self + ': "' + name + '" is repeated in: ' + orig);
                    };
                if (!route) throw new SyntaxError(self + ': the route ' + orig + ' was not understood');
                if (memo[route]) return memo[route];
                compiled = route.split(SL).reduce(function (acc, val) {
                    var rules = acc.rules, scalars = rules.scalars, keyvals = rules.keyvals;
                    if (rules.star) throw new SyntaxError(self + ': no rules can follow a * directive in: ' + orig);
                    // construct the name of the page
                    if (!~val.search(token_exp) && !scalars.length && !keyvals.length) return acc.page.push(val), acc;
                    // construct the parameters
                    if (val.match(star_exp)) return (rules.star = RegExp.$2 || RegExp.$3), valid_name(rules.star), acc;
                    if (val.match(scalar_exp)) {
                        if (acc.has_optional_scalar) // no scalars can follow optional scalars
                            throw new SyntaxError(self + ': "' + val + '" cannot follow an optional rule in: ' + orig);
                        if (!!RegExp.$2) acc.has_optional_scalar = val;
                        return scalars.push({name: RegExp.$1, required: !RegExp.$2}), valid_name(RegExp.$1), acc;
                    }
                    if (val.match(keyval_exp))
                        return keyvals.push({name: RegExp.$1, required: !RegExp.$2}), valid_name(RegExp.$1), acc;
                    throw new SyntaxError(self + ': the rule "' + val + '" was not understood in: ' + orig);
                }, {page: [], rules: {scalars: [], keyvals: [], star: false}, has_optional_scalar: ''});
                delete compiled.has_optional_scalar; // this is just a temporary value and should not be exposed
                compiled.page = compiled.page.join(SL).replace(new RegExp(SL + '$'), '') || SL;
                return memo[route] = compiled;
            };
        })({});
    pub[namespace] = (routes) = { // parens around routes to satisfy JSDoc's caprice
        /**
         * adds a rule to the internal table of routes and methods
         * @name RouteMap.add
         * @function
         * @type undefined
         * @param {Object} rule rule specification
         * @param {String} rule.route route pattern definition; there are three types of pattern arguments: scalars,
         * keyvals, and stars; scalars are individual values in a URL (all URL values are separate by the
         * '/' character), keyvals are named values, e.g. 'foo=bar', and star values are wildcards; so for
         * example, the following pattern represents all the possible options:
* '/foo/:id/:sub?/attr:/subattr:?/rest:*'
the ? means that argument is * optional, the star rule is named rest but it could have just simply been left as *, * which means the resultant dictionary would have put the wildcard remainder into args['*'] * instead of args.rest; so the following URL would match the pattern above:
* /foo/23/45/attr=something/subattr=something_else
* when its method is called, it will receive this arguments dictionary:
*
{
         *      id:'23',
         *      subid:'45',
         *      attr:'something',
         *      subattr:'something_else',
         *      rest:''
         * }
* add uses {@link #compile} and does not catch any errors thrown by that function * @param {String} rule.method listener method for this route * @throws {TypeError} if rule.route or rule.method are not strings or empty strings * @throws {Error} if rule has already been added * @see RouteMap.post_add */ add: function (rule) { var self = 'add', method = rule.method, route = rule.route, compiled, id = fingerprint(rule); if ([route, method].some(invalid_str)) throw new TypeError(self + ': rule.route and rule.method must both be non-empty strings'); if (added_routes[id]) throw new Error(self + ': ' + route + ' to ' + method + ' already exists'); compiled = compile(route); added_routes[id] = true; if (!active_routes[compiled.page] && (active_routes[compiled.page] = [])) // add route to list and sort flat_pages = flat_pages.concat(compiled.page).sort(function (a, b) {return b.length - a.length;}); active_routes[compiled.page].push(routes.post_add({method: method, rules: compiled.rules, raw: route})); }, /** * overrides the context where listener methods are sought, the default scope is window * (in a browser setting), returns the current context, if no scope object is passed in, just * returns current context without setting context * @name RouteMap.context * @function * @type {Object} * @returns {Object} the current context within which RouteMap searches for handlers * @param {Object} scope the scope within which methods for mapped routes will be looked for */ context: function (scope) {return context = typeof scope === 'object' ? scope : context;}, /** * returns the parsed (see {@link #parse}) currently accessed route; after listeners have finished * firing, current and last are the same * @name RouteMap.current * @function * @type Object * @returns {Object} the current parsed URL object * @see RouteMap.last */ current: function () {return current ? merge(current) : null;}, /** * this function is fired when no rule is matched by a URL, by default it does nothing, but it could be set up * to handle things like 404 responses on the server-side or bad hash fragments in the browser * @name RouteMap.default_handler * @function * @type undefined */ default_handler: function () {}, /** * URL grabber function, defaults to checking the URL fragment (hash); this function should be * overwritten in a server-side environment; this method is called by {@link RouteMap.handler}; without * window.location.hash it will return '/' * @name RouteMap.get * @function * @returns {String} by default, this returns a subset of the URL hash (everything after the first * '/' character ... if nothing follows a slash, it returns '/'); if overwritten, it * must be a function that returns URL path strings (beginning with '/') to match added rules * @type String */ get: function () { if (typeof window === 'undefined') return SL; var hash = window.location.hash, index = hash.indexOf(SL); return ~index ? hash.slice(index) : SL; }, /** * in a browser setting, it changes window.location.hash, in other settings, it should be * overwritten to do something useful (if necessary); it will not throw an error if window does * not exist * @name RouteMap.go * @function * @type undefined * @param {String} hash the hash fragment to go to */ go: function (hash) { if (typeof window !== 'undefined') window.location.hash = (hash.indexOf(PR) === 0 ? '' : PR) + hash; }, /** * main handler function for routing, this should be bound to hashchange events in the browser, or * (in conjunction with updating {@link RouteMap.get}) used with the HTML5 history API, it detects * all the matching route patterns, parses the URL parameters and fires their methods with the arguments from * the parsed URL; the timing of {@link RouteMap.current} and {@link RouteMap.last} being set is as follows * (pseudo-code): *
         * path: get_route             // {@link RouteMap.get}
         * parsed: parse path          // {@link #parse}
         * current: longest parsed     // {@link RouteMap.current}
         * parsed: pre_dispatch parsed // {@link RouteMap.pre_dispatch}
         * current: longest parsed     // reset current
         * fire matched rules in parsed
         * last: current               // {@link RouteMap.last}
         * 
* RouteMap.handler calls {@link #parse} and does not catch any errors that function throws * @name RouteMap.handler * @function * @type undefined * @see RouteMap.pre_dispatch */ handler: function () { var url = routes.get(), parsed = parse(url), args = Array.prototype.slice.call(arguments); if (!parsed.length) return routes.default_handler.apply(null, [url].concat(args)); current = parsed[0]; // set current to the longest hash before pre_dispatch touches it parsed = routes.pre_dispatch(parsed); // pre_dispatch might change the contents of parsed current = parsed[0]; // set current to the longest hash again after pre_dispatch parsed.forEach(function (val) {val.method.apply(null, [val.args].concat(args));}); // fire requested methods last = parsed[0]; }, /** * returns a URL fragment by applying parameters to a rule; uses {@link #compile} and does not catch any errors * thrown by that function * @name RouteMap.hash * @function * @type String * @param {Object} rule the rule specification; it typically looks like:
* {route:'/foo', method:'bar'}
but only route is strictly necessary * @param {Object} params a dictionary of argument key/value pairs required by the rule * @returns {String} URL fragment resulting from applying arguments to rule pattern * @throws {TypeError} if a required parameter is not present */ hash: function (rule, params) { var self = 'hash', hash, compiled, params = params || {}; if (invalid_str(rule.route)) throw new TypeError(self + ': rule.route must be a non-empty string'); compiled = compile(rule.route); hash = compiled.page + (compiled.page === SL ? '' : SL) + // 1. start with page, then add params compiled.rules.scalars.map(function (val) { // 2. add scalar values next var value = encode(params[val.name]), bad_param = params[val.name] === void 0 || invalid_str(value); if (val.required && bad_param) throw new TypeError(self + ': params.' + val.name + ' is undefined, route: ' + rule.route); return bad_param ? 0 : value; }) .concat(compiled.rules.keyvals.map(function (val) { // 3. then concat keyval values var value = encode(params[val.name]), bad_param = params[val.name] === void 0 || invalid_str(value); if (val.required && bad_param) throw new TypeError(self + ': params.' + val.name + ' is undefined, route: ' + rule.route); return bad_param ? 0 : val.name + EQ + value; })) .filter(Boolean).join(SL); // remove empty (0) values if (compiled.rules.star && params[compiled.rules.star]) // 4. add star value if it exists hash += (hash[hash.length - 1] === SL ? '' : SL) + params[compiled.rules.star]; return hash; }, /** * returns the parsed (see {@link #parse}) last accessed route; when route listeners are being called, * last is the previously accessed route, after listeners have finished firing, the current parsed * route replaces last's value * @name RouteMap.last * @function * @type Object * @returns {Object} the last parsed URL object, will be null on first load * @see RouteMap.current */ last: function () {return last ? merge(last) : null;}, /** * parses a URL fragment into a data structure only if there is a route whose pattern matches the fragment * @name RouteMap.parse * @function * @type Object * @returns {Object} of the form:
{page:'/foo', args:{bar:'some_value'}}
* only if a rule with the route: '/foo/:bar' has already been added * @throws {TypeError} if hash is not a string, is empty, or does not contain a '/' character * @throws {SyntaxError} if hash cannot be parsed by {@link #parse} */ parse: function (hash) { var self = 'parse', parsed, index = hash.indexOf(SL); hash = ~index ? hash.slice(index) : ''; if (invalid_str(hash)) throw new TypeError(self + ': hash must be a string with a ' + SL + ' character'); if (!(parsed = parse(hash)).length) throw new SyntaxError(self + ': ' + hash + ' cannot be parsed'); return {page: parsed[0].page, args: parsed[0].args}; }, /** * this function is called by {@link RouteMap.add}, it receives a compiled rule object, e.g. for the rule: *
{route:'/foo/:id/:sub?/attr:/subattr:?/rest:*', method:'console.log'}
* post_add would receive the following object: *
{
         *     method:'console.log',
         *     rules:{
         *         scalars:[{name:'id',required:true},{name:'sub',required:false}],
         *         keyvals:[{name:'attr',required:true},{name:'subattr',required:false}],
         *         star:'rest'
         *     },
         *     raw:'/foo/:id/:sub?/attr:/subattr:?/rest:*'
         * }
* and it is expected to pass back an object of the same format; it can be overwritten to post-process added * rules e.g. to add extra default application-wide parameters; by default, it simply returns what was passed * into it * @name RouteMap.post_add * @function * @type Object * @returns {Object} the default function returns the exact object it received; a custom function needs to * an object that is of the same form (but could possibly have more or fewer parameters, etc.) * @param {Object} compiled the compiled rule */ post_add: function (compiled) {return compiled;}, /** * like {@link RouteMap.post_add} this function can be overwritten to add application-specific code into * route mapping, it is called before a route begins being dispatched to all matching rules; it receives the * list of matching parsed route objects ({@link #parse}) and is expected to return it; one application of this * function might be to set application-wide variables like debug flags * @name RouteMap.pre_dispatch * @function * @type Array * @returns {Array} a list of the same form as the one it receives * @param {Array} parsed the parsed request */ pre_dispatch: function (parsed) {return parsed;}, /** * if a string is passed in, it overwrites the prefix that is removed from each URL before parsing; primarily * used for hashbang (#!); either way, it returns the current prefix * @name RouteMap.prefix * @function * @type undefined * @param {String} prefix (optional) the prefix string */ prefix: function (prefix) {return PR = typeof prefix !== 'undefined' ? prefix + '' : PR;}, /** * counterpart to {@link RouteMap.add}, removes a rule specification; * remove uses * {@link #compile} and does not catch any errors thrown by that function * @name RouteMap.remove * @function * @type undefined * @param {Object} rule the rule specification that was used in {@link RouteMap.add} * @throws {TypeError} if rule.route or rule.method are not strings or empty strings */ remove: function (rule) { var self = 'remove', method = rule.method, route = rule.route, compiled, id = fingerprint(rule), index; if ([route, method].some(invalid_str)) throw new TypeError(self + ': rule.route and rule.method must both be non-empty strings'); if (!added_routes[id]) return; compiled = compile(route); delete added_routes[id]; active_routes[compiled.page] = active_routes[compiled.page] .filter(function (rule) {return (rule.raw !== route) || (rule.method !== method);}); if (!active_routes[compiled.page].length && (delete active_routes[compiled.page])) // delete active route if (~(index = flat_pages.indexOf(compiled.page))) flat_pages.splice(index, 1); // then flat page } }; })(typeof exports === 'undefined' ? window : exports, 'RouteMap');