2016-06-23 12:47:54 -04: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-07-25 06:02:57 -04:00
|
|
|
import {SchemaMetadata, SecurityContext} from '@angular/core';
|
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
import {ElementSchemaRegistry} from '../index';
|
2016-06-08 19:38:52 -04:00
|
|
|
import {isPresent} from '../src/facade/lang';
|
2015-09-14 18:59:09 -04:00
|
|
|
|
|
|
|
export class MockSchemaRegistry implements ElementSchemaRegistry {
|
2016-06-08 19:38:52 -04:00
|
|
|
constructor(
|
|
|
|
public existingProperties: {[key: string]: boolean},
|
|
|
|
public attrPropMapping: {[key: string]: string}) {}
|
2016-04-28 20:50:03 -04:00
|
|
|
|
2016-07-25 06:02:57 -04:00
|
|
|
hasProperty(tagName: string, property: string, schemas: SchemaMetadata[]): boolean {
|
2015-09-14 18:59:09 -04:00
|
|
|
var result = this.existingProperties[property];
|
|
|
|
return isPresent(result) ? result : true;
|
|
|
|
}
|
|
|
|
|
feat: security implementation in Angular 2.
Summary:
This adds basic security hooks to Angular 2.
* `SecurityContext` is a private API between core, compiler, and
platform-browser. `SecurityContext` communicates what context a value is used
in across template parser, compiler, and sanitization at runtime.
* `SanitizationService` is the bare bones interface to sanitize values for a
particular context.
* `SchemaElementRegistry.securityContext(tagName, attributeOrPropertyName)`
determines the security context for an attribute or property (it turns out
attributes and properties match for the purposes of sanitization).
Based on these hooks:
* `DomSchemaElementRegistry` decides what sanitization applies in a particular
context.
* `DomSanitizationService` implements `SanitizationService` and adds *Safe
Value*s, i.e. the ability to mark a value as safe and not requiring further
sanitization.
* `url_sanitizer` and `style_sanitizer` sanitize URLs and Styles, respectively
(surprise!).
`DomSanitizationService` is the default implementation bound for browser
applications, in the three contexts (browser rendering, web worker rendering,
server side rendering).
BREAKING CHANGES:
*** SECURITY WARNING ***
Angular 2 Release Candidates do not implement proper contextual escaping yet.
Make sure to correctly escape all values that go into the DOM.
*** SECURITY WARNING ***
Reviewers: IgorMinar
Differential Revision: https://reviews.angular.io/D103
2016-04-29 19:04:08 -04:00
|
|
|
securityContext(tagName: string, property: string): SecurityContext {
|
|
|
|
return SecurityContext.NONE;
|
|
|
|
}
|
|
|
|
|
2015-09-14 18:59:09 -04:00
|
|
|
getMappedPropName(attrName: string): string {
|
|
|
|
var result = this.attrPropMapping[attrName];
|
|
|
|
return isPresent(result) ? result : attrName;
|
|
|
|
}
|
2015-10-02 12:30:36 -04:00
|
|
|
}
|