]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/beans/localization/JobsLocalizationSessionBean.java
Please cherry-pick:
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / localization / JobsLocalizationSessionBean.java
1 /*
2  * Copyright (C) 2016 - 2018 Free Software Foundation
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.localization;
18
19 import java.text.MessageFormat;
20 import java.text.NumberFormat;
21 import java.util.Iterator;
22 import java.util.LinkedHashMap;
23 import java.util.Locale;
24 import java.util.Map;
25 import java.util.Objects;
26 import javax.annotation.PostConstruct;
27 import javax.enterprise.context.SessionScoped;
28 import javax.enterprise.event.Event;
29 import javax.enterprise.event.Observes;
30 import javax.enterprise.inject.Any;
31 import javax.faces.context.FacesContext;
32 import javax.inject.Inject;
33 import javax.inject.Named;
34 import org.mxchange.jcoreee.events.locale.LocaleChangeEvent;
35 import org.mxchange.jcoreee.events.locale.ObservableLocaleChangeEvent;
36 import org.mxchange.jjobs.beans.BaseJobsBean;
37 import org.mxchange.juserlogincore.events.login.ObservableUserLoggedInEvent;
38 import org.mxchange.juserlogincore.events.logout.ObservableUserLogoutEvent;
39
40 /**
41  * A session-scoped bean for handling localization/internationalization changes.
42  * This class is based on an example at [1] from mkyong.
43  * <p>
44  * 1: http://www.mkyong.com/jsf2/jsf-2-internationalization-example/
45  * <p>
46  * @author Roland Häder<roland@mxchange.org>
47  */
48 @Named ("localizationController")
49 @SessionScoped
50 public class JobsLocalizationSessionBean extends BaseJobsBean implements JobsLocalizationSessionController {
51
52         /**
53          * Number format
54          */
55         private static NumberFormat NUMBER_FORMAT;
56
57         /**
58          * Serial number
59          */
60         private static final long serialVersionUID = 158_768_216_759_107L;
61
62         /**
63          * Current Locale
64          */
65         private Locale locale;
66
67         /**
68          * Event being fired when a locale has changed successfully
69          */
70         @Inject
71         @Any
72         private Event<ObservableLocaleChangeEvent> localeChangeEvent;
73
74         /**
75          * Locale code (example: de for Germany)
76          */
77         private String localeCode;
78
79         /**
80          * A map of all supported locales, using language code as key
81          */
82         private final Map<String, Locale> supportedLocales;
83
84         /**
85          * Default constructor
86          */
87         public JobsLocalizationSessionBean () {
88                 // Call super constructor
89                 super();
90
91                 // Init locale list
92                 this.supportedLocales = new LinkedHashMap<>(2);
93         }
94
95         /**
96          * Event observer for logged-in user
97          * <p>
98          * @param event Event instance
99          */
100         public void afterUserLoginEvent (@Observes final ObservableUserLoggedInEvent event) {
101                 // event should not be null
102                 if (null == event) {
103                         // Throw NPE
104                         throw new NullPointerException("event is null"); //NOI18N
105                 } else if (event.getLoggedInUser() == null) {
106                         // Throw NPE again
107                         throw new NullPointerException("event.loggedInUser is null"); //NOI18N
108                 } else if (event.getLoggedInUser().getUserId() == null) {
109                         // userId is null
110                         throw new NullPointerException("event.loggedInUser.userId is null"); //NOI18N
111                 } else if (event.getLoggedInUser().getUserId() < 1) {
112                         // Not avalid id
113                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getLoggedInUser(), event.getLoggedInUser().getUserId())); //NOI18N
114                 }
115
116                 // Is the locale set?
117                 if (event.getLoggedInUser().getUserLocale() instanceof Locale) {
118                         // Get user local
119                         final Locale userLocale = event.getLoggedInUser().getUserLocale();
120
121                         // Change locale
122                         this.changeLocale(userLocale, Boolean.TRUE);
123                 }
124         }
125
126         /**
127          * Event observer for logged-out user
128          * <p>
129          * @param event Event instance
130          */
131         public void afterUserLogoutEvent (@Observes final ObservableUserLogoutEvent event) {
132                 // event should not be null
133                 if (null == event) {
134                         // Throw NPE
135                         throw new NullPointerException("event is null"); //NOI18N
136                 } else if (event.getLoggedOutUser() == null) {
137                         // Throw NPE again
138                         throw new NullPointerException("event.loggedOutUser is null"); //NOI18N
139                 } else if (event.getLoggedOutUser().getUserId() == null) {
140                         // userId is null
141                         throw new NullPointerException("event.loggedOutUser.userId is null"); //NOI18N
142                 } else if (event.getLoggedOutUser().getUserId() < 1) {
143                         // Not avalid id
144                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getLoggedOutUser(), event.getLoggedOutUser().getUserId())); //NOI18N
145                 }
146
147                 // Clear this bean as well
148                 this.clear();
149         }
150
151         /**
152          * Changes locale in application
153          */
154         public void doChangeLocale () {
155                 // Is locale code set?
156                 if (this.getLocaleCode() == null) {
157                         // Throw NPE
158                         throw new NullPointerException("this.localeCode is null"); //NOI18N
159                 } else if (this.getLocaleCode().isEmpty()) {
160                         // Throw IAE
161                         throw new IllegalArgumentException("this.localeCode is empty"); //NOI18N
162                 }
163
164                 // Default new locale is null, will be handled later
165                 Locale newLocale = null;
166
167                 // Iterate over whole map
168                 for (final Map.Entry<String, Locale> entry : this.getSupportedLocales().entrySet()) {
169                         final Locale foundLocale = entry.getValue();
170
171                         // Does the language match?
172                         if (Objects.equals(foundLocale.toString(), this.getLocaleCode())) {
173                                 // Is found, take it as request locale
174                                 newLocale = foundLocale;
175                                 break;
176                         }
177                 }
178
179                 // Clear locale code field
180                 this.clear();
181
182                 // Has a matching locale
183                 if (null == newLocale) {
184                         // Throw NPE
185                         throw new NullPointerException("this.localeCode=" + this.getLocaleCode() + " cannot be found."); //NOI18N
186                 }
187
188                 // Then change it
189                 this.changeLocale(newLocale, Boolean.TRUE);
190
191                 // Change formatting
192                 NUMBER_FORMAT = NumberFormat.getNumberInstance(newLocale);
193         }
194
195         @Override
196         public String formatCurrency (final Float amount) {
197                 // Format amount
198                 return NUMBER_FORMAT.format(amount);
199         }
200
201         /**
202          * Getter for locale
203          * <p>
204          * @return Locale
205          */
206         public Locale getLocale () {
207                 return this.locale;
208         }
209
210         /**
211          * Setter for locale
212          * <p>
213          * @param locale Locale
214          */
215         public void setLocale (final Locale locale) {
216                 this.locale = locale;
217         }
218
219         /**
220          * Getter for localeCode code
221          * <p>
222          * @return Language code
223          */
224         public String getLocaleCode () {
225                 return this.localeCode;
226         }
227
228         /**
229          * Setter for localeCode code
230          * <p>
231          * @param localeCode Language code
232          */
233         public void setLocaleCode (final String localeCode) {
234                 this.localeCode = localeCode;
235         }
236
237         /**
238          * Getter for selectable localizations
239          * <p>
240          * @return Selectable localizations
241          */
242         @SuppressWarnings ("ReturnOfCollectionOrArrayField")
243         public Map<String, Locale> getSupportedLocales () {
244                 // Return full list
245                 return this.supportedLocales;
246         }
247
248         /**
249          * Initializer for this bean
250          */
251         @PostConstruct
252         public void init () {
253                 // Get default locale
254                 final Locale defaultLocale = FacesContext.getCurrentInstance().getApplication().getDefaultLocale();
255
256                 // Add it to list
257                 this.getSupportedLocales().put(defaultLocale.toString(), defaultLocale);
258
259                 // Get iterator from faces context
260                 final Iterator<Locale> iterator = FacesContext.getCurrentInstance().getApplication().getSupportedLocales();
261
262                 // Add all locales
263                 while (iterator.hasNext()) {
264                         // Get next locale
265                         Locale supportedLocale = iterator.next();
266
267                         // Add it
268                         this.getSupportedLocales().put(supportedLocale.toString(), supportedLocale);
269                 }
270
271                 // Get locale instance from request (e.g. browser)
272                 Locale requestLocale = FacesContext.getCurrentInstance().getExternalContext().getRequestLocale();
273
274                 // Is no country code found?
275                 if (requestLocale.getCountry().isEmpty()) {
276                         // Then try to find one, get language from it
277                         final String language = requestLocale.getLanguage();
278                         Boolean found = Boolean.FALSE;
279
280                         // Iterate over whole map
281                         for (final Map.Entry<String, Locale> entry : this.getSupportedLocales().entrySet()) {
282                                 final String languageCode = entry.getKey();
283                                 final Locale foundLocale = entry.getValue();
284
285                                 // Does the language match?
286                                 if (languageCode.startsWith(language)) {
287                                         // Is found, take it as request locale
288                                         requestLocale = foundLocale;
289                                         found = Boolean.TRUE;
290                                         break;
291                                 }
292                         }
293
294                         // Nothing found?
295                         if (!found) {
296                                 // Then set default locale
297                                 requestLocale = defaultLocale;
298                         }
299                 }
300
301                 // Change locale, may set same back in faces context, but triggers event
302                 this.changeLocale(requestLocale, Boolean.FALSE);
303
304                 // Initial formatting, may change when user chooses other locale
305                 NUMBER_FORMAT = NumberFormat.getNumberInstance(this.locale);
306         }
307
308         /**
309          * Changes current locale in this controller and faces context to given.
310          * This method makes sure that locales with at least language and country
311          * information are being changed to.
312          * <p>
313          * @param locale      New locale to set
314          * @param notifyBeans Whether to notify other beans
315          */
316         private void changeLocale (final Locale locale, final Boolean notifyBeans) {
317                 // Is the locale language_country at least?
318                 if (null == locale) {
319                         // Throw NPE
320                         throw new NullPointerException("locale is null"); //NOI18N
321                 } else if (!locale.toString().contains("_")) { //NOI18N
322                         // Throw IAE
323                         throw new IllegalArgumentException(MessageFormat.format("locale={0} does not have country information set.", locale)); //NOI18N
324                 }
325
326                 // Set locale + code here
327                 this.setLocale(locale);
328                 this.setLocaleCode(locale.toString());
329
330                 // Inform faces context
331                 FacesContext.getCurrentInstance().getViewRoot().setLocale(locale);
332
333                 // Notify other beans?
334                 if (notifyBeans) {
335                         // Fire event
336                         this.localeChangeEvent.fire(new LocaleChangeEvent(locale));
337                 }
338         }
339
340         /**
341          * Clears this bean
342          */
343         private void clear () {
344                 // Clear all fields
345                 this.setLocaleCode(null);
346                 this.setLocale(null);
347         }
348
349 }