]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/contact/JobsContactWebSessionBean.java
Continued with email address validator (cherry-pick/rename this)
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / contact / JobsContactWebSessionBean.java
1 /*
2  * Copyright (C) 2016 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Affero General Public License as
6  * published by the Free Software Foundation, either version 3 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU Affero General Public License for more details.
13  *
14  * You should have received a copy of the GNU Affero General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.jjobs.beans.contact;
18
19 import java.text.MessageFormat;
20 import java.util.Collections;
21 import java.util.Date;
22 import java.util.Iterator;
23 import java.util.List;
24 import java.util.Objects;
25 import javax.annotation.PostConstruct;
26 import javax.enterprise.context.SessionScoped;
27 import javax.enterprise.event.Observes;
28 import javax.faces.view.facelets.FaceletException;
29 import javax.inject.Inject;
30 import javax.inject.Named;
31 import javax.naming.Context;
32 import javax.naming.InitialContext;
33 import javax.naming.NamingException;
34 import org.mxchange.jcontacts.contact.Contact;
35 import org.mxchange.jcontacts.contact.ContactSessionBeanRemote;
36 import org.mxchange.jcontacts.contact.UserContact;
37 import org.mxchange.jcontacts.contact.gender.Gender;
38 import org.mxchange.jcontacts.contact.utils.ContactUtils;
39 import org.mxchange.jcontacts.events.contact.add.AdminAddedContactEvent;
40 import org.mxchange.jcontacts.events.contact.update.AdminUpdatedContactEvent;
41 import org.mxchange.jcontacts.exceptions.ContactNotFoundException;
42 import org.mxchange.jcountry.data.Country;
43 import org.mxchange.jjobs.beans.BaseJobsController;
44 import org.mxchange.jjobs.beans.login.JobsUserLoginWebSessionController;
45 import org.mxchange.jphone.phonenumbers.cellphone.CellphoneNumber;
46 import org.mxchange.jphone.phonenumbers.cellphone.DialableCellphoneNumber;
47 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
48 import org.mxchange.jphone.phonenumbers.fax.FaxNumber;
49 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
50 import org.mxchange.jphone.phonenumbers.landline.LandLineNumber;
51 import org.mxchange.jphone.phonenumbers.mobileprovider.MobileProvider;
52 import org.mxchange.jusercore.events.login.UserLoggedInEvent;
53 import org.mxchange.jusercore.events.registration.UserRegisteredEvent;
54 import org.mxchange.jusercore.events.user.add.AdminAddedUserEvent;
55 import org.mxchange.jusercore.exceptions.UserPasswordMismatchException;
56
57 /**
58  * A general contact bean (controller)
59  * <p>
60  * @author Roland Haeder<roland@mxchange.org>
61  */
62 @Named ("contactController")
63 @SessionScoped
64 public class JobsContactWebSessionBean extends BaseJobsController implements JobsContactWebSessionController {
65
66         /**
67          * Serial number
68          */
69         private static final long serialVersionUID = 542_145_347_916L;
70
71         /**
72          * Birth day
73          */
74         private Date birthday;
75
76         /**
77          * Cellphone number's carrier
78          */
79         private MobileProvider cellphoneCarrier;
80
81         /**
82          * Cellphone number
83          */
84         private Long cellphoneNumber;
85
86         /**
87          * City
88          */
89         private String city;
90
91         /**
92          * Optional comments
93          */
94         private String comment;
95
96         /**
97          * Remote contact bean
98          */
99         private final ContactSessionBeanRemote contactBean;
100
101         /**
102          * Contact list
103          */
104         private List<Contact> contactList;
105
106         /**
107          * Country instance
108          */
109         private Country country;
110
111         /**
112          * Email address
113          */
114         private String emailAddress;
115
116         /**
117          * Email address list
118          */
119         private List<String> emailAddressList;
120
121         /**
122          * Email address repeated
123          */
124         private String emailAddressRepeat;
125
126         /**
127          * Family name
128          */
129         private String familyName;
130
131         /**
132          * Fax number's area code
133          */
134         private Integer faxAreaCode;
135
136         /**
137          * Country instance for fax number
138          */
139         private Country faxCountry;
140
141         /**
142          * Fax number
143          */
144         private Long faxNumber;
145
146         /**
147          * First name
148          */
149         private String firstName;
150
151         /**
152          * Gender instance
153          */
154         private Gender gender;
155
156         /**
157          * House number
158          */
159         private Short houseNumber;
160
161         /**
162          * Whether a cellphone entry has been unlinked
163          */
164         private boolean isCellphoneUnlinked;
165
166         /**
167          * Whether a fax entry has been unlinked
168          */
169         private boolean isFaxUnlinked;
170
171         /**
172          * Whether a land-line number has been unlinked
173          */
174         private boolean isLandLineUnlinked;
175
176         /**
177          * Phone number area code
178          */
179         private Integer phoneAreaCode;
180
181         /**
182          * Country instance for phone number
183          */
184         private Country phoneCountry;
185
186         /**
187          * Phone number
188          */
189         private Long phoneNumber;
190
191         /**
192          * Street
193          */
194         private String street;
195
196         /**
197          * Login bean (controller)
198          */
199         @Inject
200         private JobsUserLoginWebSessionController userLoginController;
201
202         /**
203          * ZIP code
204          */
205         private Integer zipCode;
206
207         /**
208          * Default constructor
209          */
210         public JobsContactWebSessionBean () {
211                 // Try it
212                 try {
213                         // Get initial context
214                         Context context = new InitialContext();
215
216                         // Try to lookup
217                         this.contactBean = (ContactSessionBeanRemote) context.lookup("java:global/jratecalc-ejb/contact!org.mxchange.jcontacts.contact.ContactSessionBeanRemote"); //NOI18N
218                 } catch (final NamingException e) {
219                         // Throw again
220                         throw new FaceletException(e);
221                 }
222         }
223
224         @Override
225         public void afterAdminAddedContact (@Observes final AdminAddedContactEvent event) {
226                 // The event must be valid
227                 if (null == event) {
228                         // Throw NPE
229                         throw new NullPointerException("event is null"); //NOI18N
230                 } else if (event.getAddedContact() == null) {
231                         // Throw again ...
232                         throw new NullPointerException("event.addedContact is null"); //NOI18N
233                 } else if (event.getAddedContact().getContactId() == null) {
234                         // ... and again
235                         throw new NullPointerException("event.addedContact.customerId is null"); //NOI18N
236                 } else if (event.getAddedContact().getContactId() < 1) {
237                         // Not valid
238                         throw new IllegalArgumentException(MessageFormat.format("event.addedContact.customerId={0} is not valid", event.getAddedContact().getContactId())); //NOI18N //NOI18N
239                 }
240
241                 // Clear this bean
242                 this.clear();
243
244                 // Call other method
245                 this.contactList.add(event.getAddedContact());
246         }
247
248         @Override
249         public void afterAdminAddedUserEvent (@Observes final AdminAddedUserEvent event) {
250                 // Trace message
251                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("UserWebBean:afterAdminAddedUserEvent: event={0} - CALLED!", event)); //NOI18N
252
253                 // event should not be null
254                 if (null == event) {
255                         // Throw NPE
256                         throw new NullPointerException("event is null"); //NOI18N
257                 } else if (event.getAddedUser() == null) {
258                         // Throw NPE again
259                         throw new NullPointerException("event.addedUser is null"); //NOI18N
260                 } else if (event.getAddedUser().getUserId() == null) {
261                         // userId is null
262                         throw new NullPointerException("event.addedUser.userId is null"); //NOI18N
263                 } else if (event.getAddedUser().getUserId() < 1) {
264                         // Not avalid id
265                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getAddedUser(), event.getAddedUser().getUserId())); //NOI18N
266                 }
267
268                 // Clear all data
269                 this.clear();
270
271                 // Trace message
272                 //* NOISY-DEBUG: */ System.out.println("UserWebBean:afterAdminAddedUserEvent: EXIT!"); //NOI18N
273         }
274
275         @Override
276         public void afterAdminUpdatedContactDataEvent (@Observes final AdminUpdatedContactEvent event) {
277                 // Trace message
278                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterAdminUpdatedContactDataEvent: event={0} - CALLED!", event)); //NOI18N
279
280                 // event should not be null
281                 if (null == event) {
282                         // Throw NPE
283                         throw new NullPointerException("event is null"); //NOI18N
284                 } else if (event.getUpdatedContact() == null) {
285                         // Throw NPE again
286                         throw new NullPointerException("event.updatedUser is null"); //NOI18N
287                 } else if (event.getUpdatedContact().getContactId() == null) {
288                         // userId is null
289                         throw new NullPointerException("event.updatedUser.userId is null"); //NOI18N
290                 } else if (event.getUpdatedContact().getContactId() < 1) {
291                         // Not avalid id
292                         throw new IllegalArgumentException(MessageFormat.format("contactId of contact={0} is not valid: {1}", event.getUpdatedContact(), event.getUpdatedContact().getContactId())); //NOI18N
293                 }
294
295                 // Get iterator from list
296                 Iterator<Contact> iterator = this.contactList.iterator();
297
298                 // "Walk" through all entries
299                 while (iterator.hasNext()) {
300                         // Get next element
301                         Contact next = iterator.next();
302
303                         // Is id number the same?
304                         if (Objects.equals(event.getUpdatedContact().getContactId(), next.getContactId())) {
305                                 // Found entry, so remove it and abort
306                                 this.contactList.remove(next);
307
308                                 // Remove also email from list
309                                 this.emailAddressList.remove(next.getContactEmailAddress());
310                                 break;
311                         }
312                 }
313
314                 // Add contact to list
315                 this.contactList.add(event.getUpdatedContact());
316
317                 // Add email address to list
318                 this.emailAddressList.add(event.getUpdatedContact().getContactEmailAddress());
319         }
320
321         @Override
322         public void afterRegistrationEvent (@Observes final UserRegisteredEvent event) {
323                 // Trace message
324                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterRegistration: event={0} - CALLED!", event)); //NOI18N
325
326                 // event should not be null
327                 if (null == event) {
328                         // Throw NPE
329                         throw new NullPointerException("event is null"); //NOI18N
330                 } else if (event.getRegisteredUser() == null) {
331                         // Throw NPE again
332                         throw new NullPointerException("event.user is null"); //NOI18N
333                 } else if (event.getRegisteredUser().getUserId() == null) {
334                         // userId is null
335                         throw new NullPointerException("event.user.userId is null"); //NOI18N
336                 } else if (event.getRegisteredUser().getUserId() < 1) {
337                         // Not avalid id
338                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getRegisteredUser(), event.getRegisteredUser().getUserId())); //NOI18N
339                 }
340
341                 // Get user instance
342                 Contact registeredContact = event.getRegisteredUser().getUserContact();
343
344                 // Debug message
345                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterRegistration: registeredContact={0}", registeredContact)); //NOI18N
346
347                 // Copy all data from registered->user
348                 this.copyContact(registeredContact);
349
350                 // Add user name and email address
351                 this.addUserNameEmailAddress(registeredContact);
352
353                 // Clear all data
354                 this.clear();
355
356                 // Trace message
357                 //* NOISY-DEBUG: */ System.out.println("ContactWebBean:afterRegistration: EXIT!"); //NOI18N
358         }
359
360         @Override
361         public void afterUserLogin (@Observes final UserLoggedInEvent event) {
362                 // Trace message
363                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactWebBean:afterUserLogin: event={0} - CALLED!", event)); //NOI18N
364
365                 // event should not be null
366                 if (null == event) {
367                         // Throw NPE
368                         throw new NullPointerException("event is null"); //NOI18N
369                 } else if (event.getLoggedInUser() == null) {
370                         // Throw NPE again
371                         throw new NullPointerException("event.user is null"); //NOI18N
372                 } else if (event.getLoggedInUser().getUserId() == null) {
373                         // userId is null
374                         throw new NullPointerException("event.user.userId is null"); //NOI18N
375                 } else if (event.getLoggedInUser().getUserId() < 1) {
376                         // Not avalid id
377                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getLoggedInUser(), event.getLoggedInUser().getUserId())); //NOI18N
378                 }
379
380                 // Copy all data to this bean
381                 this.copyContact(event.getLoggedInUser().getUserContact());
382
383                 // Trace message
384                 //* NOISY-DEBUG: */ System.out.println("ContactWebBean:afterUserLogin - EXIT!"); //NOI18N
385         }
386
387         @Override
388         public List<Contact> allContacts () {
389                 // Debug message
390                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("ContactController.allContacts: contactList.size()={0} - EXIT!", this.contactList.size()));
391
392                 // Return un-modified list
393                 return Collections.unmodifiableList(this.contactList);
394         }
395
396         @Override
397         public Contact createContactInstance () {
398                 // User message
399                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("{0}.createContactInstance: CALLED!", this.getClass().getSimpleName()));
400
401                 // Is all required data set?
402                 if (!this.isRequiredPersonalDataSet()) {
403                         // No, then abort here
404                         throw new FaceletException(new IllegalArgumentException("Not all personal data is set, but createContactInstance() is called.")); //NOI18N
405                 }
406
407                 // Generate phone number
408                 DialableLandLineNumber phone = new LandLineNumber(this.getPhoneCountry(), this.getPhoneAreaCode(), this.getPhoneNumber());
409                 DialableCellphoneNumber cellphone = new CellphoneNumber(this.getCellphoneCarrier(), this.getCellphoneNumber());
410                 DialableFaxNumber fax = new FaxNumber(this.getFaxCountry(), this.getFaxAreaCode(), this.getFaxNumber());
411
412                 // Create new contact
413                 Contact contact = new UserContact(this.getGender(), this.getFirstName(), this.getFamilyName());
414                 contact.setContactStreet(this.getStreet());
415                 contact.setContactHouseNumber(this.getHouseNumber());
416                 contact.setContactZipCode(this.getZipCode());
417                 contact.setContactCity(this.getCity());
418                 contact.setContactCountry(this.getCountry());
419                 contact.setContactEmailAddress(this.getEmailAddress());
420                 contact.setContactBirthday(this.getBirthday());
421                 contact.setContactComment(this.getComment());
422
423                 // Debug message
424                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("{0}.createContactInstance: this.emailAddress={1}", this.getClass().getSimpleName(), this.getEmailAddress()));
425
426                 // Don't set null or wrong references
427                 if ((phone instanceof DialableLandLineNumber) && (phone.getPhoneCountry() instanceof Country) && (this.getPhoneAreaCode() != null) && (this.getPhoneNumber() != null) && (this.getPhoneAreaCode() > 0) && (this.getPhoneNumber() > 0)) {
428                         // Now the number must be given
429                         if (phone.getPhoneAreaCode() == null) {
430                                 // Is null
431                                 throw new NullPointerException("phone.phoneAreaCode is null"); //NOI18N
432                         } else if (phone.getPhoneAreaCode() < 1) {
433                                 // Abort here
434                                 throw new IllegalArgumentException("phone.phoneAreaCode is zero or below."); //NOI18N
435                         } else if (phone.getPhoneNumber() == null) {
436                                 // Is null
437                                 throw new NullPointerException("phone.phoneNumber is null"); //NOI18N
438                         } else if (phone.getPhoneNumber() < 1) {
439                                 // Abort here
440                                 throw new IllegalArgumentException("phone.phoneNumber is zero or below."); //NOI18N
441                         }
442
443                         // Set phone number
444                         contact.setContactLandLineNumber(phone);
445                 }
446
447                 // Don't set null or wrong references
448                 if ((fax instanceof DialableFaxNumber) && (fax.getPhoneCountry() instanceof Country) && (this.getFaxAreaCode() != null) && (this.getFaxNumber() != null) && (this.getFaxAreaCode() > 0) && (this.getFaxNumber() > 0)) {
449                         // Now the number must be given
450                         if (fax.getPhoneAreaCode() == null) {
451                                 // Is null
452                                 throw new NullPointerException("fax.phoneAreaCode is null"); //NOI18N
453                         } else if (fax.getPhoneAreaCode() < 1) {
454                                 // Abort here
455                                 throw new IllegalArgumentException("fax.phoneAreaCode is zero or below."); //NOI18N
456                         } else if (fax.getPhoneNumber() == null) {
457                                 // Is null
458                                 throw new NullPointerException("fax.phoneNumber is null"); //NOI18N
459                         } else if (fax.getPhoneNumber() < 1) {
460                                 // Abort here
461                                 throw new IllegalArgumentException("fax.phoneNumber is zero or below."); //NOI18N
462                         }
463
464                         // Set fax number
465                         contact.setContactFaxNumber(fax);
466                 }
467
468                 // Is the provider set?
469                 if ((cellphone instanceof DialableCellphoneNumber) && (this.getCellphoneCarrier() instanceof MobileProvider) && (this.getCellphoneNumber() != null) && (this.getCellphoneNumber() > 0)) {
470                         // Is the number set?
471                         if (cellphone.getPhoneNumber() == null) {
472                                 // Is null
473                                 throw new NullPointerException("cellphone.phoneNumber is null"); //NOI18N
474                         } else if (cellphone.getPhoneNumber() < 1) {
475                                 // Abort here
476                                 throw new IllegalArgumentException("cellphone.phoneNumber is zero or below."); //NOI18N
477                         }
478
479                         // Set cellphone number
480                         contact.setContactCellphoneNumber(cellphone);
481                 }
482
483                 // Trace message
484                 //* NOISY-DEBUG: */ System.out.println(MessageFormat.format("{0}.createContactInstance: contact={1} - EXIT!", this.getClass().getSimpleName(), contact));
485
486                 // Return it
487                 return contact;
488         }
489
490         @Override
491         public String doChangePersonalContactData () {
492                 // This method shall only be called if the user is logged-in
493                 if (!this.userLoginController.isUserLoggedIn()) {
494                         // Not logged-in
495                         throw new IllegalStateException("User is not logged-in"); //NOI18N
496                 } else if (!this.isRequiredChangePersonalDataSet()) {
497                         // Not all required fields are set
498                         throw new FaceletException("Not all required fields are set."); //NOI18N
499                 } else if (!this.userLoginController.ifCurrentPasswordMatches()) {
500                         // Password not matching
501                         throw new FaceletException(new UserPasswordMismatchException(this.userLoginController.getLoggedInUser()));
502                 }
503
504                 // Get contact instance
505                 Contact contact = this.userLoginController.getLoggedInUser().getUserContact();
506
507                 // It should be there, so run some tests on it
508                 assert (contact instanceof Contact) : "Instance userLoginController.loggedInUser.userContact is null"; //NOI18N
509                 assert (contact.getContactId() instanceof Long) : "Instance userLoginController.userContact.contactId is null"; //NOI18N
510                 assert (contact.getContactId() > 0) : MessageFormat.format("Instance userLoginController.userContact.contactId={0} is invalid", contact.getContactId()); //NOI18N
511
512                 // Update all fields
513                 contact.setContactGender(this.getGender());
514                 contact.setContactFirstName(this.getFirstName());
515                 contact.setContactFamilyName(this.getFamilyName());
516                 contact.setContactStreet(this.getStreet());
517                 contact.setContactHouseNumber(this.getHouseNumber());
518                 contact.setContactZipCode(this.getZipCode());
519                 contact.setContactCity(this.getCity());
520                 contact.setContactCountry(this.getCountry());
521
522                 // Update contact's cellphone number
523                 this.isCellphoneUnlinked = ContactUtils.updateCellPhoneNumber(contact, this.getCellphoneCarrier(), this.getCellphoneNumber());
524
525                 // Update contact's land-line number
526                 this.isLandLineUnlinked = ContactUtils.updateLandLineNumber(contact, this.getPhoneCountry(), this.getPhoneAreaCode(), this.getPhoneNumber());
527
528                 // Update contact's fax number
529                 this.isFaxUnlinked = ContactUtils.updateFaxNumber(contact, this.getFaxCountry(), this.getFaxAreaCode(), this.getFaxNumber());
530
531                 // Send it to the EJB
532                 this.contactBean.updateContactData(contact, this.isCellphoneUnlinked, this.isLandLineUnlinked, this.isFaxUnlinked);
533
534                 // All fine
535                 return "contact_data_saved"; //NOI18N
536         }
537
538         @Override
539         @SuppressWarnings ("ReturnOfDateField")
540         public Date getBirthday () {
541                 return this.birthday;
542         }
543
544         @Override
545         @SuppressWarnings ("AssignmentToDateFieldFromParameter")
546         public void setBirthday (final Date birthday) {
547                 this.birthday = birthday;
548         }
549
550         @Override
551         public MobileProvider getCellphoneCarrier () {
552                 return this.cellphoneCarrier;
553         }
554
555         @Override
556         public void setCellphoneCarrier (final MobileProvider cellphoneCarrier) {
557                 this.cellphoneCarrier = cellphoneCarrier;
558         }
559
560         @Override
561         public Long getCellphoneNumber () {
562                 return this.cellphoneNumber;
563         }
564
565         @Override
566         public void setCellphoneNumber (Long cellphoneNumber) {
567                 this.cellphoneNumber = cellphoneNumber;
568         }
569
570         @Override
571         public String getCity () {
572                 return this.city;
573         }
574
575         @Override
576         public void setCity (final String city) {
577                 this.city = city;
578         }
579
580         @Override
581         public String getComment () {
582                 return this.comment;
583         }
584
585         @Override
586         public void setComment (final String comment) {
587                 this.comment = comment;
588         }
589
590         @Override
591         public Country getCountry () {
592                 return this.country;
593         }
594
595         @Override
596         public void setCountry (final Country country) {
597                 this.country = country;
598         }
599
600         @Override
601         public String getEmailAddress () {
602                 return this.emailAddress;
603         }
604
605         @Override
606         public void setEmailAddress (final String emailAddress) {
607                 this.emailAddress = emailAddress;
608         }
609
610         @Override
611         public String getEmailAddressRepeat () {
612                 return this.emailAddressRepeat;
613         }
614
615         @Override
616         public void setEmailAddressRepeat (final String emailAddressRepeat) {
617                 this.emailAddressRepeat = emailAddressRepeat;
618         }
619
620         @Override
621         public String getFamilyName () {
622                 return this.familyName;
623         }
624
625         @Override
626         public void setFamilyName (final String familyName) {
627                 this.familyName = familyName;
628         }
629
630         @Override
631         public Integer getFaxAreaCode () {
632                 return this.faxAreaCode;
633         }
634
635         @Override
636         public void setFaxAreaCode (final Integer faxAreaCode) {
637                 this.faxAreaCode = faxAreaCode;
638         }
639
640         @Override
641         public Country getFaxCountry () {
642                 return this.faxCountry;
643         }
644
645         @Override
646         public void setFaxCountry (final Country faxCountry) {
647                 this.faxCountry = faxCountry;
648         }
649
650         @Override
651         public Long getFaxNumber () {
652                 return this.faxNumber;
653         }
654
655         @Override
656         public void setFaxNumber (final Long faxNumber) {
657                 this.faxNumber = faxNumber;
658         }
659
660         @Override
661         public String getFirstName () {
662                 return this.firstName;
663         }
664
665         @Override
666         public void setFirstName (final String firstName) {
667                 this.firstName = firstName;
668         }
669
670         @Override
671         public Gender getGender () {
672                 return this.gender;
673         }
674
675         @Override
676         public void setGender (final Gender gender) {
677                 this.gender = gender;
678         }
679
680         @Override
681         public Short getHouseNumber () {
682                 return this.houseNumber;
683         }
684
685         @Override
686         public void setHouseNumber (final Short houseNumber) {
687                 this.houseNumber = houseNumber;
688         }
689
690         @Override
691         public Integer getPhoneAreaCode () {
692                 return this.phoneAreaCode;
693         }
694
695         @Override
696         public void setPhoneAreaCode (final Integer phoneAreaCode) {
697                 this.phoneAreaCode = phoneAreaCode;
698         }
699
700         @Override
701         public Country getPhoneCountry () {
702                 return this.phoneCountry;
703         }
704
705         @Override
706         public void setPhoneCountry (final Country phoneCountry) {
707                 this.phoneCountry = phoneCountry;
708         }
709
710         @Override
711         public Long getPhoneNumber () {
712                 return this.phoneNumber;
713         }
714
715         @Override
716         public void setPhoneNumber (final Long phoneNumber) {
717                 this.phoneNumber = phoneNumber;
718         }
719
720         @Override
721         public String getStreet () {
722                 return this.street;
723         }
724
725         @Override
726         public void setStreet (final String street) {
727                 this.street = street;
728         }
729
730         @Override
731         public Integer getZipCode () {
732                 return this.zipCode;
733         }
734
735         @Override
736         public void setZipCode (final Integer zipCode) {
737                 this.zipCode = zipCode;
738         }
739
740         @Override
741         public boolean hasContacts () {
742                 return (!this.contactList.isEmpty());
743         }
744
745         /**
746          * Post-initialization of this class
747          */
748         @PostConstruct
749         public void init () {
750                 // Get full email address list for reducing EJB calls
751                 this.emailAddressList = this.contactBean.getEmailAddressList();
752
753                 // Get full contact list
754                 this.contactList = this.contactBean.getAllContacts();
755         }
756
757         @Override
758         public boolean isEmailAddressRegistered (final Contact contact) {
759                 // Cherck parameter
760                 if (null == contact) {
761                         // Throw NPE
762                         throw new NullPointerException("contact is null"); //NOI18N
763                 } else if (contact.getContactEmailAddress() == null) {
764                         // Throw again
765                         throw new NullPointerException("contact.contactEmailAddress is null"); //NOI18N
766                 } else if (contact.getContactEmailAddress().isEmpty()) {
767                         // Is empty
768                         throw new IllegalArgumentException("contact.contactEmailAddress is empty."); //NOI18N
769                 }
770
771                 // Determine it
772                 return ((this.emailAddressList instanceof List) && (this.emailAddressList.contains(contact.getContactEmailAddress())));
773         }
774
775         @Override
776         public boolean isRequiredChangePersonalDataSet () {
777                 return ((this.getGender() != null) &&
778                                 (this.getFirstName() != null) &&
779                                 (this.getFamilyName() != null) &&
780                                 (this.getStreet() != null) &&
781                                 (this.getHouseNumber() != null) &&
782                                 (this.getZipCode() != null) &&
783                                 (this.getCity() != null));
784         }
785
786         @Override
787         public boolean isRequiredPersonalDataSet () {
788                 return ((this.getGender() != null) &&
789                                 (this.getFirstName() != null) &&
790                                 (this.getFamilyName() != null) &&
791                                 (this.getStreet() != null) &&
792                                 (this.getHouseNumber() != null) &&
793                                 (this.getZipCode() != null) &&
794                                 (this.getCity() != null) &&
795                                 (this.getEmailAddress() != null) &&
796                                 (this.getEmailAddressRepeat() != null));
797         }
798
799         @Override
800         public boolean isSameEmailAddressEntered () {
801                 return (Objects.equals(this.getEmailAddress(), this.getEmailAddressRepeat()));
802         }
803
804         @Override
805         public Contact lookupContactById (final Long contactId) throws ContactNotFoundException {
806                 // Init variable
807                 Contact localContact = null;
808
809                 // Clear this bean
810                 this.clear();
811
812                 // Try to lookup it in visible user list
813                 for (final Iterator<Contact> iterator = this.contactList.iterator(); iterator.hasNext();) {
814                         // Get next user
815                         Contact next = iterator.next();
816
817                         // Is the user id found?
818                         if (Objects.equals(next.getContactId(), contactId)) {
819                                 // Copy to other variable
820                                 localContact = next;
821                                 break;
822                         }
823                 }
824
825                 // Is it still null?
826                 if (null == localContact) {
827                         // Not visible for the current user
828                         throw new ContactNotFoundException(contactId);
829                 }
830
831                 // Copy all data to this bean
832                 this.copyContact(localContact);
833
834                 // Return it
835                 return localContact;
836         }
837
838         @Override
839         public void updateContactDataFromController (final Contact contact) {
840                 // Is the instance valid?
841                 if (null == contact) {
842                         // Throw NPE
843                         throw new NullPointerException("contact is null"); //NOI18N
844                 } else if (contact.getContactId() == null) {
845                         // Throw NPE
846                         throw new NullPointerException("contact.contactId is null"); //NOI18N
847                 } else if (contact.getContactId() < 1) {
848                         // Not valid id number
849                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
850                 }
851
852                 // Set all
853                 this.copyContact(contact);
854         }
855
856         /**
857          * Adds email address to bean's internal list.
858          * <p>
859          * @param contact Contact instance
860          */
861         private void addUserNameEmailAddress (final Contact contact) {
862                 // Make sure the entry is not added yet
863                 if (this.emailAddressList.contains(contact.getContactEmailAddress())) {
864                         // Already added
865                         throw new IllegalArgumentException(MessageFormat.format("Email address {0} already added.", contact.getContactEmailAddress())); //NOI18N
866                 }
867
868                 // Add email addres
869                 this.emailAddressList.add(contact.getContactEmailAddress());
870         }
871
872         /**
873          * Clears this bean
874          */
875         private void clear () {
876                 // Clear all data
877                 // - personal data
878                 this.setGender(Gender.UNKNOWN);
879                 this.setFirstName(null);
880                 this.setFamilyName(null);
881                 this.setStreet(null);
882                 this.setHouseNumber(null);
883                 this.setZipCode(null);
884                 this.setCity(null);
885                 this.setCountry(null);
886
887                 // - contact data
888                 this.setEmailAddress(null);
889                 this.setEmailAddressRepeat(null);
890                 this.setPhoneAreaCode(null);
891                 this.setPhoneCountry(null);
892                 this.setPhoneNumber(null);
893                 this.setCellphoneCarrier(null);
894                 this.setCellphoneNumber(null);
895                 this.setFaxAreaCode(null);
896                 this.setFaxCountry(null);
897                 this.setFaxNumber(null);
898
899                 // - other data
900                 this.setBirthday(null);
901                 this.setComment(null);
902         }
903
904         /**
905          * Copies given contact into the controller
906          * <p>
907          * @param contact Contact instance
908          */
909         private void copyContact (final Contact contact) {
910                 // Is the instance valid?
911                 if (null == contact) {
912                         // Throw NPE
913                         throw new NullPointerException("contact is null"); //NOI18N
914                 } else if (contact.getContactId() == null) {
915                         // Throw NPE
916                         throw new NullPointerException("contact.contactId is null"); //NOI18N
917                 } else if (contact.getContactId() < 1) {
918                         // Not valid id number
919                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
920                 }
921
922                 // Copy all fields:
923                 // - base data
924                 this.setGender(contact.getContactGender());
925                 this.setFirstName(contact.getContactFirstName());
926                 this.setFamilyName(contact.getContactFamilyName());
927                 this.setStreet(contact.getContactStreet());
928                 this.setHouseNumber(contact.getContactHouseNumber());
929                 this.setZipCode(contact.getContactZipCode());
930                 this.setCity(contact.getContactCity());
931                 this.setCountry(contact.getContactCountry());
932                 this.setEmailAddress(contact.getContactEmailAddress());
933                 this.setBirthday(contact.getContactBirthday());
934                 this.setComment(contact.getContactComment());
935
936                 // Get cellphone, phone and fax instance
937                 DialableCellphoneNumber cellphone = contact.getContactCellphoneNumber();
938                 DialableFaxNumber fax = contact.getContactFaxNumber();
939                 DialableLandLineNumber phone = contact.getContactLandLineNumber();
940
941                 // - contact data
942                 if ((phone instanceof DialableLandLineNumber) && (phone.getPhoneAreaCode() > 0)) {
943                         this.setPhoneCountry(phone.getPhoneCountry());
944                         this.setPhoneAreaCode(phone.getPhoneAreaCode());
945                         this.setPhoneNumber(phone.getPhoneNumber());
946                 }
947
948                 if ((cellphone instanceof DialableCellphoneNumber) && (cellphone.getCellphoneProvider() instanceof MobileProvider)) {
949                         this.setCellphoneCarrier(cellphone.getCellphoneProvider());
950                         this.setCellphoneNumber(cellphone.getPhoneNumber());
951                 }
952
953                 if ((fax instanceof DialableFaxNumber) && (fax.getPhoneAreaCode() > 0)) {
954                         this.setFaxCountry(fax.getPhoneCountry());
955                         this.setFaxAreaCode(fax.getPhoneAreaCode());
956                         this.setFaxNumber(fax.getPhoneNumber());
957                 }
958         }
959
960         /**
961          * Removes given contact from all lists
962          * <p>
963          * @param contact Contact instance to remove
964          */
965         private void removeContact (final Contact contact) {
966                 // Is the instance valid?
967                 if (null == contact) {
968                         // Throw NPE
969                         throw new NullPointerException("contact is null"); //NOI18N
970                 } else if (contact.getContactId() == null) {
971                         // Throw NPE
972                         throw new NullPointerException("contact.contactId is null"); //NOI18N
973                 } else if (contact.getContactId() < 1) {
974                         // Not valid id number
975                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N
976                 }
977
978                 // Remove from general list
979                 if (!this.contactList.remove(contact)) {
980                         // Did not remove contact
981                         throw new IllegalStateException(MessageFormat.format("contact {0} was not removed.", contact.getContactId())); //NOI18N
982                 }
983
984                 // Remove from other lists
985                 this.emailAddressList.remove(contact.getContactEmailAddress());
986         }
987
988 }