2007-05-16 03:02:45 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Justin Dolske <dolske@mozilla.com> (original author)
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsIURI;
|
|
|
|
interface nsILoginInfo;
|
|
|
|
interface nsIAutoCompleteResult;
|
|
|
|
interface nsIDOMHTMLInputElement;
|
2008-06-16 12:25:27 -07:00
|
|
|
interface nsIDOMHTMLFormElement;
|
2009-04-17 16:12:46 -07:00
|
|
|
interface nsIPropertyBag;
|
2007-05-16 03:02:45 -07:00
|
|
|
|
2009-04-17 16:12:46 -07:00
|
|
|
[scriptable, uuid(30534ff7-fb95-45c5-8336-5448638f2aa1)]
|
2007-05-16 03:02:45 -07:00
|
|
|
|
|
|
|
interface nsILoginManager : nsISupports {
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Store a new login in the login manager.
|
|
|
|
*
|
|
|
|
* @param aLogin
|
|
|
|
* The login to be added.
|
2009-02-25 23:40:38 -08:00
|
|
|
*
|
|
|
|
* Default values for the login's nsILoginMetaInfo properties will be
|
|
|
|
* created. However, if the caller specifies non-default values, they will
|
|
|
|
* be used instead.
|
2007-07-17 13:48:57 -07:00
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void addLogin(in nsILoginInfo aLogin);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Remove a login from the login manager.
|
|
|
|
*
|
|
|
|
* @param aLogin
|
|
|
|
* The login to be removed.
|
2009-02-25 23:40:38 -08:00
|
|
|
*
|
|
|
|
* The specified login must exactly match a stored login. However, the
|
|
|
|
* values of any nsILoginMetaInfo properties are ignored.
|
2007-07-17 13:48:57 -07:00
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void removeLogin(in nsILoginInfo aLogin);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Modify an existing login in the login manager.
|
|
|
|
*
|
2009-02-25 23:40:38 -08:00
|
|
|
* @param oldLogin
|
2007-07-17 13:48:57 -07:00
|
|
|
* The login to be modified.
|
2009-02-25 23:40:38 -08:00
|
|
|
* @param newLoginData
|
|
|
|
* The new login values (either a nsILoginInfo or nsIProperyBag)
|
|
|
|
*
|
|
|
|
* If newLoginData is a nsILoginInfo, all of the old login's nsILoginInfo
|
|
|
|
* properties are changed to the values from newLoginData (but the old
|
|
|
|
* login's nsILoginMetaInfo properties are unmodified).
|
|
|
|
*
|
|
|
|
* If newLoginData is a nsIPropertyBag, only the specified properties
|
|
|
|
* will be changed. The nsILoginMetaInfo properties of oldLogin can be
|
|
|
|
* changed in this manner.
|
2007-07-17 13:48:57 -07:00
|
|
|
*/
|
2009-02-25 23:40:38 -08:00
|
|
|
void modifyLogin(in nsILoginInfo oldLogin, in nsISupports newLoginData);
|
2007-05-16 03:02:45 -07:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Remove all logins known to login manager.
|
|
|
|
*
|
|
|
|
* The browser sanitization feature allows the user to clear any stored
|
|
|
|
* passwords. This interface allows that to be done without getting each
|
|
|
|
* login first (which might require knowing the master password).
|
|
|
|
*
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void removeAllLogins();
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Fetch all logins in the login manager. An array is always returned;
|
|
|
|
* if there are no logins the array is empty.
|
|
|
|
*
|
|
|
|
* @param count
|
|
|
|
* The number of elements in the array. JS callers can simply use
|
|
|
|
* the array's .length property, and supply an dummy object for
|
|
|
|
* this out param. For example: |getAllLogins({})|
|
|
|
|
* @param logins
|
|
|
|
* An array of nsILoginInfo objects.
|
|
|
|
*
|
|
|
|
* NOTE: This can be called from JS as:
|
|
|
|
* var logins = pwmgr.getAllLogins({});
|
|
|
|
* (|logins| is an array).
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void getAllLogins(out unsigned long count,
|
|
|
|
[retval, array, size_is(count)] out nsILoginInfo logins);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Obtain a list of all hosts for which password saving is disabled.
|
|
|
|
*
|
|
|
|
* @param count
|
|
|
|
* The number of elements in the array. JS callers can simply use
|
|
|
|
* the array's .length property, and supply an dummy object for
|
|
|
|
* this out param. For example: |getAllDisabledHosts({})|
|
|
|
|
* @param hostnames
|
|
|
|
* An array of hostname strings, in origin URL format without a
|
|
|
|
* pathname. For example: "https://www.site.com".
|
|
|
|
*
|
|
|
|
* NOTE: This can be called from JS as:
|
|
|
|
* var logins = pwmgr.getDisabledAllLogins({});
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void getAllDisabledHosts(out unsigned long count,
|
|
|
|
[retval, array, size_is(count)] out wstring hostnames);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Check to see if saving logins has been disabled for a host.
|
|
|
|
*
|
|
|
|
* @param aHost
|
|
|
|
* The hostname to check. This argument should be in the origin
|
|
|
|
* URL format, without a pathname. For example: "http://foo.com".
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
boolean getLoginSavingEnabled(in AString aHost);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Disable (or enable) storing logins for the specified host. When
|
|
|
|
* disabled, the login manager will not prompt to store logins for
|
|
|
|
* that host. Existing logins are not affected.
|
|
|
|
*
|
|
|
|
* @param aHost
|
|
|
|
* The hostname to set. This argument should be in the origin
|
|
|
|
* URL format, without a pathname. For example: "http://foo.com".
|
|
|
|
* @param isEnabled
|
|
|
|
* Specify if saving logins should be enabled (true) or
|
|
|
|
* disabled (false)
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void setLoginSavingEnabled(in AString aHost, in boolean isEnabled);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Search for logins matching the specified criteria. Called when looking
|
|
|
|
* for logins that might be applicable to a form or authentication request.
|
|
|
|
*
|
|
|
|
* @param count
|
|
|
|
* The number of elements in the array. JS callers can simply use
|
|
|
|
* the array's .length property, and supply an dummy object for
|
|
|
|
* this out param. For example: |findLogins({}, hostname, ...)|
|
|
|
|
* @param aHostname
|
2007-12-12 14:42:01 -08:00
|
|
|
* The hostname to restrict searches to, in URL format. For
|
|
|
|
* example: "http://www.site.com".
|
2007-07-17 13:48:57 -07:00
|
|
|
* @param aActionURL
|
|
|
|
* For form logins, this argument should be the URL to which the
|
|
|
|
* form will be submitted. For protocol logins, specify null.
|
|
|
|
* @param aHttpRealm
|
|
|
|
* For protocol logins, this argument should be the HTTP Realm
|
|
|
|
* for which the login applies. This is obtained from the
|
|
|
|
* WWW-Authenticate header. See RFC2617. For form logins,
|
|
|
|
* specify null.
|
|
|
|
* @param logins
|
|
|
|
* An array of nsILoginInfo objects.
|
|
|
|
*
|
|
|
|
* NOTE: This can be called from JS as:
|
|
|
|
* var logins = pwmgr.findLogins({}, hostname, ...);
|
|
|
|
*
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
void findLogins(out unsigned long count, in AString aHostname,
|
|
|
|
in AString aActionURL, in AString aHttpRealm,
|
|
|
|
[retval, array, size_is(count)] out nsILoginInfo logins);
|
|
|
|
|
|
|
|
|
2007-08-23 11:57:42 -07:00
|
|
|
/**
|
|
|
|
* Search for logins matching the specified criteria, as with
|
|
|
|
* findLogins(). This interface only returns the number of matching
|
|
|
|
* logins (and not the logins themselves), which allows a caller to
|
|
|
|
* check for logins without causing the user to be prompted for a master
|
|
|
|
* password to decrypt the logins.
|
|
|
|
*
|
|
|
|
* @param aHostname
|
2007-12-31 19:16:51 -08:00
|
|
|
* The hostname to restrict searches to. Specify an empty string
|
|
|
|
* to match all hosts. A null value will not match any logins, and
|
|
|
|
* will thus always return a count of 0.
|
2007-08-23 11:57:42 -07:00
|
|
|
* @param aActionURL
|
|
|
|
* The URL to which a form login will be submitted. To match any
|
|
|
|
* form login, specify an empty string. To not match any form
|
|
|
|
* login, specify null.
|
|
|
|
* @param aHttpRealm
|
|
|
|
* The HTTP Realm for which the login applies. To match logins for
|
|
|
|
* any realm, specify an empty string. To not match logins for any
|
|
|
|
* realm, specify null.
|
|
|
|
*/
|
|
|
|
unsigned long countLogins(in AString aHostname, in AString aActionURL,
|
|
|
|
in AString aHttpRealm);
|
|
|
|
|
|
|
|
|
2007-05-16 03:02:45 -07:00
|
|
|
/**
|
2007-07-17 13:48:57 -07:00
|
|
|
* Generate results for a userfield autocomplete menu.
|
|
|
|
*
|
|
|
|
* NOTE: This interface is provided for use only by the FormFillController,
|
|
|
|
* which calls it directly. This isn't really ideal, it should
|
|
|
|
* probably be callback registered through the FFC.
|
|
|
|
*/
|
2007-05-16 03:02:45 -07:00
|
|
|
nsIAutoCompleteResult autoCompleteSearch(in AString aSearchString,
|
|
|
|
in nsIAutoCompleteResult aPreviousResult,
|
|
|
|
in nsIDOMHTMLInputElement aElement);
|
2008-06-16 12:25:27 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fill a form with login information if we have it. This method will fill
|
|
|
|
* aForm regardless of the signon.autofillForms preference.
|
|
|
|
*
|
|
|
|
* @param aForm
|
|
|
|
* The form to fill
|
2008-06-26 18:04:49 -07:00
|
|
|
* @return Success of attempt fill form
|
2008-06-16 12:25:27 -07:00
|
|
|
*/
|
2008-06-26 18:04:49 -07:00
|
|
|
boolean fillForm(in nsIDOMHTMLFormElement aForm);
|
2009-04-17 16:12:46 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search for logins in the login manager. An array is always returned;
|
|
|
|
* if there are no logins the array is empty.
|
|
|
|
*
|
|
|
|
* @param count
|
|
|
|
* The number of elements in the array. JS callers can simply use
|
|
|
|
* the array's .length property, and supply an dummy object for
|
|
|
|
* this out param. For example: |searchLogins({}, matchData)|
|
|
|
|
* @param matchData
|
|
|
|
* The data used to search. This does not follow the same
|
|
|
|
* requirements as findLogins for those fields. Wildcard matches are
|
|
|
|
* simply not specified.
|
|
|
|
* @param logins
|
|
|
|
* An array of nsILoginInfo objects.
|
|
|
|
*
|
|
|
|
* NOTE: This can be called from JS as:
|
|
|
|
* var logins = pwmgr.searchLogins({}, matchData);
|
|
|
|
* (|logins| is an array).
|
|
|
|
*/
|
|
|
|
void searchLogins(out unsigned long count, in nsIPropertyBag matchData,
|
|
|
|
[retval, array, size_is(count)] out nsILoginInfo logins);
|
2007-05-16 03:02:45 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
%{C++
|
|
|
|
|
|
|
|
#define NS_LOGINMANAGER_CONTRACTID "@mozilla.org/login-manager;1"
|
|
|
|
|
|
|
|
%}
|