/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * Copyright 2008 Pentaho Corporation. All rights reserved. */ package org.pentaho.mantle.client.commands; import org.pentaho.gwt.widgets.client.dialogs.IDialogCallback; import org.pentaho.gwt.widgets.client.dialogs.MessageDialogBox; import org.pentaho.mantle.client.messages.Messages; import org.pentaho.mantle.client.service.MantleServiceCache; import org.pentaho.mantle.login.client.MantleLoginDialog; import com.google.gwt.user.client.Command; import com.google.gwt.user.client.Timer; import com.google.gwt.user.client.rpc.AsyncCallback; /** * This abstract class needs to be extend when using any command that * requires server authentication. The execute method first check whether the user is authenticated * or not and then if the user is authentication is performs the command described in the * performOperation method, otherwise the login screen will be displayed back to the user * @author rmansoor * */ public abstract class AbstractCommand implements Command{ private CommandCallback commandCallback; /** * Checks if the user is logged in, if the user is then it perform operation other * wise user if ask to perform the login operation again * @param feedback if the feedback needs to be sent back to the caller. Not used currently */ public void execute(final boolean feedback) { final AsyncCallback<Boolean> callback = new AsyncCallback<Boolean>() { public void onSuccess(Boolean result) { if(result) { performOperation(feedback); } else { doLogin(feedback); } } public void onFailure(Throwable caught) { doLogin(feedback); } }; MantleServiceCache.getService().isAuthenticated(callback); } /** * Checks if the user is logged in, if the user is then it perform operation other * wise user if ask to perform the login operation again. * <p> * After the operation is executed, the CommandCallback object receives an afterExecute() * notification. * * @param commandCallback CommandCallback object to receive execution notification. */ public void execute(CommandCallback commandCallback){ execute(commandCallback, false); } /** * Checks if the user is logged in, if the user is then it perform operation other * wise user if ask to perform the login operation again. * <p> * After the operation is executed, the CommandCallback object receives an afterExecute() * notification. * * @param commandCallback CommandCallback object to receive execution notification. * @param feedback if the feedback needs to be sent back to the caller. Not used currently */ public void execute(final CommandCallback commandCallback, final boolean feedback){ this.commandCallback = commandCallback; final AsyncCallback<Boolean> callback = new AsyncCallback<Boolean>() { public void onSuccess(Boolean result) { if(result) { performOperation(feedback); commandCallback.afterExecute(); } else { doLogin(feedback); } } public void onFailure(Throwable caught) { doLogin(feedback); } }; MantleServiceCache.getService().isAuthenticated(callback); } /** * Checks if the user is logged in, if the user is then it perform operation other * wise user if ask to perform the login operation again */ public void execute() { final AsyncCallback<Boolean> callback = new AsyncCallback<Boolean>() { public void onSuccess(Boolean result) { if(result) { performOperation(); } else { doLogin(); } } public void onFailure(Throwable caught) { doLogin(); } }; MantleServiceCache.getService().isAuthenticated(callback); } /** * Display the login screen and and validate the credentials supplied by the user * if the credentials are correct, the execute method is being invoked other wise * error dialog is being display. On clicking ok button on the dialog box, login * screen is displayed again and process is repeated until the user click cancel * or user is successfully authenticated * @param feedback if the feedback needs to be sent back to the caller. Not used currently */ private void doLogin(final boolean feedback) { MantleLoginDialog.performLogin(new AsyncCallback<Object>() { public void onFailure(Throwable caught) { MessageDialogBox dialogBox = new MessageDialogBox( Messages.getString("error"), Messages.getString("invalidLogin"), false, false, true) { }; //$NON-NLS-1$ //$NON-NLS-2$ dialogBox.setCallback(new IDialogCallback() { public void cancelPressed() { // do nothing } public void okPressed() { doLogin(feedback); } }); dialogBox.center(); } public void onSuccess(Object result) { if(commandCallback != null){ execute(commandCallback, feedback); } else { execute(feedback); } } }); } /** * Display the login screen and and validate the credentials supplied by the user * if the credentials are correct, the execute method is being invoked other wise * error dialog is being display. On clicking ok button on the dialog box, login * screen is displayed again and process is repeated until the user click cancel * or user is successfully authenticated * */ private void doLogin() { Timer t = new Timer() { @Override public void run() { MantleLoginDialog.performLogin(new AsyncCallback<Object>() { public void onFailure(Throwable caught) { MessageDialogBox dialogBox = new MessageDialogBox( Messages.getString("error"), Messages.getString("invalidLogin"), false, false, true); //$NON-NLS-1$ //$NON-NLS-2$ dialogBox.setCallback(new IDialogCallback() { public void cancelPressed() { // do nothing } public void okPressed() { doLogin(); } }); dialogBox.center(); } public void onSuccess(Object result) { if(commandCallback != null){ execute(commandCallback); } else { execute(); } } }); } }; t.schedule(1); } /** * This is an abstract method which the extending class with implement with logic of performing * specific operation * * */ protected abstract void performOperation(); /** * This is an abstract method which the extending class with implement with logic of performing * specific operation * @param feedback if the feedback needs to be sent back to the caller. Not used currently * * */ protected abstract void performOperation(final boolean feedback); }