/* 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 RemoteTab; 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", "xslt", "ping", "beacon", "xml_dtd", "font", "media", "websocket", "csp_report", "imageset", "web_manifest", "speculative", "other" }; /** * String versions of CLASSIFIED_* tracking flags from nsIClassifiedChannel.idl */ enum MozUrlClassificationFlags { "fingerprinting", "fingerprinting_content", "cryptomining", "cryptomining_content", "emailtracking", "emailtracking_content", "tracking", "tracking_ad", "tracking_analytics", "tracking_social", "tracking_content", "socialtracking", "socialtracking_facebook", "socialtracking_linkedin", "socialtracking_twitter", "any_basic_tracking", "any_strict_tracking", "any_social_tracking" }; /** * A thin wrapper around nsIChannel and nsIHttpChannel that allows JS * callers to access them without XPConnect overhead. */ [ChromeOnly, Exposed=Window] 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); /** * Returns the wrapper instance for the given channel. The same wrapper is * always returned for a given channel. */ static ChannelWrapper? getRegisteredChannel(unsigned long long aChannelId, WebExtensionPolicy extension, RemoteTab? remoteTab); /** * 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. * * The optional reason parameter should be one of the BLOCKING_REASON * constants from nsILoadInfo.idl */ [Throws] undefined cancel(unsigned long result, optional unsigned long reason = 0); /** * 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] undefined redirectTo(URI url); /** * Requests an upgrade of the HTTP channel to a secure request. For other channel * types, this method will throw. The redirect is an internal redirect, and * the behavior is the same as nsIHttpChannel.upgradeToSecure. Setting this * flag is only effective during the WebRequest.onBeforeRequest in * Web Extensions, calling this at any other point during the request will * have no effect. Setting this flag in addition to calling redirectTo * results in the redirect happening rather than the upgrade request. */ [Throws] undefined upgradeToSecure(); /** * Suspends the underlying channel. The profilerText parameter is only used * to annotate profiles. */ [Throws] undefined suspend(ByteString profileMarkerText); /** * Resumes (un-suspends) the underlying channel. */ [Throws] undefined resume(); /** * 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] readonly 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 RemoteTab. */ undefined registerTraceableChannel(WebExtensionPolicy extension, RemoteTab? remoteTab); /** * 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. */ undefined 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 for a service worker script (either a main script or import scripts). */ [Cached, Pure] readonly attribute boolean isServiceWorkerScript; /** * 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 BrowsingContext 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 frameId; /** * The BrowsingContext 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 parentFrameId; /** * For cross-process requests, the or