-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
422 lines (384 loc) · 10.6 KB
/
util.js
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/**
* @fileOverview Miscellaneous utility functions and objects.
*/
exports.ak = require('ak', '0.2');
var DOMBuilder = require('DOMBuilder').DOMBuilder;
/**
* Updates an object's properties with other objects' properties.
*
* @param {Object} destination the object to be updated.
* @param {Object} [source] all further arguments will have their properties
* copied to the <code>destination</code> object in the
* order given.
*
* @return the <code>destination</code> object.
* @type Object
*/
exports.extendObject = function (destination)
{
for (var i = 1, l = arguments.length; i < l; i++)
{
var source = arguments[i];
for (var property in source)
{
if (source.hasOwnProperty(property))
{
destination[property] = source[property];
}
}
}
return destination;
};
/**
* Performs replacement of named placeholders in a String, specified in
* <code>%(placeholder)s</code> format.
*
* @param {String} input the String to be formatted.
* @param {Object} context an object specifying formatting context attributes.
*
* @return a formatted version of the given String.
* @type String
* @function
*/
exports.formatString = function()
{
// Closure for accessing a context object from the replacement function
var replacer = function(context)
{
/**
* A replacement function which looks up replacements for a named
* placeholder.
* <p>
* See http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:String:replace#Specifying_a_function_as_a_parameter
*
* @param {String} s the matched substring to be replaced.
* @param {String} name the name of a placeholder.
*
* @return the replacement for the placeholder with the given name.
* @type String
*/
return function(s, name)
{
return context[name];
};
};
return function(input, context)
{
return input.replace(/%\((\w+)\)s/g, replacer(context));
};
}();
/**
* Creates an object representing the data held in a form.
*
* @param form a form object or a <code>String</code> specifying a form's
* <code>name</code> or <code>id</code> attribute. If a
* <code>String</code> is given, name is tried before id when attempting
* to find the form.
*
* @return an object representing the data present in the form. If the form
* could not be found, this object will be empty.
* @type Object
*/
function formData(form)
{
var data = {};
if (typeof form == "string")
{
form = document.forms[form] || document.getElementById(form);
}
if (!form)
{
return data;
}
for (var i = 0, l = form.elements.length; i < l; i++)
{
var element = form.elements[i];
var type = element.type;
var value = null;
// Retrieve the element's value (or values)
if (type == "hidden" || type == "password" || type == "text" ||
type == "textarea" || ((type == "checkbox" ||
type == "radio") && element.checked))
{
value = element.value;
}
else if (type == "select-one")
{
value = element.options[element.selectedIndex].value;
}
else if (type == "select-multiple")
{
value = [];
for (var j = 0, m = element.options.length; j < m; j++)
{
if (element.options[j].selected)
{
value[value.length] = element.options[j].value;
}
}
if (value.length == 0)
{
value = null;
}
}
// Add any value obtained to the data object
if (value !== null)
{
if (data.hasOwnProperty(element.name))
{
if (data[element.name] instanceof Array)
{
data[element.name] = data[element.name].concat(value);
}
else
{
data[element.name] = [data[element.name], value];
}
}
else
{
data[element.name] = value;
}
}
}
return data;
}
/**
* Utility method for determining if:
* <ul>
* <li>an item is contained in an <code>Array</code></li>
* <li>a substring is contained within a <code>String</code></li>
* <li>an <code>Object</code> has a given named property.</li>
* </ul>
*
* @param container an <code>Array</code>, <code>String</code> or
* <code>Object</code>.
* @param item an item which might be contained in an <code>Array</code>, or a
* <code>String</code>.
*
* @return <code>true</code> if the container contains the item,
* <code>false</code> otherwise.
* @type Boolean
*/
exports.contains = function (container, item)
{
if (container instanceof Array)
{
for (var i = 0, l = container.length; i < l; i++)
{
if (item === container[i])
{
return true;
}
}
}
else if (typeof container == "string")
{
return (container.indexOf(item) != -1);
}
else
{
for (var prop in container)
{
if (container.hasOwnProperty(prop) && item === prop)
{
return true;
}
}
}
return false;
};
/**
* A collection of errors that knows how to display itself in various formats.
* <p>
* This object's properties are the field names, and corresponding values are
* the errors.
*
* @constructor
*/
var ErrorObject = exports.ErrorObject = function ()
{
};
ErrorObject.prototype.toString = function()
{
return ""+this.defaultRendering();
};
ErrorObject.prototype.toString.safe = true;
ErrorObject.prototype.defaultRendering = function()
{
return this.asUL();
};
/**
* Determines if any errors are present.
*
* @return {Boolean} <code>true</code> if this object has had any properties
* set, <code>false</code> otherwise.
*/
ErrorObject.prototype.isPopulated = function()
{
for (var name in this)
{
if (this.hasOwnProperty(name))
{
return true;
}
}
return false;
};
/**
* Displays error details as a list.
*/
ErrorObject.prototype.asUL = function()
{
var items = [];
for (var name in this)
{
if (this.hasOwnProperty(name))
{
items.push(DOMBuilder.createElement("li", {}, [name, this[name].asUL()]));
}
}
return (items.length
? DOMBuilder.createElement("ul", {"class": "errorlist"}, items)
: "");
};
/**
* Displays error details as text.
*/
ErrorObject.prototype.asText = function()
{
var items = [];
for (var name in this)
{
if (this.hasOwnProperty(name))
{
items.push("* " + name);
var errorList = this[name];
for (var i = 0, l = errorList.errors.length; i < l; i++)
{
items.push(" * " + errorList.errors[i]);
}
}
}
return items.join("\n");
};
/**
* A list of errors which knows how to display itself in various formats.
*
* @param {Array} [errors] a list of errors.
* @constructor
*/
var ErrorList = exports.ErrorList = function (errors)
{
this.errors = errors || [];
};
ErrorList.prototype.toString = function()
{
return ""+this.defaultRendering();
};
ErrorList.prototype.toString.safe = true;
ErrorList.prototype.defaultRendering = function()
{
return this.asUL();
};
/**
* Adds errors from another ErrorList.
*
* @param {ErrorList} errorList an ErrorList whose errors should be added.
*/
ErrorList.prototype.extend = function(errorList)
{
this.errors = this.errors.concat(errorList.errors);
};
/**
* Displays errors as a list.
*/
ErrorList.prototype.asUL = function()
{
var items = [];
for (var i = 0, l = this.errors.length; i < l; i++)
{
items.push(DOMBuilder.createElement("li", {}, [this.errors[i]]));
}
return (items.length
? DOMBuilder.createElement("ul", {"class": "errorlist"}, items)
: "");
};
/**
* Displays errors as text.
*/
ErrorList.prototype.asText = function()
{
var items = [];
for (var i = 0, l = this.errors.length; i < l; i++)
{
items[items.length] = "* " + this.errors[i]
}
return items.join("\n");
};
/**
* Determines if any errors are present.
*
* @return {Boolean} <code>true</code> if this object contains any errors
* <code>false</code> otherwise.
*/
ErrorList.prototype.isPopulated = function()
{
return this.errors.length > 0;
};
/**
* A validation error.
*
* @param message an error message or <code>Array</code> of error messages.
* @constructor
*/
exports.ValidationError = function (message)
{
if (message instanceof Array)
{
this.messages = new ErrorList(message);
}
else
{
this.messages = new ErrorList([message]);
}
};
// parseUri 1.2.2
// (c) Steven Levithan <stevenlevithan.com>
// MIT License
exports.parseUri = function (str) {
var o = exports.parseUri.options,
m = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
uri = {},
i = 14;
while (i--) uri[o.key[i]] = m[i] || "";
uri[o.q.name] = {};
uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
if ($1) uri[o.q.name][$1] = $2;
});
return uri;
};
exports.parseUri.options = {
strictMode: false,
key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
q: {
name: "queryKey",
parser: /(?:^|&)([^&=]*)=?([^&]*)/g
},
parser: {
strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
}
};
exports.InstanceCreatorMeta = Function.subclass({
subclass: function ()
{
var constructor = Function.prototype.subclass.apply(this, arguments);
return function ()
{
return (this instanceof arguments.callee
? constructor.apply(this, arguments)
: exports.ak.construct(arguments.callee, arguments));
}.wraps(constructor);
}
});