]> git.mxchange.org Git - pizzaservice-war.git/blob - src/java/org/mxchange/pizzaapplication/beans/controller/PizzaServiceBean.java
Removed more deprecated and no longer used methods + kept one for functionality
[pizzaservice-war.git] / src / java / org / mxchange / pizzaapplication / beans / controller / PizzaServiceBean.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (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 General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17 package org.mxchange.pizzaapplication.beans.controller;
18
19 import java.io.IOException;
20 import java.sql.SQLException;
21 import java.text.MessageFormat;
22 import java.util.Iterator;
23 import javax.annotation.PostConstruct;
24 import javax.enterprise.context.SessionScoped;
25 import javax.faces.FacesException;
26 import javax.inject.Named;
27 import javax.servlet.ServletException;
28 import javax.servlet.http.HttpServletRequest;
29 import javax.servlet.http.HttpServletResponse;
30 import javax.servlet.http.HttpSession;
31 import org.mxchange.jcore.exceptions.BadTokenException;
32 import org.mxchange.jcore.exceptions.UnsupportedDatabaseBackendException;
33 import org.mxchange.jshop.beans.BaseFrameworkBean;
34 import org.mxchange.jshop.category.Category;
35 import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException;
36 import org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException;
37 import org.mxchange.jshop.item.AddableBasketItem;
38 import org.mxchange.jshop.product.Product;
39 import org.mxchange.pizzaapplication.application.PizzaApplication;
40 import org.mxchange.pizzaapplication.application.PizzaServiceApplication;
41
42 /**
43  * Main application class
44  *
45  * @author Roland Haeder
46  */
47 @Named("controller")
48 @SessionScoped
49 public class PizzaServiceBean extends BaseFrameworkBean implements PizzaBean {
50         /**
51          * Serial id
52          */
53         private static final long serialVersionUID = 58137539530279L;
54
55         /**
56          * Pizza application
57          */
58         private final PizzaApplication app;
59
60         /**
61          * Initializer block
62          */
63         {
64                 // Get new application instance
65                 this.getLogger().debug("INITIALIZER!"); //NOI18N
66                 this.app = new PizzaServiceApplication();
67         }
68
69         /**
70          * Default constructor
71          */
72         public PizzaServiceBean () {
73                 this.getLogger().trace("CALLED!"); //NOI18N
74         }
75
76         @Override
77         @PostConstruct
78         public void init () throws FacesException {
79                 // Trace message
80                 this.getLogger().trace(MessageFormat.format("application={0},basket={1} - CALLED!", this.getApplication(), this.getBasket())); //NOI18N
81
82                 // Must not be null
83                 if (this.getApplication() == null) {
84                         // Abort here
85                         throw new NullPointerException("application is null"); //NOI18N
86                 }
87
88                 try {
89                         // Call init method
90                         this.app.init(this.getApplication());
91                 } catch (final UnsupportedDatabaseBackendException | SQLException | IOException | BadTokenException ex) {
92                         // Continue to throw
93                         throw new FacesException(ex);
94                 }
95         }
96
97         /**
98          * Some "getter" for amount from session
99          *
100          * @param product Product instance
101          * @param session Session instance
102          * @return Amount as string
103          */
104         @Override
105         @Deprecated
106         public String getAmountFromSession (final Product product, final HttpSession session) {
107                 return this.app.getAmountFromSession(product, session);
108         }
109
110         /**
111          * Some "getter" for HTML code 'checked="checked"' if the product is choosen
112          * 
113          * @param product Product instance
114          * @param request Request instance
115          * @param session Session instance
116          * @return Whether the product is choosen
117          */
118         @Override
119         public String getCheckedHtmlFromProduct (final Product product, final HttpServletRequest request, final HttpSession session) {
120                 return this.app.getCheckedHtmlFromProduct(product, request, session);
121         }
122
123         /**
124          * Some "getter" for choose from session
125          * 
126          * @param product Product instance
127          * @param session Session instance
128          * @return Choose as string
129          */
130         @Override
131         @Deprecated
132         public String getChooseFromSession (final Product product, final HttpSession session) {
133                 return this.app.getChooseFromSession(product, session);
134         }
135
136         /**
137          * Some "getter" for HTML code 'disabled="disabled"' for e.g. submit buttons
138          *
139          * @param request Request instance
140          * @param session Session instance
141          * @return Whether the product is choosen
142          */
143         @Override
144         public String getDisabledHtmlFromSession (final HttpServletRequest request, final HttpSession session) throws ServletException {
145                 return this.app.getDisabledHtmlFromSession(request, session);
146         }
147
148         /**
149          * Checks if given Product instance is available and returns a printable
150          * (human-readable) string.
151          * 
152          * @param product Product instance to check
153          * @return Human-readable version of product availability
154          */
155         @Override
156         public String getPrintableProduktAvailability (final Product product) {
157                 return this.app.getPrintableProduktAvailability(product);
158         }
159
160         /**
161          * Some getter for printable value from session or an empty string for null.
162          *
163          * @param session Session instance
164          * @param key Key to get
165          * @return Value from key, empty string for null
166          */
167         @Override
168         public Object getPrintableValeFromSession (final HttpSession session, final String key) {
169                 return this.app.getPrintableValeFromSession(session, key);
170         }
171
172         /**
173          * Some "getter" for a an array of only available products
174          *
175          * @return All products
176          */
177         @Override
178         public Iterator<Product> getAvailableProducts () throws ServletException {
179                 return this.app.getAvailableProducts();
180         }
181
182         /**
183          * Some "getter" for a an array of all products
184          *
185          * @return All products
186          */
187         @Override
188         public Iterator<Product> getAllProducts () throws ServletException {
189                 return this.app.getAllProducts();
190         }
191
192         /**
193          * Some "getter" for a an array of all categories
194          *
195          * @return All categories
196          */
197         @Override
198         public Iterator<Category> getAllCategories () throws ServletException {
199                 return this.app.getAllCategories();
200         }
201
202         /**
203          * Some "getter" for total price of position from request or session.
204          * Single price and amount is multiplyed.
205          *
206          * @param product Product instance
207          * @param request Request instance
208          * @param session Session instance
209          * @return Amount as string
210          */
211         @Override
212         @Deprecated
213         public float getTotalPositionPriceFromRequestSession (final Product product, final HttpServletRequest request, final HttpSession session) {
214                 return this.app.getTotalPositionPriceFromRequestSession(product, request, session);
215         }
216
217         /**
218          * Checks whether the given product is choosen, request overules session.
219          *
220          * @param product Product instance
221          * @param request Request instance
222          * @param session Session instance
223          * @return Whether the product is choosen
224          */
225         @Override
226         @Deprecated
227         public boolean isProductChoosen (final Product product, final HttpServletRequest request, final HttpSession session) {
228                 return this.app.isProductChoosen(product, request, session);
229         }
230
231         /**
232          * Somewhat setter in session
233          *
234          * @param session Session instance
235          * @param key Session key to set
236          * @param value Value to set
237          */
238         @Override
239         public void setValueInSession (final HttpSession session, final String key, final Object value) {
240                 this.app.setValueInSession(session, key, value);
241         }
242
243         @Override
244         public void doAdminAddCategory (final HttpServletRequest request) throws ServletException, CategoryTitleAlreadyUsedException {
245                 this.app.doAdminAddCategory(request);
246         }
247
248         @Override
249         public void doAdminAddProduct (final HttpServletRequest request) throws ServletException, ProductTitleAlreadyUsedException {
250                 this.app.doAdminAddProduct(request);
251         }
252
253         @Override
254         public String generateLinkForParent (final Category category) {
255                 return this.app.generateLinkForParent(category);
256         }
257
258         @Override
259         public String getPrintableProduktCategory (final Product product) throws ServletException {
260                 return this.app.getPrintableProduktCategory(product);
261         }
262
263         @Override
264         public void doAdminHandleProductForms (final HttpServletRequest request, final HttpServletResponse response) throws ServletException {
265                 this.app.doAdminHandleProductForms(request, response);
266         }
267
268         @Override
269         public void doAdminHandleCategoryForms (final HttpServletRequest request, final HttpServletResponse response) throws ServletException {
270                 this.app.doAdminHandleCategoryForms(request, response);
271         }
272
273         @Override
274         public Product getProduct (final AddableBasketItem item) throws ServletException {
275                 // Deligate to application
276                 return this.app.getProduct(item);
277         }
278 }