@locker/shared-url
Advanced tools
Comparing version
@@ -38,6 +38,7 @@ /** | ||
} | ||
const DISALLOWED_ENDPOINTS = ['/aura', '/webruntime']; | ||
// TODO [W-7302311] Make paths and domains configurable | ||
function isInvalidURL(parsedURL) { | ||
const pathname = shared.StringToLowerCase(parsedURL.pathname); | ||
return shared.StringIncludes(pathname, '/aura'); | ||
return shared.ArraySome(DISALLOWED_ENDPOINTS, (dep) => shared.StringIncludes(pathname, dep)); | ||
} | ||
@@ -51,2 +52,2 @@ | ||
exports.sanitizeURLString = sanitizeURLString; | ||
/** version: 0.13.4 */ | ||
/** version: 0.13.5 */ |
/** | ||
* Copyright (C) 2019 salesforce.com, inc. | ||
*/ | ||
import { ReflectGetOwnPropertyDescriptor, ObjectLookupOwnGetter, ReflectApply, ArrayIncludes, emptyArray, StringReplace, StringToLowerCase, StringIncludes } from '@locker/shared'; | ||
import { ReflectGetOwnPropertyDescriptor, ObjectLookupOwnGetter, ReflectApply, ArrayIncludes, emptyArray, StringReplace, StringToLowerCase, ArraySome, StringIncludes } from '@locker/shared'; | ||
import { DocumentCreateElement } from '@locker/shared-dom'; | ||
@@ -34,9 +34,10 @@ | ||
} | ||
const DISALLOWED_ENDPOINTS = ['/aura', '/webruntime']; | ||
// TODO [W-7302311] Make paths and domains configurable | ||
function isInvalidURL(parsedURL) { | ||
const pathname = StringToLowerCase(parsedURL.pathname); | ||
return StringIncludes(pathname, '/aura'); | ||
return ArraySome(DISALLOWED_ENDPOINTS, (dep) => StringIncludes(pathname, dep)); | ||
} | ||
export { TRUSTED_DOMAINS, isInvalidURL, isValidURLScheme, parseURL, sanitizeURLForElement, sanitizeURLString }; | ||
/** version: 0.13.4 */ | ||
/** version: 0.13.5 */ |
{ | ||
"name": "@locker/shared-url", | ||
"version": "0.13.4", | ||
"version": "0.13.5", | ||
"license": "Salesforce Developer Agreement", | ||
@@ -22,6 +22,6 @@ "author": "Salesforce UI Security Team", | ||
"dependencies": { | ||
"@locker/shared": "0.13.4", | ||
"@locker/shared-dom": "0.13.4" | ||
"@locker/shared": "0.13.5", | ||
"@locker/shared-dom": "0.13.5" | ||
}, | ||
"gitHead": "31774f28eb975d639ee188ad9a7101919b731b39" | ||
"gitHead": "213b7ea798dd4a01891a5b5ead2cff46f6db5600" | ||
} |
Sorry, the diff of this file is not supported yet
9274
2.25%99
2.06%+ Added
+ Added
- Removed
- Removed
Updated
Updated