/connector/src/main/java/net/magja/model/customer/Customer.java

http://github.com/magja/magja · Java · 408 lines · 258 code · 49 blank · 101 comment · 120 complexity · a6a47e3c3e4bd9e4012bd46fa0a3b73b MD5 · raw file

  1. /**
  2. * @author andre
  3. *
  4. */
  5. package net.magja.model.customer;
  6. import net.magja.model.BaseMagentoModel;
  7. import net.magja.utils.MagjaStringUtils;
  8. import java.util.LinkedList;
  9. import java.util.List;
  10. import java.util.Map;
  11. public class Customer extends BaseMagentoModel {
  12. private static final long serialVersionUID = 7260666195808816927L;
  13. public enum Gender {
  14. MALE(1), FEMALE(2);
  15. private final Integer value;
  16. private Gender(Integer value) {
  17. this.value = value;
  18. }
  19. public Integer getValue() {
  20. return value;
  21. }
  22. }
  23. private String prefix;
  24. private String firstName;
  25. private String middleName;
  26. private String lastName;
  27. private String suffix;
  28. private String email;
  29. private String password;
  30. private String passwordHash;
  31. private Integer storeId;
  32. private Integer websiteId;
  33. private Integer groupId;
  34. private Gender gender;
  35. private String createdAt;
  36. public static Customer fromAttributes(Map<String, Object> attrs) {
  37. if (attrs.get("customer_id") != null) {
  38. Customer customer = new Customer();
  39. customer.setId(new Integer((String) attrs.get("customer_id")));
  40. if (attrs.get("customer_email") != null) {
  41. customer.setEmail((String) attrs.get("customer_email"));
  42. }
  43. if (attrs.get("customer_prefix") != null) {
  44. customer.setPrefix((String) attrs.get("customer_prefix"));
  45. }
  46. if (attrs.get("customer_firstname") != null) {
  47. customer.setFirstName((String) attrs.get("customer_firstname"));
  48. }
  49. if (attrs.get("customer_middlename") != null) {
  50. customer.setMiddleName((String) attrs.get("customer_middlename"));
  51. }
  52. if (attrs.get("customer_lastname") != null) {
  53. customer.setLastName((String) attrs.get("customer_lastname"));
  54. }
  55. if (attrs.get("customer_lastname") != null) {
  56. customer.setLastName((String) attrs.get("customer_lastname"));
  57. }
  58. if (attrs.get("customer_group_id") != null) {
  59. customer.setGroupId(new Integer((String) attrs.get("customer_group_id")));
  60. }
  61. if (attrs.get("customer_gender") != null) {
  62. Integer gender = new Integer((String) attrs.get("customer_gender"));
  63. customer.setGender(gender.equals(new Integer(1)) ? Gender.MALE : Gender.FEMALE);
  64. }
  65. return customer;
  66. }
  67. return null;
  68. }
  69. @Override
  70. public Object serializeToApi() {
  71. Map<String, Object> props = getAllProperties();
  72. props.remove("customer_id");
  73. if (gender != null)
  74. props.put("gender", gender.getValue());
  75. if (password != null)
  76. props.put("password_hash", MagjaStringUtils.getMd5Hash(password));
  77. List<Object> params = new LinkedList<Object>();
  78. // if its a update, put the customer id
  79. if (id != null)
  80. params.add(id);
  81. params.add(props);
  82. return params;
  83. }
  84. /**
  85. * @return the prefix
  86. */
  87. public String getPrefix() {
  88. return prefix;
  89. }
  90. /**
  91. * @param prefix
  92. * the prefix to set
  93. */
  94. public void setPrefix(String prefix) {
  95. this.prefix = prefix;
  96. }
  97. /**
  98. * @return the firstName
  99. */
  100. public String getFirstName() {
  101. return firstName;
  102. }
  103. /**
  104. * @param firstName
  105. * the firstName to set
  106. */
  107. public void setFirstName(String firstName) {
  108. this.firstName = firstName;
  109. }
  110. /**
  111. * @return the middleName
  112. */
  113. public String getMiddleName() {
  114. return middleName;
  115. }
  116. /**
  117. * @param middleName
  118. * the middleName to set
  119. */
  120. public void setMiddleName(String middleName) {
  121. this.middleName = middleName;
  122. }
  123. /**
  124. * @return the lastName
  125. */
  126. public String getLastName() {
  127. return lastName;
  128. }
  129. /**
  130. * @param lastName
  131. * the lastName to set
  132. */
  133. public void setLastName(String lastName) {
  134. this.lastName = lastName;
  135. }
  136. /**
  137. * @return the suffix
  138. */
  139. public String getSuffix() {
  140. return suffix;
  141. }
  142. /**
  143. * @param suffix
  144. * the suffix to set
  145. */
  146. public void setSuffix(String suffix) {
  147. this.suffix = suffix;
  148. }
  149. /**
  150. * @return the email
  151. */
  152. public String getEmail() {
  153. return email;
  154. }
  155. /**
  156. * @param email
  157. * the email to set
  158. */
  159. public void setEmail(String email) {
  160. this.email = email;
  161. }
  162. /**
  163. * @return the passwordHash
  164. */
  165. public String getPasswordHash() {
  166. return passwordHash;
  167. }
  168. /**
  169. * @param passwordHash
  170. * the passwordHash to set
  171. */
  172. public void setPasswordHash(String passwordHash) {
  173. this.passwordHash = passwordHash;
  174. }
  175. /**
  176. * @return the storeId
  177. */
  178. public Integer getStoreId() {
  179. return storeId;
  180. }
  181. /**
  182. * @param storeId
  183. * the storeId to set
  184. */
  185. public void setStoreId(Integer storeId) {
  186. this.storeId = storeId;
  187. }
  188. /**
  189. * @return the websiteId
  190. */
  191. public Integer getWebsiteId() {
  192. return websiteId;
  193. }
  194. /**
  195. * @param websiteId
  196. * the websiteId to set
  197. */
  198. public void setWebsiteId(Integer websiteId) {
  199. this.websiteId = websiteId;
  200. }
  201. /**
  202. * @return the groupId
  203. */
  204. public Integer getGroupId() {
  205. return groupId;
  206. }
  207. /**
  208. * @param groupId
  209. * the groupId to set
  210. */
  211. public void setGroupId(Integer groupId) {
  212. this.groupId = groupId;
  213. }
  214. /**
  215. * @return the password
  216. */
  217. public String getPassword() {
  218. return password;
  219. }
  220. /**
  221. * @param password
  222. * the password to set
  223. */
  224. public void setPassword(String password) {
  225. this.password = password;
  226. }
  227. /**
  228. * @return the gender
  229. */
  230. public Gender getGender() {
  231. return gender;
  232. }
  233. /**
  234. * @param gender
  235. * the gender to set
  236. */
  237. public void setGender(Gender gender) {
  238. this.gender = gender;
  239. }
  240. /**
  241. * @return the createdAt
  242. */
  243. public String getCreatedAt() {
  244. return createdAt;
  245. }
  246. /**
  247. * @param createdAt
  248. * the createdAt to set
  249. */
  250. public void setCreatedAt(String createdAt) {
  251. this.createdAt = createdAt;
  252. }
  253. /*
  254. * (non-Javadoc)
  255. *
  256. * @see java.lang.Object#hashCode()
  257. */
  258. @Override
  259. public int hashCode() {
  260. final int prime = 31;
  261. int result = super.hashCode();
  262. result = prime * result + ((createdAt == null) ? 0 : createdAt.hashCode());
  263. result = prime * result + ((email == null) ? 0 : email.hashCode());
  264. result = prime * result + ((firstName == null) ? 0 : firstName.hashCode());
  265. result = prime * result + ((gender == null) ? 0 : gender.hashCode());
  266. result = prime * result + ((groupId == null) ? 0 : groupId.hashCode());
  267. result = prime * result + ((lastName == null) ? 0 : lastName.hashCode());
  268. result = prime * result + ((middleName == null) ? 0 : middleName.hashCode());
  269. result = prime * result + ((password == null) ? 0 : password.hashCode());
  270. result = prime * result + ((passwordHash == null) ? 0 : passwordHash.hashCode());
  271. result = prime * result + ((prefix == null) ? 0 : prefix.hashCode());
  272. result = prime * result + ((storeId == null) ? 0 : storeId.hashCode());
  273. result = prime * result + ((suffix == null) ? 0 : suffix.hashCode());
  274. result = prime * result + ((websiteId == null) ? 0 : websiteId.hashCode());
  275. return result;
  276. }
  277. @Override
  278. public boolean equals(Object obj) {
  279. if (this == obj)
  280. return true;
  281. if (!super.equals(obj))
  282. return false;
  283. if (getClass() != obj.getClass())
  284. return false;
  285. Customer other = (Customer) obj;
  286. if (createdAt == null) {
  287. if (other.createdAt != null)
  288. return false;
  289. } else if (!createdAt.equals(other.createdAt))
  290. return false;
  291. if (email == null) {
  292. if (other.email != null)
  293. return false;
  294. } else if (!email.equals(other.email))
  295. return false;
  296. if (firstName == null) {
  297. if (other.firstName != null)
  298. return false;
  299. } else if (!firstName.equals(other.firstName))
  300. return false;
  301. if (gender == null) {
  302. if (other.gender != null)
  303. return false;
  304. } else if (!gender.equals(other.gender))
  305. return false;
  306. if (groupId == null) {
  307. if (other.groupId != null)
  308. return false;
  309. } else if (!groupId.equals(other.groupId))
  310. return false;
  311. if (lastName == null) {
  312. if (other.lastName != null)
  313. return false;
  314. } else if (!lastName.equals(other.lastName))
  315. return false;
  316. if (middleName == null) {
  317. if (other.middleName != null)
  318. return false;
  319. } else if (!middleName.equals(other.middleName))
  320. return false;
  321. if (password == null) {
  322. if (other.password != null)
  323. return false;
  324. } else if (!password.equals(other.password))
  325. return false;
  326. if (passwordHash == null) {
  327. if (other.passwordHash != null)
  328. return false;
  329. } else if (!passwordHash.equals(other.passwordHash))
  330. return false;
  331. if (prefix == null) {
  332. if (other.prefix != null)
  333. return false;
  334. } else if (!prefix.equals(other.prefix))
  335. return false;
  336. if (storeId == null) {
  337. if (other.storeId != null)
  338. return false;
  339. } else if (!storeId.equals(other.storeId))
  340. return false;
  341. if (suffix == null) {
  342. if (other.suffix != null)
  343. return false;
  344. } else if (!suffix.equals(other.suffix))
  345. return false;
  346. if (websiteId == null) {
  347. if (other.websiteId != null)
  348. return false;
  349. } else if (!websiteId.equals(other.websiteId))
  350. return false;
  351. return true;
  352. }
  353. @Override
  354. public String toString() {
  355. return "Customer [createdAt=" + createdAt + ", email=" + email + ", firstName=" + firstName + ", gender=" + gender + ", groupId=" + groupId + ", lastName="
  356. + lastName + ", middleName=" + middleName + ", password=" + password + ", passwordHash=" + passwordHash + ", prefix=" + prefix + ", storeId=" + storeId
  357. + ", suffix=" + suffix + ", websiteId=" + websiteId + ", id=" + id + ", properties=" + properties + "]";
  358. }
  359. }