forked from dart-lang/web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cross-origin window and location wrappers
Closes dart-lang/sdk#54443 Closes dart-lang#247 Closes dart-lang/sdk#54938 Since cross-origin objects have limitations around access, wrappers are introduced to do the only safe operations. Extension methods are added to get instances of these wrappers.
- Loading branch information
Showing
5 changed files
with
257 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file | ||
// for details. All rights reserved. Use of this source code is governed by a | ||
// BSD-style license that can be found in the LICENSE file. | ||
|
||
import 'dart:js_interop'; | ||
|
||
import '../dom.dart' show HTMLIFrameElement, Location, Window; | ||
|
||
// Includes all the allowed and necessary APIs from the W3 spec located here: | ||
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#cross-origin-objects | ||
// Some browsers may provide more access. These APIs are exposed as | ||
//`_DOMWindowCrossFrame` and `_LocationCrossFrame` in `dart:html`. | ||
|
||
// The Dart runtime does not allow this to be typed as any better than `JSAny?`. | ||
extension type _CrossOriginWindow(JSAny? any) { | ||
external bool get closed; | ||
external int get length; | ||
// While you can set the location to a string value, this is the same as | ||
// `location.href`, so we only allow the getter to avoid a | ||
// `getter_not_subtype_setter_types` error. | ||
external JSAny? get location; | ||
external JSAny? get opener; | ||
external JSAny? get parent; | ||
external JSAny? get top; | ||
// `frames`, `self`, and `window` are all supported for cross-origin windows, | ||
// but simply return the calling window, so there's no use in supporting them | ||
// for interop. | ||
external void blur(); | ||
external void close(); | ||
external void focus(); | ||
external void postMessage( | ||
JSAny? message, [ | ||
JSAny optionsOrTargetOrigin, | ||
JSArray<JSObject> transfer, | ||
]); | ||
} | ||
|
||
// The Dart runtime does not allow this to be typed as any better than `JSAny?`. | ||
extension type _CrossOriginLocation(JSAny? any) { | ||
external void replace(String url); | ||
external set href(String value); | ||
} | ||
|
||
class CrossOriginWindow { | ||
CrossOriginWindow._(JSAny? o) : _window = _CrossOriginWindow(o); | ||
|
||
static CrossOriginWindow? _create(JSAny? o) { | ||
if (o == null) return null; | ||
return CrossOriginWindow._(o); | ||
} | ||
|
||
final _CrossOriginWindow _window; | ||
|
||
/// The [Window.closed] value of this cross-origin window. | ||
bool get closed => _window.closed; | ||
|
||
/// The [Window.length] value of this cross-origin window. | ||
int get length => _window.length; | ||
|
||
/// A [CrossOriginLocation] wrapper of the [Window.location] value of this | ||
/// cross-origin window. | ||
CrossOriginLocation? get location => | ||
CrossOriginLocation._create(_window.location); | ||
|
||
/// A [CrossOriginWindow] wrapper of the [Window.opener] value of this | ||
/// cross-origin window. | ||
CrossOriginWindow? get opener => _create(_window.opener); | ||
|
||
/// A [CrossOriginWindow] wrapper of the [Window.top] value of this | ||
/// cross-origin window. | ||
CrossOriginWindow? get parent => _create(_window.parent); | ||
|
||
/// A [CrossOriginWindow] wrapper of the [Window.parent] value of this | ||
/// cross-origin window. | ||
CrossOriginWindow? get top => _create(_window.top); | ||
|
||
/// Calls [Window.blur] on this cross-origin window. | ||
void blur() => _window.blur(); | ||
|
||
/// Calls [Window.close] on this cross-origin window. | ||
void close() => _window.close(); | ||
|
||
/// Calls [Window.focus] on this cross-origin window. | ||
void focus() => _window.focus(); | ||
|
||
/// Calls [Window.postMessage] on this cross-origin window with the given | ||
/// [message], [optionsOrTargetOrigin] if not `null`, and [transfer] if not | ||
/// `null`. | ||
void postMessage( | ||
JSAny? message, [ | ||
JSAny? optionsOrTargetOrigin, | ||
JSArray<JSObject>? transfer, | ||
]) { | ||
if (optionsOrTargetOrigin == null) { | ||
_window.postMessage(message); | ||
} else if (transfer == null) { | ||
_window.postMessage(message, optionsOrTargetOrigin); | ||
} else { | ||
_window.postMessage(message, optionsOrTargetOrigin, transfer); | ||
} | ||
} | ||
|
||
/// The unsafe window value that this wrapper wraps that should only ever be | ||
/// typed as <code>[JSAny]?</code>. | ||
/// | ||
/// > [!NOTE] | ||
/// > This is only intended to be passed to an interop member that expects a | ||
/// > <code>[JSAny]?</code>. Safety for any other operations is not | ||
/// > guaranteed. | ||
JSAny? get window => _window.any; | ||
} | ||
|
||
/// A safe wrapper for a cross-origin location obtained through a cross-origin | ||
/// window. | ||
/// | ||
/// Since cross-origin access is limited by the browser, the Dart runtime can't | ||
/// provide a type for or null-assert this value. To safely interact with this | ||
/// value, use this wrapper instead. | ||
class CrossOriginLocation { | ||
CrossOriginLocation._(JSAny? o) : _location = _CrossOriginLocation(o); | ||
|
||
static CrossOriginLocation? _create(JSAny? o) { | ||
if (o == null) return null; | ||
return CrossOriginLocation._(o); | ||
} | ||
|
||
final _CrossOriginLocation _location; | ||
|
||
/// Sets the [Location.href] value of this cross-origin location to [value]. | ||
set href(String value) => _location.href = value; | ||
|
||
/// Calls [Location.replace] on this cross-origin location with the given | ||
/// [url]. | ||
void replace(String url) => _location.replace(url); | ||
|
||
/// The unsafe location value that this wrapper wraps that should only ever be | ||
/// typed as <code>[JSAny]?</code>. | ||
/// | ||
/// > [!NOTE] | ||
/// > This is only intended to be passed to an interop member that expects a | ||
/// > <code>[JSAny]?</code>. Safety for any other operations is not | ||
/// > guaranteed. | ||
JSAny? get location => _location.any; | ||
} | ||
|
||
extension CrossOriginContentWindowExtension on HTMLIFrameElement { | ||
@JS('contentWindow') | ||
external JSAny? get _contentWindow; | ||
|
||
/// A [CrossOriginWindow] wrapper of the [HTMLIFrameElement.contentWindow] | ||
/// value of this `iframe`. | ||
CrossOriginWindow? get contentWindowCrossOrigin => | ||
CrossOriginWindow._create(_contentWindow); | ||
} | ||
|
||
extension CrossOriginWindowExtension on Window { | ||
@JS('open') | ||
external JSAny? _open(String url); | ||
|
||
/// A [CrossOriginWindow] wrapper of the value returned from calling | ||
/// [Window.open] with [url]. | ||
CrossOriginWindow? openCrossOrigin(String url) => | ||
CrossOriginWindow._create(_open(url)); | ||
@JS('opener') | ||
external JSAny? get _opener; | ||
|
||
/// A [CrossOriginWindow] wrapper of the [Window.opener] value of this | ||
/// cross-origin window. | ||
CrossOriginWindow? get openerCrossOrigin => | ||
CrossOriginWindow._create(_opener); | ||
@JS('parent') | ||
external JSAny? get _parent; | ||
|
||
/// A [CrossOriginWindow] wrapper of the [Window.parent] value of this | ||
/// cross-origin window. | ||
CrossOriginWindow? get parentCrossOrigin => | ||
CrossOriginWindow._create(_parent); | ||
@JS('top') | ||
external JSAny? get _top; | ||
|
||
/// A [CrossOriginWindow] wrapper of the [Window.top] value of this | ||
/// cross-origin window. | ||
CrossOriginWindow? get topCrossOrigin => CrossOriginWindow._create(_top); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters