aboutsummaryrefslogtreecommitdiffstats
path: root/infrastructure/framework-src/modules/dispatch.js
blob: e7e3ef0987e139fa4db79dbfc867764c511d083a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**
 * Copyright 2009 Google Inc.
 * 
 * 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.
 */

/**
 * @fileOverview Dispatching for dynamic pages and static files rendered from disk.
 */

import("jsutils.eachProperty");
import("stringutils");

jimport("java.lang.System.out.println");

//----------------------------------------------------------------
// Util
//----------------------------------------------------------------

function PrefixMatcher(p) {
  var rs = p.replace(/([\[\]\^\$\\\.\*\+\?\(\)\{\}\|])/g, "\\$1");
  var r = new RegExp('^' + rs + '(.*)$');
  return function(path) {
    return r.exec(path);
  }
}

// Like PrefixMatcher, but makes trailing '/' optional, as in /ep/admin or /ep/admin/.
// If trailing '/' is omitted, will redirect to same path with trailing /.
function DirMatcher(p) {
  if (p.substr(-1) == '/') {
    p = p.substr(0, p.length-1);
  }
  var prefixMatcher = PrefixMatcher(p+'/');
  return function(path) {
    if (path == p) {
      response.redirect(p+'/');
    }
    return prefixMatcher(path);
  }
}

function _pathMatches(p, loc) {
  // returns a regex-result kind of array with length >= 1, or null
  if (typeof(loc) == 'string') {
    return (p == loc) ? [loc] : null;
  }
  if (typeof(loc) == 'function') {
    return (loc(p) || null);
  }
  if (loc.exec) { // regexp
    var r = loc.exec(p);
    return r || null;
  }
  throw new Error('Uknown type of location: '+loc);
}

//----------------------------------------------------------------
// Dispatcher
//----------------------------------------------------------------

var Dispatcher = function() {
  this._routes = [];  // Array([location, (local file path or function)])
};

Dispatcher.prototype.addLocations = function(l) {
  var that = this;
  l.forEach(function(x) { that._routes.push(x); });
};

Dispatcher.prototype.dispatch = function() {
  var p = request.path;
  var served = false;

  for (var i = 0; (i < this._routes.length) && (served == false); i++) {
    var loc = this._routes[i][0];
    var dst = this._routes[i][1];

    var match = _pathMatches(p, loc);
    if (match) {
      if (typeof(dst) != 'function') {
	throw new Error('dispatch only dispatches to functions, and this is not a function: '+typeof(dst));
      }
      
      // call dst(group1, group2, group3, ...)
      served = dst.apply(this, Array.prototype.slice.call(match, 1));
    }
  };

  return served;
};

//----------------------------------------------------------------
// fdisp
//----------------------------------------------------------------

function forward(module) {
  return function(name) {
    if (name === "") {
      name = "main";
    }
    if (name) {
      name = name.replace(/\-/g, '_');
    }
    var onreq = module['onRequest'];
    var f = module['render_'+name];
    var fg = module['render_'+name+'_get'];
    var fp = module['render_'+name+'_post'];

    var served = false;
    
    if (onreq) { 
      served = onreq(name);
    }

    if (served) {
      return true;
    }

    var method = request.method;
    if (method == "HEAD") {
      method = "GET";
    }
    
    if (f) { 
      f();
      served = true;
    } else if (method == "GET" && fg) {
      fg();
      served = true;
    } else if (method == "POST" && fp) {
      fp();
      served = true;
    }

    return served;
  };
}