]> git.mxchange.org Git - jfinancials-war.git/blob
8bdb93a027e39f6a7d910344d61174916984ea6a
[jfinancials-war.git] /
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.jfinancials.beans.financial.model.receipt_item;
18
19 import fish.payara.cdi.jsr107.impl.NamedCache;
20 import java.text.MessageFormat;
21 import java.util.Comparator;
22 import java.util.Iterator;
23 import java.util.LinkedList;
24 import java.util.List;
25 import java.util.Objects;
26 import javax.annotation.PostConstruct;
27 import javax.cache.Cache;
28 import javax.ejb.EJB;
29 import javax.enterprise.context.RequestScoped;
30 import javax.enterprise.event.Event;
31 import javax.enterprise.event.Observes;
32 import javax.enterprise.inject.Any;
33 import javax.faces.view.facelets.FaceletException;
34 import javax.inject.Inject;
35 import javax.inject.Named;
36 import org.mxchange.jfinancials.beans.BaseFinancialsBean;
37 import org.mxchange.jfinancials.beans.user.login.FinancialsUserLoginWebSessionController;
38 import org.mxchange.jfinancials.events.receipt_item.added.ObservableReceiptItemAddedEvent;
39 import org.mxchange.jfinancials.events.receipt_item.added.ReceiptItemAddedEvent;
40 import org.mxchange.jfinancials.exceptions.receipt_item.ReceiptItemAlreadyAddedException;
41 import org.mxchange.jfinancials.model.receipt_item.BillableReceiptItem;
42 import org.mxchange.jfinancials.model.receipt_item.FinancialReceiptItem;
43 import org.mxchange.jfinancials.model.receipt_item.FinancialReceiptItemSessionBeanRemote;
44 import org.mxchange.juserlogincore.events.login.ObservableUserLoggedInEvent;
45
46 /**
47  * A general financial receipt item bean (controller)
48  * <p>
49  * @author Roland Häder<roland@mxchange.org>
50  */
51 @Named ("receiptItemController")
52 @RequestScoped
53 public class FinancialsReceiptItemWebRequestBean extends BaseFinancialsBean implements FinancialsReceiptItemWebRequestController {
54
55         /**
56          * Serial number
57          */
58         private static final long serialVersionUID = 56_189_028_928_372L;
59
60         /**
61          * Event being fired when user has added a new receipt
62          */
63         @Inject
64         @Any
65         private Event<ObservableReceiptItemAddedEvent> addedReceiptItemEvent;
66
67         /**
68          * All receipt items list
69          */
70         private final List<BillableReceiptItem> allReceiptItems;
71
72         /**
73          * Filtered receipt items list
74          */
75         private List<BillableReceiptItem> filteredReceiptItems;
76
77         /**
78          * EJB for general financial receipt purposes
79          */
80         @EJB (lookup = "java:global/jfinancials-ejb/financialReceiptItem!org.mxchange.jfinancials.model.receipt_item.FinancialReceiptItemSessionBeanRemote")
81         private FinancialReceiptItemSessionBeanRemote receiptItemBean;
82
83         /**
84          * A list of all branch offices (globally)
85          */
86         @Inject
87         @NamedCache (cacheName = "receiptItemCache")
88         private Cache<Long, BillableReceiptItem> receiptItemCache;
89
90         /**
91          * User instance
92          */
93         @Inject
94         private FinancialsUserLoginWebSessionController userLoginController;
95
96         /**
97          * User's receipt items
98          */
99         private final List<BillableReceiptItem> userReceiptItems;
100
101         /**
102          * Constructor
103          */
104         @SuppressWarnings ("CollectionWithoutInitialCapacity")
105         public FinancialsReceiptItemWebRequestBean () {
106                 // Call super constructor
107                 super();
108
109                 // Init lists
110                 this.allReceiptItems = new LinkedList<>();
111                 this.userReceiptItems = new LinkedList<>();
112         }
113
114         /**
115          * Adds the completed receipt item to database by calling an EJB business method.
116          * If not all required fields are set, a proper exception is being thrown.
117          * <p>
118          * @return Link outcome
119          */
120         public String addReceiptItem () {
121                 // Are all required fields set?
122                 if (!this.userLoginController.isUserLoggedIn()) {
123                         // Not logged-in
124                         throw new IllegalStateException("User is not logged-in"); //NOI18N
125                 }
126
127                 // Prepare receipt instance
128                 final BillableReceiptItem receiptItem = this.createReceiptInstance();
129
130                 // Is the receipt already there?
131                 if (this.isReceiptItemAdded(receiptItem)) {
132                         // Receipt has already been added
133                         throw new FaceletException(MessageFormat.format("Receipt for itemReceipt.receiptId={0},itemProduct.productId={1},itemProductQuantity={2} has already been added.", receiptItem.getItemReceipt().getReceiptId(), receiptItem.getItemProduct().getProductId(), receiptItem.getItemProductQuantity())); //NOI18N
134                 }
135
136                 // Init variable
137                 final BillableReceiptItem updatedReceiptItem;
138
139                 // All is set, then try to call EJB
140                 try {
141                         // Add it
142                         updatedReceiptItem = this.receiptItemBean.addReceiptItem(receiptItem);
143                 } catch (final ReceiptItemAlreadyAddedException ex) {
144                         // Throw it again
145                         throw new FaceletException(ex);
146                 }
147
148                 // Fire event with updated instance
149                 this.addedReceiptItemEvent.fire(new ReceiptItemAddedEvent(updatedReceiptItem));
150
151                 // Clear bean
152                 this.clear();
153
154                 // Return redirect outcome
155                 return "admin_list_receipt_items?faces-redirect=true"; //NOI18N
156         }
157
158         /**
159          * Observes events being fired when a new receipt item has been added
160          * <p>
161          * @param event Event being fired
162          */
163         public void afterAddedReceiptItemEvent (@Observes final ObservableReceiptItemAddedEvent event) {
164                 // Validate parameter
165                 if (null == event) {
166                         // Throw NPE
167                         throw new NullPointerException("event is null"); //NOI18N
168                 }
169
170                 // Add to cache and general list
171                 this.receiptItemCache.put(event.getReceiptItem().getItemId(), event.getReceiptItem());
172                 this.allReceiptItems.add(event.getReceiptItem());
173
174                 // Is same user?
175                 if (this.userLoginController.isUserLoggedIn() && Objects.equals(event.getReceiptItem().getItemReceipt().getReceiptUser(), this.userLoginController.getLoggedInUser())) {
176                         // Same user, then add it
177                         this.userReceiptItems.add(event.getReceiptItem());
178                 }
179         }
180
181         /**
182          * Event observer for logged-in user
183          * <p>
184          * @param event Event instance
185          */
186         public void afterUserLoginEvent (@Observes final ObservableUserLoggedInEvent event) {
187                 // event should not be null
188                 if (null == event) {
189                         // Throw NPE
190                         throw new NullPointerException("event is null"); //NOI18N
191                 } else if (event.getLoggedInUser() == null) {
192                         // Throw NPE again
193                         throw new NullPointerException("event.loggedInUser is null"); //NOI18N
194                 } else if (event.getLoggedInUser().getUserId() == null) {
195                         // userId is null
196                         throw new NullPointerException("event.loggedInUser.userId is null"); //NOI18N
197                 } else if (event.getLoggedInUser().getUserId() < 1) {
198                         // Not avalid id
199                         throw new IllegalArgumentException(MessageFormat.format("userId of user={0} is not valid: {1}", event.getLoggedInUser(), event.getLoggedInUser().getUserId())); //NOI18N
200                 }
201
202                 // Fill cache with all found user's receipts
203                 for (final BillableReceiptItem receiptItem : this.allReceiptItems) {
204                         // Is same user?
205                         if (Objects.equals(receiptItem.getItemReceipt().getReceiptUser(), event.getLoggedInUser())) {
206                                 // Yes, then add it
207                                 this.userReceiptItems.add(receiptItem);
208                         }
209                 }
210         }
211
212         /**
213          * Returns all receipt items
214          * <p>
215          * @return All receipt items
216          */
217         @SuppressWarnings ("ReturnOfCollectionOrArrayField")
218         public List<BillableReceiptItem> allReceiptItems () {
219                 return this.allReceiptItems;
220         }
221
222         /**
223          * Getter for filtered receipt items
224          * <p>
225          * @return Filtered receipts
226          */
227         @SuppressWarnings ("ReturnOfCollectionOrArrayField")
228         public List<BillableReceiptItem> getFilteredReceiptItems () {
229                 return this.filteredReceiptItems;
230         }
231
232         /**
233          * Setter for filtered receipt items
234          * <p>
235          * @param filteredReceiptItems Filtered receipt items
236          */
237         @SuppressWarnings ("AssignmentToCollectionOrArrayFieldFromParameter")
238         public void setFilteredReceiptItems (final List<BillableReceiptItem> filteredReceiptItems) {
239                 this.filteredReceiptItems = filteredReceiptItems;
240         }
241
242         @PostConstruct
243         public void initCache () {
244                 // Is cache there?
245                 if (!this.receiptItemCache.iterator().hasNext()) {
246                         // Get whole list
247                         final List<BillableReceiptItem> receiptItems = this.receiptItemBean.allReceiptItems();
248
249                         // Add all
250                         for (final BillableReceiptItem receiptItem : receiptItems) {
251                                 // Add it to cache
252                                 this.receiptItemCache.put(receiptItem.getItemId(), receiptItem);
253                         }
254                 }
255
256                 // Is the list empty, but filled cache?
257                 if (this.allReceiptItems.isEmpty() && this.receiptItemCache.iterator().hasNext()) {
258                         // Get iterator
259                         final Iterator<Cache.Entry<Long, BillableReceiptItem>> iterator = this.receiptItemCache.iterator();
260
261                         // Build up list
262                         while (iterator.hasNext()) {
263                                 // GEt next element
264                                 final Cache.Entry<Long, BillableReceiptItem> next = iterator.next();
265
266                                 // Add to list
267                                 this.allReceiptItems.add(next.getValue());
268                         }
269
270                         // Sort list
271                         this.allReceiptItems.sort(new Comparator<BillableReceiptItem>() {
272                                 @Override
273                                 public int compare (final BillableReceiptItem o1, final BillableReceiptItem o2) {
274                                         return o1.getItemId() > o2.getItemId() ? 1 : o1.getItemId() < o2.getItemId() ? -1 : 0;
275                                 }
276                         }
277                         );
278                 }
279         }
280
281         @Override
282         public boolean isReceiptItemAdded (final BillableReceiptItem receiptItem) {
283                 // Always trust the cache
284                 return this.allReceiptItems.contains(receiptItem);
285         }
286
287         /**
288          * Clears this bean
289          */
290         private void clear () {
291                 // Clear all fields
292         }
293
294         /**
295          * Returns a fully created receipt item instance (except primary key, of course)
296          * <p>
297          * @return Receipt item instance
298          */
299         private BillableReceiptItem createReceiptInstance () {
300                 // Init receipt instance
301                 // @TODO Unfinished:
302                 final BillableReceiptItem receiptItem = new FinancialReceiptItem();
303
304                 // Set optional fields
305
306                 // Return it
307                 return receiptItem;
308         }
309 }