View Javadoc
1   /**
2    * This file Copyright (c) 2015 Magnolia International
3    * Ltd.  (http://www.magnolia-cms.com). All rights reserved.
4    *
5    *
6    * This file is dual-licensed under both the Magnolia
7    * Network Agreement and the GNU General Public License.
8    * You may elect to use one or the other of these licenses.
9    *
10   * This file is distributed in the hope that it will be
11   * useful, but AS-IS and WITHOUT ANY WARRANTY; without even the
12   * implied warranty of MERCHANTABILITY or FITNESS FOR A
13   * PARTICULAR PURPOSE, TITLE, or NONINFRINGEMENT.
14   * Redistribution, except as permitted by whichever of the GPL
15   * or MNA you select, is prohibited.
16   *
17   * 1. For the GPL license (GPL), you can redistribute and/or
18   * modify this file under the terms of the GNU General
19   * Public License, Version 3, as published by the Free Software
20   * Foundation.  You should have received a copy of the GNU
21   * General Public License, Version 3 along with this program;
22   * if not, write to the Free Software Foundation, Inc., 51
23   * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
24   *
25   * 2. For the Magnolia Network Agreement (MNA), this file
26   * and the accompanying materials are made available under the
27   * terms of the MNA which accompanies this distribution, and
28   * is available at http://www.magnolia-cms.com/mna.html
29   *
30   * Any modifications to this file must keep this entire header
31   * intact.
32   *
33   */
34  package info.magnolia.cache.browser.app;
35  
36  import info.magnolia.cache.browser.app.event.InitializeContainerAfterSuccessfulLoginEvent;
37  import info.magnolia.context.Context;
38  import info.magnolia.context.MgnlContext;
39  import info.magnolia.event.EventBus;
40  import info.magnolia.module.cache.app.CacheApp;
41  import info.magnolia.objectfactory.ComponentProvider;
42  import info.magnolia.ui.api.app.AppContext;
43  import info.magnolia.ui.api.app.AppEventBus;
44  import info.magnolia.ui.api.app.AppView;
45  import info.magnolia.ui.api.app.SubAppDescriptor;
46  import info.magnolia.ui.api.location.DefaultLocation;
47  import info.magnolia.ui.api.location.Location;
48  import info.magnolia.ui.contentapp.browser.BrowserLocation;
49  import info.magnolia.ui.dialog.formdialog.FormDialogPresenter;
50  import info.magnolia.ui.dialog.formdialog.FormDialogPresenterFactory;
51  import info.magnolia.ui.form.EditorCallback;
52  
53  import javax.inject.Inject;
54  import javax.inject.Named;
55  
56  import com.vaadin.data.util.PropertysetItem;
57  
58  /**
59   * Browser cache app implementation. Also opens a login dialog when cache browser subApp is requested.
60   */
61  public class BrowserCacheApp extends CacheApp {
62  
63      private static final String DIALOG_ID = "cache-browser-app:restLogin";
64  
65      private final EventBus eventBus;
66      private final FormDialogPresenterFactory formDialogPresenterFactory;
67  
68      @Inject
69      public BrowserCacheApp(AppContext appContext, AppView view, ComponentProvider componentProvider, @Named(AppEventBus.NAME) EventBus eventBus, FormDialogPresenterFactory formDialogPresenterFactory) {
70          super(appContext, view, componentProvider);
71          this.eventBus = eventBus;
72          this.formDialogPresenterFactory = formDialogPresenterFactory;
73      }
74  
75      @Override
76      public void locationChanged(final Location location) {
77          if (location instanceof BrowserLocation) {
78              if (MgnlContext.hasAttribute("cache.browser.app.username", Context.SESSION_SCOPE) && MgnlContext.hasAttribute("cache.browser.app.password", Context.SESSION_SCOPE)) {
79                  super.locationChanged(location);
80              } else {
81                  final FormDialogPresenter formDialogPresenter = formDialogPresenterFactory.createFormDialogPresenter(DIALOG_ID);
82                  final PropertysetItem item = new PropertysetItem();
83                  formDialogPresenter.start(item, DIALOG_ID, getAppContext(), new EditorCallback() {
84                      @Override
85                      public void onSuccess(String s) {
86                          BrowserCacheApp.super.locationChanged(location);
87                          String username = (String) item.getItemProperty("username").getValue();
88                          String password = (String) item.getItemProperty("password").getValue();
89                          MgnlContext.setAttribute("cache.browser.app.username", username, Context.SESSION_SCOPE);
90                          MgnlContext.setAttribute("cache.browser.app.password", password, Context.SESSION_SCOPE);
91                          eventBus.fireEvent(new InitializeContainerAfterSuccessfulLoginEvent(username, password));
92                          formDialogPresenter.closeDialog();
93                      }
94  
95                      @Override
96                      public void onCancel() {
97                          SubAppDescriptor subAppDescriptor = getAppContext().getAppDescriptor().getSubApps().values().iterator().next();
98                          BrowserCacheApp.super.locationChanged(new DefaultLocation(Location.LOCATION_TYPE_APP, getAppContext().getAppDescriptor().getName(), subAppDescriptor.getName()));
99                          formDialogPresenter.closeDialog();
100                     }
101                 });
102             }
103         } else {
104             super.locationChanged(location);
105         }
106     }
107 
108     @Override
109     public void stop() {
110         super.stop();
111         MgnlContext.removeAttribute("cache.browser.app.username", Context.SESSION_SCOPE);
112         MgnlContext.removeAttribute("cache.browser.app.password", Context.SESSION_SCOPE);
113     }
114 }