mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
f1ac5a1511
--HG-- extra : commitid : Hs3v2ZS2TO3
114 lines
3.5 KiB
JavaScript
114 lines
3.5 KiB
JavaScript
/* 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/. */
|
|
|
|
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
function nsLoginInfo() {}
|
|
|
|
nsLoginInfo.prototype = {
|
|
|
|
classID : Components.ID("{0f2f347c-1e4f-40cc-8efd-792dea70a85e}"),
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsILoginInfo, Ci.nsILoginMetaInfo]),
|
|
|
|
//
|
|
// nsILoginInfo interfaces...
|
|
//
|
|
|
|
hostname : null,
|
|
formSubmitURL : null,
|
|
httpRealm : null,
|
|
username : null,
|
|
password : null,
|
|
usernameField : null,
|
|
passwordField : null,
|
|
|
|
init : function (aHostname, aFormSubmitURL, aHttpRealm,
|
|
aUsername, aPassword,
|
|
aUsernameField, aPasswordField) {
|
|
this.hostname = aHostname;
|
|
this.formSubmitURL = aFormSubmitURL;
|
|
this.httpRealm = aHttpRealm;
|
|
this.username = aUsername;
|
|
this.password = aPassword;
|
|
this.usernameField = aUsernameField;
|
|
this.passwordField = aPasswordField;
|
|
},
|
|
|
|
matches(aLogin, ignorePassword) {
|
|
if (this.hostname != aLogin.hostname ||
|
|
this.httpRealm != aLogin.httpRealm ||
|
|
this.username != aLogin.username)
|
|
return false;
|
|
|
|
if (!ignorePassword && this.password != aLogin.password)
|
|
return false;
|
|
|
|
// If either formSubmitURL is blank (but not null), then match.
|
|
if (this.formSubmitURL != "" && aLogin.formSubmitURL != "" &&
|
|
this.formSubmitURL != aLogin.formSubmitURL) {
|
|
// If we have the same formSubmitURL hostPort we should match (ignore scheme)
|
|
try {
|
|
let loginURI = Services.io.newURI(aLogin.formSubmitURL, null, null);
|
|
let matchURI = Services.io.newURI(this.formSubmitURL, null, null);
|
|
if (loginURI.hostPort != matchURI.hostPort) {
|
|
return false;
|
|
}
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// The .usernameField and .passwordField values are ignored.
|
|
|
|
return true;
|
|
},
|
|
|
|
equals : function (aLogin) {
|
|
if (this.hostname != aLogin.hostname ||
|
|
this.formSubmitURL != aLogin.formSubmitURL ||
|
|
this.httpRealm != aLogin.httpRealm ||
|
|
this.username != aLogin.username ||
|
|
this.password != aLogin.password ||
|
|
this.usernameField != aLogin.usernameField ||
|
|
this.passwordField != aLogin.passwordField)
|
|
return false;
|
|
|
|
return true;
|
|
},
|
|
|
|
clone : function() {
|
|
let clone = Cc["@mozilla.org/login-manager/loginInfo;1"].
|
|
createInstance(Ci.nsILoginInfo);
|
|
clone.init(this.hostname, this.formSubmitURL, this.httpRealm,
|
|
this.username, this.password,
|
|
this.usernameField, this.passwordField);
|
|
|
|
// Copy nsILoginMetaInfo props
|
|
clone.QueryInterface(Ci.nsILoginMetaInfo);
|
|
clone.guid = this.guid;
|
|
clone.timeCreated = this.timeCreated;
|
|
clone.timeLastUsed = this.timeLastUsed;
|
|
clone.timePasswordChanged = this.timePasswordChanged;
|
|
clone.timesUsed = this.timesUsed;
|
|
|
|
return clone;
|
|
},
|
|
|
|
//
|
|
// nsILoginMetaInfo interfaces...
|
|
//
|
|
|
|
guid : null,
|
|
timeCreated : null,
|
|
timeLastUsed : null,
|
|
timePasswordChanged : null,
|
|
timesUsed : null
|
|
|
|
}; // end of nsLoginInfo implementation
|
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([nsLoginInfo]);
|