2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-06-17 14:09:19 -07:00
|
|
|
import {isDevMode} from '@angular/core';
|
|
|
|
|
2016-03-09 14:55:27 -08:00
|
|
|
|
|
|
|
export function assertArrayOfStrings(identifier: string, value: any) {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (!isDevMode() || value == null) {
|
2016-03-09 14:55:27 -08:00
|
|
|
return;
|
|
|
|
}
|
2016-10-19 13:42:39 -07:00
|
|
|
if (!Array.isArray(value)) {
|
2016-06-22 17:25:42 -07:00
|
|
|
throw new Error(`Expected '${identifier}' to be an array of strings.`);
|
2016-03-09 14:55:27 -08:00
|
|
|
}
|
2016-11-12 14:08:58 +01:00
|
|
|
for (let i = 0; i < value.length; i += 1) {
|
2016-10-19 13:42:39 -07:00
|
|
|
if (typeof value[i] !== 'string') {
|
2016-06-22 17:25:42 -07:00
|
|
|
throw new Error(`Expected '${identifier}' to be an array of strings.`);
|
2016-03-09 14:55:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-20 09:52:41 -07:00
|
|
|
|
|
|
|
const INTERPOLATION_BLACKLIST_REGEXPS = [
|
2016-06-21 16:55:17 -07:00
|
|
|
/^\s*$/, // empty
|
|
|
|
/[<>]/, // html tag
|
|
|
|
/^[{}]$/, // i18n expansion
|
2016-06-24 14:31:35 -07:00
|
|
|
/&(#|[a-z])/i, // character reference,
|
|
|
|
/^\/\//, // comment
|
2016-06-20 09:52:41 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
export function assertInterpolationSymbols(identifier: string, value: any): void {
|
2017-03-02 09:37:01 -08:00
|
|
|
if (value != null && !(Array.isArray(value) && value.length == 2)) {
|
2016-06-22 17:25:42 -07:00
|
|
|
throw new Error(`Expected '${identifier}' to be an array, [start, end].`);
|
2017-03-02 09:37:01 -08:00
|
|
|
} else if (isDevMode() && value != null) {
|
2016-06-20 09:52:41 -07:00
|
|
|
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)) {
|
2016-06-22 17:25:42 -07:00
|
|
|
throw new Error(`['${start}', '${end}'] contains unusable interpolation symbol.`);
|
2016-06-20 09:52:41 -07:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|