зеркало из https://github.com/mozilla/gecko-dev.git
428 строки
12 KiB
Plaintext
428 строки
12 KiB
Plaintext
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
interface LoadInfo;
|
|
interface MozChannel;
|
|
interface TabParent;
|
|
interface URI;
|
|
interface nsISupports;
|
|
|
|
/**
|
|
* Load types that correspond to the external types in nsIContentPolicy.idl.
|
|
* Please also update that IDL when updating this list.
|
|
*/
|
|
enum MozContentPolicyType {
|
|
"main_frame",
|
|
"sub_frame",
|
|
"stylesheet",
|
|
"script",
|
|
"image",
|
|
"object",
|
|
"object_subrequest",
|
|
"xmlhttprequest",
|
|
"fetch",
|
|
"xbl",
|
|
"xslt",
|
|
"ping",
|
|
"beacon",
|
|
"xml_dtd",
|
|
"font",
|
|
"media",
|
|
"websocket",
|
|
"csp_report",
|
|
"imageset",
|
|
"web_manifest",
|
|
"other"
|
|
};
|
|
|
|
/**
|
|
* A thin wrapper around nsIChannel and nsIHttpChannel that allows JS
|
|
* callers to access them without XPConnect overhead.
|
|
*/
|
|
[ChromeOnly, Exposed=System]
|
|
interface ChannelWrapper : EventTarget {
|
|
/**
|
|
* Returns the wrapper instance for the given channel. The same wrapper is
|
|
* always returned for a given channel.
|
|
*/
|
|
static ChannelWrapper get(MozChannel channel);
|
|
|
|
/**
|
|
* A unique ID for for the requests which remains constant throughout the
|
|
* redirect chain.
|
|
*/
|
|
[Constant, StoreInSlot]
|
|
readonly attribute unsigned long long id;
|
|
|
|
// Not technically pure, since it's backed by a weak reference, but if JS
|
|
// has a reference to the previous value, we can depend on it not being
|
|
// collected.
|
|
[Pure]
|
|
attribute MozChannel? channel;
|
|
|
|
|
|
/**
|
|
* Cancels the request with the given nsresult status code.
|
|
*/
|
|
[Throws]
|
|
void cancel(unsigned long result);
|
|
|
|
/**
|
|
* Redirects the wrapped HTTP channel to the given URI. For other channel
|
|
* types, this method will throw. The redirect is an internal redirect, and
|
|
* the behavior is the same as nsIHttpChannel.redirectTo.
|
|
*/
|
|
[Throws]
|
|
void redirectTo(URI url);
|
|
|
|
|
|
/**
|
|
* The content type of the request, usually as read from the Content-Type
|
|
* header. This should be used in preference to the header to determine the
|
|
* content type of the channel.
|
|
*/
|
|
[Pure]
|
|
attribute ByteString contentType;
|
|
|
|
|
|
/**
|
|
* For HTTP requests, the request method (e.g., GET, POST, HEAD). For other
|
|
* request types, returns an empty string.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute ByteString method;
|
|
|
|
/**
|
|
* For requests with LoadInfo, the content policy type that corresponds to
|
|
* the request. For requests without LoadInfo, returns "other".
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute MozContentPolicyType type;
|
|
|
|
|
|
/**
|
|
* When true, the request is currently suspended by the wrapper. When false,
|
|
* the request is not suspended by the wrapper, but may still be suspended
|
|
* by another caller.
|
|
*/
|
|
[Pure, SetterThrows]
|
|
attribute boolean suspended;
|
|
|
|
|
|
/**
|
|
* The final URI of the channel (as returned by NS_GetFinalChannelURI) after
|
|
* any redirects have been processed.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute URI finalURI;
|
|
|
|
/**
|
|
* The string version of finalURI (but cheaper to access than
|
|
* finalURI.spec).
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute DOMString finalURL;
|
|
|
|
|
|
/**
|
|
* Returns true if the request matches the given request filter, and the
|
|
* given extension has permission to access it.
|
|
*/
|
|
boolean matches(optional MozRequestFilter filter,
|
|
optional WebExtensionPolicy? extension = null,
|
|
optional MozRequestMatchOptions options);
|
|
|
|
|
|
/**
|
|
* Register's this channel as traceable by the given add-on when accessed
|
|
* via the process of the given TabParent.
|
|
*/
|
|
void registerTraceableChannel(WebExtensionPolicy extension, TabParent? tabParent);
|
|
|
|
/**
|
|
* The current HTTP status code of the request. This will be 0 if a response
|
|
* has not yet been received, or if the request is not an HTTP request.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute unsigned long statusCode;
|
|
|
|
/**
|
|
* The HTTP status line for the request (e.g., "HTTP/1.0 200 Success"). This
|
|
* will be an empty string if a response has not yet been received, or if
|
|
* the request is not an HTTP request.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute ByteString statusLine;
|
|
|
|
|
|
/**
|
|
* If the request has failed or been canceled, an opaque string representing
|
|
* the error. For requests that failed at the NSS layer, this is an NSS
|
|
* error message. For requests that failed for any other reason, it is the
|
|
* name of an nsresult error code. For requests which haven't failed, this
|
|
* is null.
|
|
*
|
|
* This string is used in the error message when notifying extension
|
|
* webRequest listeners of failure. The documentation specifically states
|
|
* that this value MUST NOT be parsed, and is only meant to be displayed to
|
|
* humans, but we all know how that works in real life.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute DOMString? errorString;
|
|
|
|
/**
|
|
* Dispatched when the channel is closed with an error status. Check
|
|
* errorString for the error details.
|
|
*/
|
|
attribute EventHandler onerror;
|
|
|
|
/**
|
|
* Checks the request's current status and dispatches an error event if the
|
|
* request has failed and one has not already been dispatched.
|
|
*/
|
|
void errorCheck();
|
|
|
|
|
|
/**
|
|
* Dispatched when the channel begins receiving data.
|
|
*/
|
|
attribute EventHandler onstart;
|
|
|
|
/**
|
|
* Dispatched when the channel has finished receiving data.
|
|
*/
|
|
attribute EventHandler onstop;
|
|
|
|
|
|
/**
|
|
* Information about the proxy server which is handling this request, or
|
|
* null if the request is not proxied.
|
|
*/
|
|
[Cached, Frozen, GetterThrows, Pure]
|
|
readonly attribute MozProxyInfo? proxyInfo;
|
|
|
|
/**
|
|
* For HTTP requests, the IP address of the remote server handling the
|
|
* request. For other request types, returns null.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute ByteString? remoteAddress;
|
|
|
|
|
|
/**
|
|
* The LoadInfo object for this channel, if available. Null for channels
|
|
* without load info, until support for those is removed.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute LoadInfo? loadInfo;
|
|
|
|
/**
|
|
* True if this load was triggered by a system caller. This currently always
|
|
* false if the request has no LoadInfo or is a top-level document load.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute boolean isSystemLoad;
|
|
|
|
/**
|
|
* The URL of the principal that triggered this load. This is equivalent to
|
|
* the LoadInfo's triggeringPrincipal, and will only ever be null for
|
|
* requests without LoadInfo.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute ByteString? originURL;
|
|
|
|
/**
|
|
* The URL of the document loading the content for this request. This is
|
|
* equivalent to the LoadInfo's loadingPrincipal. This may only ever be null
|
|
* for top-level requests and requests without LoadInfo.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute ByteString? documentURL;
|
|
|
|
/**
|
|
* The URI version of originURL. Will be null only when originURL is null.
|
|
*/
|
|
[Pure]
|
|
readonly attribute URI? originURI;
|
|
|
|
/**
|
|
* The URI version of documentURL. Will be null only when documentURL is
|
|
* null.
|
|
*/
|
|
[Pure]
|
|
readonly attribute URI? documentURI;
|
|
|
|
|
|
/**
|
|
* True if extensions may modify this request. This is currently false only
|
|
* if the request belongs to a document which has access to the
|
|
* mozAddonManager API.
|
|
*/
|
|
[Cached, GetterThrows, Pure]
|
|
readonly attribute boolean canModify;
|
|
|
|
|
|
/**
|
|
* The outer window ID of the frame that the request belongs to, or 0 if it
|
|
* is a top-level load or does not belong to a document.
|
|
*/
|
|
[Cached, Constant]
|
|
readonly attribute long long windowId;
|
|
|
|
/**
|
|
* The outer window ID of the parent frame of the window that the request
|
|
* belongs to, 0 if that parent frame is the top-level frame, and -1 if the
|
|
* request belongs to a top-level frame.
|
|
*/
|
|
[Cached, Constant]
|
|
readonly attribute long long parentWindowId;
|
|
|
|
/**
|
|
* For cross-process requests, the <browser> or <iframe> element to which the
|
|
* content loading this request belongs. For requests that don't originate
|
|
* from a remote browser, this is null.
|
|
*/
|
|
[Cached, Pure]
|
|
readonly attribute nsISupports? browserElement;
|
|
|
|
|
|
/**
|
|
* For HTTP requests, returns an array of request headers which will be, or
|
|
* have been, sent with this request.
|
|
*
|
|
* For non-HTTP requests, throws NS_ERROR_UNEXPECTED.
|
|
*/
|
|
[Throws]
|
|
sequence<MozHTTPHeader> getRequestHeaders();
|
|
|
|
/**
|
|
* For HTTP requests, returns an array of response headers which were
|
|
* received for this request, in the same format as returned by
|
|
* getRequestHeaders.
|
|
|
|
* Throws NS_ERROR_NOT_AVAILABLE if a response has not yet been received, or
|
|
* NS_ERROR_UNEXPECTED if the channel is not an HTTP channel.
|
|
*
|
|
* Note: The Content-Type header is handled specially. That header is
|
|
* usually not mutable after the request has been received, and the content
|
|
* type must instead be changed via the contentType attribute. If a caller
|
|
* attempts to set the Content-Type header via setRequestHeader, however,
|
|
* that value is assigned to the contentType attribute and its original
|
|
* string value is cached. That original value is returned in place of the
|
|
* actual Content-Type header.
|
|
*/
|
|
[Throws]
|
|
sequence<MozHTTPHeader> getResponseHeaders();
|
|
|
|
/**
|
|
* Sets the given request header to the given value, overwriting any
|
|
* previous value. Setting a header to a null string has the effect of
|
|
* removing it.
|
|
*
|
|
* For non-HTTP requests, throws NS_ERROR_UNEXPECTED.
|
|
*/
|
|
[Throws]
|
|
void setRequestHeader(ByteString header, ByteString value);
|
|
|
|
/**
|
|
* Sets the given response header to the given value, overwriting any
|
|
* previous value. Setting a header to a null string has the effect of
|
|
* removing it.
|
|
*
|
|
* For non-HTTP requests, throws NS_ERROR_UNEXPECTED.
|
|
*
|
|
* Note: The content type header is handled specially by this function. See
|
|
* getResponseHeaders() for details.
|
|
*/
|
|
[Throws]
|
|
void setResponseHeader(ByteString header, ByteString value);
|
|
};
|
|
|
|
/**
|
|
* Information about the proxy server handing a request. This is approximately
|
|
* equivalent to nsIProxyInfo.
|
|
*/
|
|
dictionary MozProxyInfo {
|
|
/**
|
|
* The hostname of the server.
|
|
*/
|
|
required ByteString host;
|
|
/**
|
|
* The TCP port of the server.
|
|
*/
|
|
required long port;
|
|
/**
|
|
* The type of proxy (e.g., HTTP, SOCKS).
|
|
*/
|
|
required ByteString type;
|
|
|
|
/**
|
|
* True if the proxy is responsible for DNS lookups.
|
|
*/
|
|
required boolean proxyDNS;
|
|
|
|
/**
|
|
* The authentication username for the proxy, if any.
|
|
*/
|
|
ByteString? username = null;
|
|
|
|
/**
|
|
* The timeout, in seconds, before the network stack will failover to the
|
|
* next candidate proxy server if it has not received a response.
|
|
*/
|
|
unsigned long failoverTimeout;
|
|
};
|
|
|
|
/**
|
|
* MozFrameAncestorInfo combines loadInfo::AncestorPrincipals with
|
|
* loadInfo::AncestorOuterWindowIDs for easier access in the WebRequest API.
|
|
*
|
|
* url represents the parent of the loading window.
|
|
* frameId is the outerWindowID for the parent of the loading window.
|
|
*
|
|
* For further details see nsILoadInfo.idl and nsIDocument::AncestorPrincipals.
|
|
*/
|
|
dictionary MozFrameAncestorInfo {
|
|
required ByteString url;
|
|
required unsigned long long frameId;
|
|
};
|
|
|
|
/**
|
|
* Represents an HTTP request or response header.
|
|
*/
|
|
dictionary MozHTTPHeader {
|
|
/**
|
|
* The case-insensitive, non-case-normalized header name.
|
|
*/
|
|
required ByteString name;
|
|
/**
|
|
* The header value.
|
|
*/
|
|
required ByteString value;
|
|
};
|
|
|
|
/**
|
|
* An object used for filtering requests.
|
|
*/
|
|
dictionary MozRequestFilter {
|
|
/**
|
|
* If present, the request only matches if its `type` attribute matches one
|
|
* of the given types.
|
|
*/
|
|
sequence<MozContentPolicyType>? types = null;
|
|
|
|
/**
|
|
* If present, the request only matches if its finalURI matches the given
|
|
* match pattern set.
|
|
*/
|
|
MatchPatternSet? urls = null;
|
|
};
|
|
|
|
dictionary MozRequestMatchOptions {
|
|
/**
|
|
* True if we're matching for the proxy portion of a proxied request.
|
|
*/
|
|
boolean isProxy = false;
|
|
};
|