]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/helper/JobsWebRequestHelper.java
Please cherry-pick:
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / helper / JobsWebRequestHelper.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.helper;
18
19 import java.text.MessageFormat;
20 import javax.enterprise.context.RequestScoped;
21 import javax.inject.Inject;
22 import javax.inject.Named;
23 import org.mxchange.jcontacts.contact.Contact;
24 import org.mxchange.jjobs.beans.contact.JobsAdminContactWebRequestController;
25 import org.mxchange.jjobs.beans.phone.JobsAdminPhoneWebRequestController;
26 import org.mxchange.jjobs.beans.user.JobsUserWebSessionController;
27 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
28 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
29 import org.mxchange.jphone.phonenumbers.mobile.DialableMobileNumber;
30 import org.mxchange.jusercore.model.user.User;
31
32 /**
33  * A general helper for beans
34  * <p>
35  * @author Roland Haeder<roland@mxchange.org>
36  */
37 @Named ("adminHelper")
38 @RequestScoped
39 public class JobsWebRequestHelper implements JobsWebRequestController {
40
41         /**
42          * Serial number
43          */
44         private static final long serialVersionUID = 17_258_793_567_145_701L;
45
46         /**
47          * Administrative contact controller
48          */
49         @Inject
50         private JobsAdminContactWebRequestController adminContactController;
51
52         /**
53          * Administrative phone controller
54          */
55         @Inject
56         private JobsAdminPhoneWebRequestController adminPhoneController;
57
58         /**
59          * Contact instance
60          */
61         private Contact contact;
62
63         /**
64          * Fax number
65          */
66         private DialableFaxNumber faxNumber;
67
68         /**
69          * Land-line number
70          */
71         private DialableLandLineNumber landLineNumber;
72
73         /**
74          * Mobile number
75          */
76         private DialableMobileNumber mobileNumber;
77
78         /**
79          * User instance
80          */
81         private User user;
82
83         /**
84          * Regular user controller
85          */
86         @Inject
87         private JobsUserWebSessionController userController;
88
89         /**
90          * Default constructor
91          */
92         public JobsWebRequestHelper () {
93         }
94
95         @Override
96         public void copyContactToController () {
97                 // Validate contact instance
98                 if (this.getContact() == null) {
99                         // Throw NPE
100                         throw new NullPointerException("this.contact is null"); //NOI18N
101                 } else if (this.getContact().getContactId() == null) {
102                         // Throw NPE again
103                         throw new NullPointerException("this.contact.contactId is null"); //NOI18N
104                 } else if (this.getContact().getContactId() < 1) {
105                         // Not valid
106                         throw new IllegalStateException(MessageFormat.format("this.contact.contactId={0} is not valid.", this.getContact().getContactId())); //NOI18N
107                 }
108
109                 // Set all phone instances
110                 this.setPhoneInstances(this.getContact());
111
112                 // Set all fields: user
113                 this.adminContactController.copyContactToController(this.getContact());
114         }
115
116         @Override
117         public void copyMobileNumberToController () {
118                 // Validate mobile instance
119                 if (this.getMobileNumber() == null) {
120                         // Throw NPE
121                         throw new NullPointerException("this.mobileNumber is null");
122                 } else if (this.getMobileNumber().getPhoneId() == null) {
123                         // Throw again
124                         throw new NullPointerException("this.mobileNumber.phoneId is null");
125                 } else if (this.getMobileNumber().getPhoneId() < 1) {
126                         // Invalid id number
127                         throw new IllegalArgumentException(MessageFormat.format("this.mobileNumber.phoneId={0} is not valid", this.getMobileNumber().getPhoneId()));
128                 } else if (this.getMobileNumber().getMobileProvider() == null) {
129                         // Throw NPE again
130                         throw new NullPointerException("this.mobileNumber.mobileProvider is null");
131                 } else if (this.getMobileNumber().getMobileProvider().getProviderId() == null) {
132                         // ... throw again
133                         throw new NullPointerException("this.mobileNumber.mobileProvider.providerId is null");
134                 } else if (this.getMobileNumber().getMobileProvider().getProviderId() < 1) {
135                         // Invalid id
136                         throw new IllegalArgumentException(MessageFormat.format("this.mobileNumber.mobileProvider.providerId={0} is invalid", this.getMobileNumber().getMobileProvider().getProviderId()));
137                 } else if (this.getMobileNumber().getPhoneNumber() == null) {
138                         // Throw NPE again ...
139                         throw new NullPointerException("this.mobileNumber.phoneNumber is null");
140                 } else if (this.getMobileNumber().getPhoneNumber() < 1) {
141                         // Invalid id number
142                         throw new IllegalArgumentException(MessageFormat.format("this.mobileNumber.phoneNumber={0} is not valid", this.getMobileNumber().getPhoneNumber()));
143                 }
144
145                 // Copy all (changeable) data fields to admin controller
146                 this.adminPhoneController.setMobileProvider(this.getMobileNumber().getMobileProvider());
147                 this.adminPhoneController.setPhoneNumber(this.getMobileNumber().getPhoneNumber());
148         }
149
150         @Override
151         public void copyUserToController () {
152                 // Log message
153                 //* NOISY-DEBUG: */ System.out.println("AdminHelper::copyUserToController - CALLED!"); //NOI18N
154
155                 // Validate user instance
156                 if (this.getUser() == null) {
157                         // Throw NPE
158                         throw new NullPointerException("this.user is null");
159                 } else if (this.getUser().getUserId() == null) {
160                         // Throw NPE again
161                         throw new NullPointerException("this.user.userId is null");
162                 } else if (this.getUser().getUserId() < 1) {
163                         // Not valid
164                         throw new IllegalStateException(MessageFormat.format("this.user.userId={0} is not valid.", this.getUser().getUserId()));
165                 }
166
167                 // Get contact
168                 Contact userContact = this.getUser().getUserContact();
169
170                 // Set contact here, too. This avoids parameters that cannot auto-complete in IDEs.
171                 this.setContact(userContact);
172
173                 // Set all phone instances
174                 this.setPhoneInstances(userContact);
175
176                 // Set all fields: user
177                 this.userController.setUserName(this.getUser().getUserName());
178         }
179
180         @Override
181         public Contact getContact () {
182                 return this.contact;
183         }
184
185         @Override
186         public void setContact (final Contact contact) {
187                 this.contact = contact;
188         }
189
190         @Override
191         public String getContactUsageMessageKey (final Contact contact) {
192                 // The contact must be valid
193                 if (null == contact) {
194                         // Throw NPE
195                         throw new NullPointerException("contact is null"); //NOI18N
196                 } else if (contact.getContactId() == null) {
197                         // Throw again ...
198                         throw new NullPointerException("contact.contactId is null"); //NOI18N
199                 } else if (contact.getContactId() < 1) {
200                         // Not valid
201                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
202                 }
203
204                 // Default key is "unused"
205                 String messageKey = "CONTACT_IS_UNUSED"; //NOI18N
206
207                 // Check user
208                 boolean isUserContact = this.userController.isContactFound(contact);
209
210                 // Check user first
211                 if (isUserContact) {
212                         // Only user
213                         messageKey = "CONTACT_IS_USER"; //NOI18N
214                 }
215
216                 // Return message key
217                 return messageKey;
218         }
219
220         @Override
221         public DialableFaxNumber getFaxNumber () {
222                 return this.faxNumber;
223         }
224
225         @Override
226         public void setFaxNumber (final DialableFaxNumber faxNumber) {
227                 this.faxNumber = faxNumber;
228         }
229
230         @Override
231         public DialableLandLineNumber getLandLineNumber () {
232                 return this.landLineNumber;
233         }
234
235         @Override
236         public void setLandLineNumber (final DialableLandLineNumber landLineNumber) {
237                 this.landLineNumber = landLineNumber;
238         }
239
240         @Override
241         public DialableMobileNumber getMobileNumber () {
242                 return this.mobileNumber;
243         }
244
245         @Override
246         public void setMobileNumber (final DialableMobileNumber mobileNumber) {
247                 this.mobileNumber = mobileNumber;
248         }
249
250         @Override
251         public User getUser () {
252                 return this.user;
253         }
254
255         @Override
256         public void setUser (final User user) {
257                 this.user = user;
258         }
259
260         /**
261          * Set's all given contact's phone instances: land-line, mobile and
262          * faxNumber
263          * <p>
264          * @param contact Contact to set phone instances for
265          */
266         private void setPhoneInstances (final Contact contact) {
267                 // The contact must be valid
268                 if (null == contact) {
269                         // Throw NPE
270                         throw new NullPointerException("contact is null"); //NOI18N
271                 } else if (contact.getContactId() == null) {
272                         // Throw again ...
273                         throw new NullPointerException("contact.contactId is null"); //NOI18N
274                 } else if (contact.getContactId() < 1) {
275                         // Not valid
276                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
277                 }
278
279                 // Is mobile set?
280                 if (contact.getContactMobileNumber() instanceof DialableMobileNumber) {
281                         // Yes, then set it in admin controller
282                         this.setMobileNumber(contact.getContactMobileNumber());
283                 }
284
285                 // Is land-line set?
286                 if (contact.getContactLandLineNumber() instanceof DialableLandLineNumber) {
287                         // Yes, then set it in admin controller
288                         this.setLandLineNumber(contact.getContactLandLineNumber());
289                 }
290
291                 // Is faxNumber set?
292                 if (contact.getContactFaxNumber() instanceof DialableFaxNumber) {
293                         // Yes, then set it in admin controller
294                         this.setFaxNumber(contact.getContactFaxNumber());
295                 }
296         }
297
298 }