2007-12-10 21:38:53 -08: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 Bookmarks Sync.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Dan Mills <thunder@mozilla.com>
|
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
2008-04-10 21:38:15 -07:00
|
|
|
const EXPORTED_SYMBOLS = ['Identity', 'ID'];
|
2007-12-10 21:38:53 -08:00
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cr = Components.results;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
|
2010-06-16 14:30:08 -07:00
|
|
|
Cu.import("resource://services-sync/constants.js");
|
|
|
|
Cu.import("resource://services-sync/ext/Sync.js");
|
|
|
|
Cu.import("resource://services-sync/log4moz.js");
|
|
|
|
Cu.import("resource://services-sync/util.js");
|
2007-12-10 21:38:53 -08:00
|
|
|
|
2008-04-10 21:38:15 -07:00
|
|
|
Utils.lazy(this, 'ID', IDManager);
|
|
|
|
|
|
|
|
// For storing identities we'll use throughout Weave
|
|
|
|
function IDManager() {
|
|
|
|
this._ids = {};
|
|
|
|
}
|
|
|
|
IDManager.prototype = {
|
|
|
|
get: function IDMgr_get(name) {
|
2008-06-19 16:03:42 -07:00
|
|
|
if (name in this._ids)
|
2008-06-17 19:54:09 -07:00
|
|
|
return this._ids[name];
|
2008-06-19 16:03:42 -07:00
|
|
|
return null;
|
2008-04-10 21:38:15 -07:00
|
|
|
},
|
|
|
|
set: function IDMgr_set(name, id) {
|
|
|
|
this._ids[name] = id;
|
2008-06-01 19:10:11 -07:00
|
|
|
return id;
|
2008-04-10 21:38:15 -07:00
|
|
|
},
|
|
|
|
del: function IDMgr_del(name) {
|
|
|
|
delete this._ids[name];
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2007-12-10 21:38:53 -08:00
|
|
|
/*
|
|
|
|
* Identity
|
|
|
|
* These objects hold a realm, username, and password
|
|
|
|
* They can hold a password in memory, but will try to fetch it from
|
|
|
|
* the password manager if it's not set.
|
|
|
|
* FIXME: need to rethink this stuff as part of a bigger identity mgmt framework
|
|
|
|
*/
|
|
|
|
|
|
|
|
function Identity(realm, username, password) {
|
2009-09-03 21:11:32 -07:00
|
|
|
this.realm = realm;
|
|
|
|
this.username = username;
|
2007-12-10 21:38:53 -08:00
|
|
|
this._password = password;
|
2010-07-03 11:13:40 -07:00
|
|
|
if (password)
|
|
|
|
this._passwordUTF8 = Utils.encodeUTF8(password);
|
2007-12-10 21:38:53 -08:00
|
|
|
}
|
|
|
|
Identity.prototype = {
|
2010-04-26 11:37:12 -07:00
|
|
|
get password() {
|
2009-09-03 21:11:32 -07:00
|
|
|
// Look up the password then cache it
|
|
|
|
if (this._password == null)
|
|
|
|
for each (let login in this._logins)
|
2010-07-03 11:13:40 -07:00
|
|
|
if (login.username.toLowerCase() == this.username) {
|
2009-09-03 21:11:32 -07:00
|
|
|
this._password = login.password;
|
2010-07-03 11:13:40 -07:00
|
|
|
this._passwordUTF8 = Utils.encodeUTF8(login.password);
|
|
|
|
}
|
2009-09-03 21:11:32 -07:00
|
|
|
return this._password;
|
2008-12-01 20:01:41 -08:00
|
|
|
},
|
|
|
|
|
2010-07-03 11:13:40 -07:00
|
|
|
set password(value) {
|
|
|
|
this._password = value;
|
|
|
|
this._passwordUTF8 = Utils.encodeUTF8(value);
|
|
|
|
},
|
|
|
|
|
|
|
|
get passwordUTF8() {
|
|
|
|
if (!this._passwordUTF8)
|
|
|
|
this.password; // invoke password getter
|
|
|
|
return this._passwordUTF8;
|
|
|
|
},
|
2007-12-10 21:38:53 -08:00
|
|
|
|
2009-09-03 21:11:32 -07:00
|
|
|
persist: function persist() {
|
|
|
|
// Clean up any existing passwords unless it's what we're persisting
|
|
|
|
let exists = false;
|
|
|
|
for each (let login in this._logins) {
|
|
|
|
if (login.username == this.username && login.password == this._password)
|
|
|
|
exists = true;
|
|
|
|
else
|
|
|
|
Svc.Login.removeLogin(login);
|
|
|
|
}
|
2008-03-07 01:56:36 -08:00
|
|
|
|
2009-09-03 21:11:32 -07:00
|
|
|
// No need to create the login after clearing out the other ones
|
|
|
|
let log = Log4Moz.repository.getLogger("Identity");
|
|
|
|
if (exists) {
|
|
|
|
log.trace("Skipping persist: " + this.realm + " for " + this.username);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the new username/password
|
|
|
|
log.trace("Persisting " + this.realm + " for " + this.username);
|
|
|
|
let nsLoginInfo = new Components.Constructor(
|
|
|
|
"@mozilla.org/login-manager/loginInfo;1", Ci.nsILoginInfo, "init");
|
2009-09-15 18:54:05 -07:00
|
|
|
let newLogin = new nsLoginInfo(PWDMGR_HOST, null, this.realm,
|
2009-09-03 21:11:32 -07:00
|
|
|
this.username, this.password, "", "");
|
2009-09-15 18:54:05 -07:00
|
|
|
Svc.Login.addLogin(newLogin);
|
2007-12-10 21:38:53 -08:00
|
|
|
},
|
|
|
|
|
2010-04-26 11:37:12 -07:00
|
|
|
get _logins() Svc.Login.findLogins({}, PWDMGR_HOST, null, this.realm)
|
2007-12-10 21:38:53 -08:00
|
|
|
};
|