]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/helper/JobsWebRequestHelper.java
Continued with some rewrites: (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.cellphone.DialableCellphoneNumber;
28 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
29 import org.mxchange.jphone.phonenumbers.landline.DialableLandLineNumber;
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          * Cell phone number
60          */
61         private DialableCellphoneNumber cellPhoneNumber;
62
63         /**
64          * Contact instance
65          */
66         private Contact contact;
67
68         /**
69          * Fax number
70          */
71         private DialableFaxNumber fax;
72
73         /**
74          * Land-line number
75          */
76         private DialableLandLineNumber landLine;
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 copyCellphoneNumberToController () {
97                 // Validate cellphone instance
98                 if (this.getCellPhoneNumber() == null) {
99                         // Throw NPE
100                         throw new NullPointerException("this.cellPhoneNumber is null");
101                 } else if (this.getCellPhoneNumber().getPhoneId() == null) {
102                         // Throw again
103                         throw new NullPointerException("this.cellPhoneNumber.phoneId is null");
104                 } else if (this.getCellPhoneNumber().getPhoneId() < 1) {
105                         // Invalid id number
106                         throw new IllegalArgumentException(MessageFormat.format("this.cellPhoneNumber.phoneId={0} is not valid", this.getCellPhoneNumber().getPhoneId()));
107                 } else if (this.getCellPhoneNumber().getCellphoneProvider() == null) {
108                         // Throw NPE again
109                         throw new NullPointerException("this.cellPhoneNumber.cellphoneProvider is null");
110                 } else if (this.getCellPhoneNumber().getCellphoneProvider().getProviderId() == null) {
111                         // ... throw again
112                         throw new NullPointerException("this.cellPhoneNumber.cellphoneProvider.providerId is null");
113                 } else if (this.getCellPhoneNumber().getCellphoneProvider().getProviderId() < 1) {
114                         // Invalid id
115                         throw new IllegalArgumentException(MessageFormat.format("this.cellPhoneNumber.cellphoneProvider.providerId={0} is invalid", this.getCellPhoneNumber().getCellphoneProvider().getProviderId()));
116                 } else if (this.getCellPhoneNumber().getPhoneNumber() == null) {
117                         // Throw NPE again ...
118                         throw new NullPointerException("this.cellPhoneNumber.phoneNumber is null");
119                 } else if (this.getCellPhoneNumber().getPhoneNumber() < 1) {
120                         // Invalid id number
121                         throw new IllegalArgumentException(MessageFormat.format("this.cellPhoneNumber.phoneNumber={0} is not valid", this.getCellPhoneNumber().getPhoneNumber()));
122                 }
123
124                 // Copy all (changeable) data fields to admin controller
125                 this.adminPhoneController.setCellphoneProvider(this.getCellPhoneNumber().getCellphoneProvider());
126                 this.adminPhoneController.setPhoneNumber(this.getCellPhoneNumber().getPhoneNumber());
127         }
128
129         @Override
130         public void copyContactToController () {
131                 // Validate contact instance
132                 if (this.getContact() == null) {
133                         // Throw NPE
134                         throw new NullPointerException("this.contact is null"); //NOI18N
135                 } else if (this.getContact().getContactId() == null) {
136                         // Throw NPE again
137                         throw new NullPointerException("this.contact.contactId is null"); //NOI18N
138                 } else if (this.getContact().getContactId() < 1) {
139                         // Not valid
140                         throw new IllegalStateException(MessageFormat.format("this.contact.contactId={0} is not valid.", this.getContact().getContactId())); //NOI18N
141                 }
142
143                 // Set all phone instances
144                 this.setPhoneInstances(this.getContact());
145
146                 // Set all fields: user
147                 this.adminContactController.copyContactToController(this.getContact());
148
149                 // Log message
150                 //* NOISY-DEBUG: */ System.out.println("AdminHelper::copyContactToController - EXIT!"); //NOI18N
151         }
152
153         @Override
154         public void copyUserToController () {
155                 // Log message
156                 //* NOISY-DEBUG: */ System.out.println("AdminHelper::copyUserToController - CALLED!"); //NOI18N
157
158                 // Validate user instance
159                 if (this.getUser() == null) {
160                         // Throw NPE
161                         throw new NullPointerException("this.user is null");
162                 } else if (this.getUser().getUserId() == null) {
163                         // Throw NPE again
164                         throw new NullPointerException("this.user.userId is null");
165                 } else if (this.getUser().getUserId() < 1) {
166                         // Not valid
167                         throw new IllegalStateException(MessageFormat.format("this.user.userId={0} is not valid.", this.getUser().getUserId()));
168                 }
169
170                 // Get contact
171                 Contact userContact = this.getUser().getUserContact();
172
173                 // Set contact here, too. This avoids parameters that cannot auto-complete in IDEs.
174                 this.setContact(userContact);
175
176                 // Set all phone instances
177                 this.setPhoneInstances(userContact);
178
179                 // Set all fields: user
180                 this.userController.setUserName(this.getUser().getUserName());
181
182                 // Log message
183                 //* NOISY-DEBUG: */ System.out.println("AdminHelper::copyUserToController - EXIT!"); //NOI18N
184         }
185
186         @Override
187         public DialableCellphoneNumber getCellPhoneNumber () {
188                 return this.cellPhoneNumber;
189         }
190
191         @Override
192         public void setCellPhoneNumber (final DialableCellphoneNumber cellPhoneNumber) {
193                 this.cellPhoneNumber = cellPhoneNumber;
194         }
195
196         @Override
197         public Contact getContact () {
198                 return this.contact;
199         }
200
201         @Override
202         public void setContact (final Contact contact) {
203                 this.contact = contact;
204         }
205
206         @Override
207         public String getContactUsageMessageKey (final Contact contact) {
208                 // The contact must be valid
209                 if (null == contact) {
210                         // Throw NPE
211                         throw new NullPointerException("contact is null"); //NOI18N
212                 } else if (contact.getContactId() == null) {
213                         // Throw again ...
214                         throw new NullPointerException("contact.contactId is null"); //NOI18N
215                 } else if (contact.getContactId() < 1) {
216                         // Not valid
217                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
218                 }
219
220                 // Default key is "unused"
221                 String messageKey = "CONTACT_IS_UNUSED"; //NOI18N
222
223                 // Check user
224                 boolean isUserContact = this.userController.isContactFound(contact);
225
226                 // Check user first
227                 if (isUserContact) {
228                         // Only user
229                         messageKey = "CONTACT_IS_USER"; //NOI18N
230                 }
231
232                 // Return message key
233                 return messageKey;
234         }
235
236         @Override
237         public DialableFaxNumber getFax () {
238                 return this.fax;
239         }
240
241         @Override
242         public void setFax (final DialableFaxNumber fax) {
243                 this.fax = fax;
244         }
245
246         @Override
247         public DialableLandLineNumber getLandLine () {
248                 return this.landLine;
249         }
250
251         @Override
252         public void setLandLine (final DialableLandLineNumber landLine) {
253                 this.landLine = landLine;
254         }
255
256         @Override
257         public User getUser () {
258                 return this.user;
259         }
260
261         @Override
262         public void setUser (final User user) {
263                 this.user = user;
264         }
265
266         /**
267          * Set's all given contact's phone instances: land-line, cellphone and fax
268          * <p>
269          * @param contact Contact to set phone instances for
270          */
271         private void setPhoneInstances (final Contact contact) {
272                 // The contact must be valid
273                 if (null == contact) {
274                         // Throw NPE
275                         throw new NullPointerException("contact is null"); //NOI18N
276                 } else if (contact.getContactId() == null) {
277                         // Throw again ...
278                         throw new NullPointerException("contact.contactId is null"); //NOI18N
279                 } else if (contact.getContactId() < 1) {
280                         // Not valid
281                         throw new IllegalArgumentException(MessageFormat.format("contact.contactId={0} is not valid", contact.getContactId())); //NOI18N
282                 }
283
284                 // Is cellphone set?
285                 if (contact.getContactCellphoneNumber() instanceof DialableCellphoneNumber) {
286                         // Yes, then set it in admin controller
287                         this.setCellPhoneNumber(contact.getContactCellphoneNumber());
288                 }
289
290                 // Is land-line set?
291                 if (contact.getContactLandLineNumber() instanceof DialableLandLineNumber) {
292                         // Yes, then set it in admin controller
293                         this.setLandLine(contact.getContactLandLineNumber());
294                 }
295
296                 // Is fax set?
297                 if (contact.getContactFaxNumber() instanceof DialableFaxNumber) {
298                         // Yes, then set it in admin controller
299                         this.setFax(contact.getContactFaxNumber());
300                 }
301         }
302
303 }