2016-06-17 14:09:19 -07:00
|
|
|
import {isDevMode} from '@angular/core';
|
|
|
|
|
2016-04-28 17:50:03 -07:00
|
|
|
import {BaseException} from '../src/facade/exceptions';
|
2016-06-17 14:09:19 -07:00
|
|
|
import {isArray, isBlank, isString} from '../src/facade/lang';
|
2016-03-09 14:55:27 -08:00
|
|
|
|
|
|
|
export function assertArrayOfStrings(identifier: string, value: any) {
|
2016-06-17 14:09:19 -07:00
|
|
|
if (!isDevMode() || isBlank(value)) {
|
2016-03-09 14:55:27 -08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!isArray(value)) {
|
|
|
|
throw new BaseException(`Expected '${identifier}' to be an array of strings.`);
|
|
|
|
}
|
|
|
|
for (var i = 0; i < value.length; i += 1) {
|
|
|
|
if (!isString(value[i])) {
|
|
|
|
throw new BaseException(`Expected '${identifier}' to be an array of strings.`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-20 09:52:41 -07:00
|
|
|
|
|
|
|
const INTERPOLATION_BLACKLIST_REGEXPS = [
|
|
|
|
/^\s*$/g, // empty
|
|
|
|
/[<>]/g, // html tag
|
|
|
|
/^[\{\}]$/g, // i18n expansion
|
|
|
|
];
|
|
|
|
|
|
|
|
export function assertInterpolationSymbols(identifier: string, value: any): void {
|
|
|
|
if (isDevMode() && !isBlank(value) && (!isArray(value) || value.length != 2)) {
|
|
|
|
throw new BaseException(`Expected '${identifier}' to be an array, [start, end].`);
|
|
|
|
} else if (isDevMode() && !isBlank(value)) {
|
|
|
|
const start = value[0] as string;
|
|
|
|
const end = value[1] as string;
|
|
|
|
// black list checking
|
|
|
|
INTERPOLATION_BLACKLIST_REGEXPS.forEach(regexp => {
|
|
|
|
if (regexp.test(start) || regexp.test(end)) {
|
|
|
|
throw new BaseException(`['${start}', '${end}'] contains unusable interpolation symbol.`);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|