/firefox-14.0.1/mozilla-release/mobile/android/base/sync/repositories/domain/PasswordRecord.java

# · Java · 184 lines · 145 code · 23 blank · 16 comment · 27 complexity · 61c628592601828dcc9aa8056c4d2bd7 MD5 · raw file

  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this file,
  3. * You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. package org.mozilla.gecko.sync.repositories.domain;
  5. import org.mozilla.gecko.sync.ExtendedJSONObject;
  6. import org.mozilla.gecko.sync.Logger;
  7. import org.mozilla.gecko.sync.Utils;
  8. import org.mozilla.gecko.sync.repositories.android.RepoUtils;
  9. public class PasswordRecord extends Record {
  10. private static final String LOG_TAG = "PasswordRecord";
  11. public static final String COLLECTION_NAME = "passwords";
  12. public static long PASSWORDS_TTL = -1; // Never expire passwords.
  13. // Payload strings.
  14. public static final String PAYLOAD_HOSTNAME = "hostname";
  15. public static final String PAYLOAD_FORM_SUBMIT_URL = "formSubmitURL";
  16. public static final String PAYLOAD_HTTP_REALM = "httpRealm";
  17. public static final String PAYLOAD_USERNAME = "username";
  18. public static final String PAYLOAD_PASSWORD = "password";
  19. public static final String PAYLOAD_USERNAME_FIELD = "usernameField";
  20. public static final String PAYLOAD_PASSWORD_FIELD = "passwordField";
  21. public PasswordRecord(String guid, String collection, long lastModified, boolean deleted) {
  22. super(guid, collection, lastModified, deleted);
  23. this.ttl = PASSWORDS_TTL;
  24. }
  25. public PasswordRecord(String guid, String collection, long lastModified) {
  26. this(guid, collection, lastModified, false);
  27. }
  28. public PasswordRecord(String guid, String collection) {
  29. this(guid, collection, 0, false);
  30. }
  31. public PasswordRecord(String guid) {
  32. this(guid, COLLECTION_NAME, 0, false);
  33. }
  34. public PasswordRecord() {
  35. this(Utils.generateGuid(), COLLECTION_NAME, 0, false);
  36. }
  37. public String id;
  38. public String hostname;
  39. public String formSubmitURL;
  40. public String httpRealm;
  41. // TODO these are encrypted in the passwords content provider,
  42. // need to figure out what we need to do here.
  43. public String usernameField;
  44. public String passwordField;
  45. public String encryptedUsername;
  46. public String encryptedPassword;
  47. public String encType;
  48. public long timeCreated;
  49. public long timeLastUsed;
  50. public long timePasswordChanged;
  51. public long timesUsed;
  52. @Override
  53. public Record copyWithIDs(String guid, long androidID) {
  54. PasswordRecord out = new PasswordRecord(guid, this.collection, this.lastModified, this.deleted);
  55. out.androidID = androidID;
  56. out.sortIndex = this.sortIndex;
  57. out.ttl = this.ttl;
  58. // Copy PasswordRecord fields.
  59. out.id = this.id;
  60. out.hostname = this.hostname;
  61. out.formSubmitURL = this.formSubmitURL;
  62. out.httpRealm = this.httpRealm;
  63. out.usernameField = this.usernameField;
  64. out.passwordField = this.passwordField;
  65. out.encryptedUsername = this.encryptedUsername;
  66. out.encryptedPassword = this.encryptedPassword;
  67. out.encType = this.encType;
  68. out.timeCreated = this.timeCreated;
  69. out.timeLastUsed = this.timeLastUsed;
  70. out.timePasswordChanged = this.timePasswordChanged;
  71. out.timesUsed = this.timesUsed;
  72. return out;
  73. }
  74. @Override
  75. public void initFromPayload(ExtendedJSONObject payload) {
  76. this.hostname = payload.getString(PAYLOAD_HOSTNAME);
  77. this.formSubmitURL = payload.getString(PAYLOAD_FORM_SUBMIT_URL);
  78. this.httpRealm = payload.getString(PAYLOAD_HTTP_REALM);
  79. this.encryptedUsername = payload.getString(PAYLOAD_USERNAME);
  80. this.encryptedPassword = payload.getString(PAYLOAD_PASSWORD);
  81. this.usernameField = payload.getString(PAYLOAD_USERNAME_FIELD);
  82. this.passwordField = payload.getString(PAYLOAD_PASSWORD_FIELD);
  83. }
  84. @Override
  85. public void populatePayload(ExtendedJSONObject payload) {
  86. putPayload(payload, PAYLOAD_HOSTNAME, this.hostname);
  87. putPayload(payload, PAYLOAD_FORM_SUBMIT_URL, this.formSubmitURL);
  88. putPayload(payload, PAYLOAD_HTTP_REALM, this.httpRealm);
  89. putPayload(payload, PAYLOAD_USERNAME, this.encryptedUsername);
  90. putPayload(payload, PAYLOAD_PASSWORD, this.encryptedPassword);
  91. putPayload(payload, PAYLOAD_USERNAME_FIELD, this.usernameField);
  92. putPayload(payload, PAYLOAD_PASSWORD_FIELD, this.passwordField);
  93. }
  94. @Override
  95. public boolean congruentWith(Object o) {
  96. if (o == null || !(o instanceof PasswordRecord)) {
  97. return false;
  98. }
  99. PasswordRecord other = (PasswordRecord) o;
  100. if (!super.congruentWith(other)) {
  101. return false;
  102. }
  103. return RepoUtils.stringsEqual(this.hostname, other.hostname)
  104. && RepoUtils.stringsEqual(this.formSubmitURL, other.formSubmitURL)
  105. // Bug 738347 - SQLiteBridge does not check for nulls in ContentValues.
  106. // && RepoUtils.stringsEqual(this.httpRealm, other.httpRealm)
  107. // && RepoUtils.stringsEqual(this.encType, other.encType)
  108. && RepoUtils.stringsEqual(this.usernameField, other.usernameField)
  109. && RepoUtils.stringsEqual(this.passwordField, other.passwordField)
  110. && RepoUtils.stringsEqual(this.encryptedUsername, other.encryptedUsername)
  111. && RepoUtils.stringsEqual(this.encryptedPassword, other.encryptedPassword);
  112. }
  113. @Override
  114. public boolean equalPayloads(Object o) {
  115. if (o == null || !(o instanceof PasswordRecord)) {
  116. return false;
  117. }
  118. PasswordRecord other = (PasswordRecord) o;
  119. Logger.debug("PasswordRecord", "thisRecord:" + this.toString());
  120. Logger.debug("PasswordRecord", "otherRecord:" + o.toString());
  121. if (this.deleted) {
  122. if (other.deleted) {
  123. // Deleted records are equal if their guids match.
  124. return RepoUtils.stringsEqual(this.guid, other.guid);
  125. }
  126. // One record is deleted, the other is not. Not equal.
  127. return false;
  128. }
  129. if (!super.equalPayloads(other)) {
  130. Logger.debug(LOG_TAG, "super.equalPayloads returned false.");
  131. return false;
  132. }
  133. return RepoUtils.stringsEqual(this.hostname, other.hostname)
  134. && RepoUtils.stringsEqual(this.formSubmitURL, other.formSubmitURL)
  135. // Bug 738347 - SQLiteBridge does not check for nulls in ContentValues.
  136. // && RepoUtils.stringsEqual(this.httpRealm, other.httpRealm)
  137. // && RepoUtils.stringsEqual(this.encType, other.encType)
  138. && RepoUtils.stringsEqual(this.usernameField, other.usernameField)
  139. && RepoUtils.stringsEqual(this.passwordField, other.passwordField)
  140. && RepoUtils.stringsEqual(this.encryptedUsername, other.encryptedUsername)
  141. && RepoUtils.stringsEqual(this.encryptedPassword, other.encryptedPassword);
  142. // Desktop sync never sets timeCreated so this isn't relevant for sync records.
  143. }
  144. @Override
  145. public String toString() {
  146. return "PasswordRecord {"
  147. + "lastModified: " + this.lastModified + ", "
  148. + "hostname null?: " + (this.hostname == null) + ", "
  149. + "formSubmitURL null?: " + (this.formSubmitURL == null) + ", "
  150. + "httpRealm null?: " + (this.httpRealm == null) + ", "
  151. + "usernameField null?: " + (this.usernameField == null) + ", "
  152. + "passwordField null?: " + (this.passwordField == null) + ", "
  153. + "encryptedUsername null?: " + (this.encryptedUsername == null) + ", "
  154. + "encryptedPassword null?: " + (this.encryptedPassword == null) + ", "
  155. + "encType: " + this.encType + ", "
  156. + "timeCreated: " + this.timeCreated + ", "
  157. + "timeLastUsed: " + this.timeLastUsed + ", "
  158. + "timePasswordChanged: " + this.timePasswordChanged + ", "
  159. + "timesUsed: " + this.timesUsed;
  160. }
  161. }