2002-01-31 00:29:19 +00:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-05-21 11:12:37 +00:00
/* 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/. */
2002-01-31 00:29:19 +00:00
#include "nsISupports.idl"
2003-05-05 21:27:02 +00:00
interface nsIURI;
interface nsIPrompt;
interface nsIChannel;
2002-01-31 00:29:19 +00:00
2003-05-05 21:27:02 +00:00
/**
* nsICookieService
*
* Provides methods for setting and getting cookies in the context of a
* page load. See nsICookieManager for methods to manipulate the cookie
* database directly. This separation of interface is mainly historical.
2003-10-22 06:53:19 +00:00
*
2010-11-12 17:32:35 +00:00
* This service broadcasts the notifications detailed below when the cookie
* list is changed, or a cookie is rejected.
*
* NOTE: observers of these notifications *must* not attempt to change profile
* or switch into or out of private browsing mode from within the
* observer. Doing so will cause undefined behavior. Mutating the cookie
* list (e.g. by calling methods on nsICookieService and friends) is
* allowed, but beware that there may be pending notifications you haven't
* seen yet -- for instance, a "batch-deleted" notification will likely be
* immediately followed by "added". You may check the state of the cookie
* list to determine if this is the case.
2003-10-22 06:53:19 +00:00
*
* topic : "cookie-changed"
2009-12-15 22:21:28 +00:00
* broadcast whenever the cookie list changes in some way. see
* explanation of data strings below.
* subject: see below.
2003-10-22 06:53:19 +00:00
* data : "deleted"
2009-12-15 22:21:28 +00:00
* a cookie was deleted. the subject is an nsICookie2 representing
* the deleted cookie.
2003-10-22 06:53:19 +00:00
* "added"
2009-12-15 22:21:28 +00:00
* a cookie was added. the subject is an nsICookie2 representing
* the added cookie.
2003-10-22 06:53:19 +00:00
* "changed"
2009-12-15 22:21:28 +00:00
* a cookie was changed. the subject is an nsICookie2 representing
* the new cookie. (note that host, path, and name are invariant
* for a given cookie; other parameters may change.)
* "batch-deleted"
2010-11-02 07:06:54 +00:00
* a set of cookies was purged (typically, because they have either
* expired or because the cookie list has grown too large). The subject
* is an nsIArray of nsICookie2's representing the deleted cookies.
* Note that the array could contain a single cookie.
2003-10-22 06:53:19 +00:00
* "cleared"
* the entire cookie list was cleared. the subject is null.
2008-10-19 21:12:53 +00:00
* "reload"
* the entire cookie list should be reloaded. the subject is null.
2003-10-22 06:53:19 +00:00
*
* topic : "cookie-rejected"
* broadcast whenever a cookie was rejected from being set as a
* result of user prefs.
* subject: an nsIURI interface pointer representing the URI that attempted
* to set the cookie.
* data : none.
2013-06-22 05:11:12 +00:00
*
* topic : "third-party-cookie-accepted"
* broadcast whenever a third party cookie was accepted
* subject: an nsIURI interface pointer representing the URI that attempted
* to set the cookie.
* data : the referrer, or "?" if unknown
*
* topic : "third-party-cookie-rejected"
* broadcast whenever a third party cookie was rejected
* subject: an nsIURI interface pointer representing the URI that attempted
* to set the cookie.
* data : the referrer, or "?" if unknown
2003-05-05 21:27:02 +00:00
*/
2007-06-21 05:17:08 +00:00
[scriptable, uuid(2aaa897a-293c-4d2b-a657-8c9b7136996d)]
2002-01-31 00:29:19 +00:00
interface nsICookieService : nsISupports
{
/*
2003-05-05 21:27:02 +00:00
* Get the complete cookie string associated with the URI.
2002-01-31 00:29:19 +00:00
*
2003-05-05 21:27:02 +00:00
* @param aURI
2010-09-16 20:21:12 +00:00
* The URI of the document for which cookies are being queried.
* file:// URIs (i.e. with an empty host) are allowed, but any other
2010-01-12 18:29:20 +00:00
* scheme must have a non-empty host. A trailing dot in the host
2010-09-16 20:21:12 +00:00
* is acceptable, and will be stripped. This argument must not be null.
2003-05-05 21:27:02 +00:00
* @param aChannel
2009-12-15 00:24:44 +00:00
* the channel used to load the document. this parameter should not
* be null, otherwise the cookies will not be returned if third-party
* cookies have been disabled by the user. (the channel is used
* to determine the originating URI of the document; if it is not
* provided, the cookies will be assumed third-party.)
2003-05-05 21:27:02 +00:00
*
* @return the resulting cookie string
2002-01-31 00:29:19 +00:00
*/
2003-05-05 21:27:02 +00:00
string getCookieString(in nsIURI aURI, in nsIChannel aChannel);
2002-01-31 00:29:19 +00:00
/*
2003-05-05 21:27:02 +00:00
* Get the complete cookie string associated with the URI.
*
2007-03-14 17:22:01 +00:00
* This function is NOT redundant with getCookieString, as the result
* will be different based on httponly (see bug 178993)
2002-01-31 00:29:19 +00:00
*
2003-05-05 21:27:02 +00:00
* @param aURI
2010-09-16 20:21:12 +00:00
* The URI of the document for which cookies are being queried.
* file:// URIs (i.e. with an empty host) are allowed, but any other
2010-01-12 18:29:20 +00:00
* scheme must have a non-empty host. A trailing dot in the host
2010-09-16 20:21:12 +00:00
* is acceptable, and will be stripped. This argument must not be null.
2003-05-05 21:27:02 +00:00
* @param aFirstURI
* the URI that the user originally typed in or clicked on to initiate
* the load of the document referenced by aURI.
* @param aChannel
2009-12-15 00:24:44 +00:00
* the channel used to load the document. this parameter should not
* be null, otherwise the cookies will not be returned if third-party
* cookies have been disabled by the user. (the channel is used
* to determine the originating URI of the document; if it is not
* provided, the cookies will be assumed third-party.)
2003-05-05 21:27:02 +00:00
*
* @return the resulting cookie string
2002-01-31 00:29:19 +00:00
*/
2003-05-05 21:27:02 +00:00
string getCookieStringFromHttp(in nsIURI aURI, in nsIURI aFirstURI, in nsIChannel aChannel);
2002-01-31 00:29:19 +00:00
/*
2003-05-05 21:27:02 +00:00
* Set the cookie string associated with the URI.
*
* @param aURI
2010-09-16 20:21:12 +00:00
* The URI of the document for which cookies are being queried.
* file:// URIs (i.e. with an empty host) are allowed, but any other
2010-01-12 18:29:20 +00:00
* scheme must have a non-empty host. A trailing dot in the host
2010-09-16 20:21:12 +00:00
* is acceptable, and will be stripped. This argument must not be null.
2003-05-05 21:27:02 +00:00
* @param aPrompt
2010-09-16 20:21:12 +00:00
* the prompt to use for all user-level cookie notifications. This is
* presently ignored and can be null. (Prompt information is determined
* from the channel if necessary.)
2003-05-05 21:27:02 +00:00
* @param aCookie
* the cookie string to set.
* @param aChannel
2009-12-15 00:24:44 +00:00
* the channel used to load the document. this parameter should not
* be null, otherwise the cookies will not be set if third-party
* cookies have been disabled by the user. (the channel is used
* to determine the originating URI of the document; if it is not
* provided, the cookies will be assumed third-party.)
2002-01-31 00:29:19 +00:00
*/
2003-05-05 21:27:02 +00:00
void setCookieString(in nsIURI aURI, in nsIPrompt aPrompt, in string aCookie, in nsIChannel aChannel);
2002-01-31 00:29:19 +00:00
/*
2003-05-05 21:27:02 +00:00
* Set the cookie string and expires associated with the URI.
2002-01-31 00:29:19 +00:00
*
2007-03-14 17:22:01 +00:00
* This function is NOT redundant with setCookieString, as the result
* will be different based on httponly (see bug 178993)
2003-05-05 21:27:02 +00:00
*
* @param aURI
2010-09-16 20:21:12 +00:00
* The URI of the document for which cookies are being queried.
* file:// URIs (i.e. with an empty host) are allowed, but any other
2010-01-12 18:29:20 +00:00
* scheme must have a non-empty host. A trailing dot in the host
2010-09-16 20:21:12 +00:00
* is acceptable, and will be stripped. This argument must not be null.
2003-05-05 21:27:02 +00:00
* @param aFirstURI
* the URI that the user originally typed in or clicked on to initiate
* the load of the document referenced by aURI.
* @param aPrompt
2010-09-16 20:21:12 +00:00
* the prompt to use for all user-level cookie notifications. This is
* presently ignored and can be null. (Prompt information is determined
* from the channel if necessary.)
2003-05-05 21:27:02 +00:00
* @param aCookie
* the cookie string to set.
* @param aServerTime
2010-09-16 20:21:12 +00:00
* the current time reported by the server, if available. This should
* be the string from the Date header in an HTTP response. If the
* string is empty or null, server time is assumed to be the current
* local time. If provided, it will be used to calculate the expiry
* time of the cookie relative to the server's local time.
2003-05-05 21:27:02 +00:00
* @param aChannel
2009-12-15 00:24:44 +00:00
* the channel used to load the document. this parameter should not
* be null, otherwise the cookies will not be set if third-party
* cookies have been disabled by the user. (the channel is used
* to determine the originating URI of the document; if it is not
* provided, the cookies will be assumed third-party.)
2002-01-31 00:29:19 +00:00
*/
2003-05-05 21:27:02 +00:00
void setCookieStringFromHttp(in nsIURI aURI, in nsIURI aFirstURI, in nsIPrompt aPrompt, in string aCookie, in string aServerTime, in nsIChannel aChannel);
2002-01-31 00:29:19 +00:00
};