Package org.geomajas.internal.service

Source Code of org.geomajas.internal.service.CommandDispatcherImpl

/*
* This is part of Geomajas, a GIS framework, http://www.geomajas.org/.
*
* Copyright 2008-2011 Geosparc nv, http://www.geosparc.com/, Belgium.
*
* The program is available in open source according to the GNU Affero
* General Public License. All contributions in this program are covered
* by the Geomajas Contributors License Agreement. For full licensing
* details, see LICENSE.txt in the project root.
*/
package org.geomajas.internal.service;

import java.util.List;
import java.util.Locale;

import org.geomajas.command.Command;
import org.geomajas.command.CommandDispatcher;
import org.geomajas.command.CommandRequest;
import org.geomajas.command.CommandResponse;
import org.geomajas.global.ExceptionCode;
import org.geomajas.global.ExceptionDto;
import org.geomajas.global.GeomajasException;
import org.geomajas.security.GeomajasSecurityException;
import org.geomajas.security.SecurityContext;
import org.geomajas.security.SecurityManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.stereotype.Component;

/**
* The <code>CommandDispatcher</code> is the main command execution center. It accepts command from the client and
* executes them on the server.
*
* @author Joachim Van der Auwera
*/
@Component()
public final class CommandDispatcherImpl implements CommandDispatcher {

  private static final long serialVersionUID = -1334372707950671271L;

  private final Logger log = LoggerFactory.getLogger(CommandDispatcherImpl.class);

  @Autowired
  private ApplicationContext applicationContext;

  @Autowired
  private SecurityContext securityContext;

  @Autowired
  private SecurityManager securityManager;

  private long commandCount;

  /**
   * General command execution function.
   * <p/>
   * The security context is built for the authentication token. The security context is cleared again at the end of
   * processing if the security context was changed.
   *
   * @param commandName
   *            name of command to execute
   * @param request
   *            {@link CommandRequest} object for the command (if any)
   * @param userToken
   *            token to identify user
   * @param locale
   *            which should be used for the error messages in the response
   * @return {@link CommandResponse} command response
   */
  public CommandResponse execute(String commandName, CommandRequest request, String userToken, String locale) {
    String id = Long.toString(++commandCount); // NOTE this is not thread safe
    // safe or cluster aware
    log.info("{} execute command {} for user token {} in locale {}, request {}", new Object[] { id, commandName,
        userToken, locale, request });
    long begin = System.currentTimeMillis();
    CommandResponse response;

    String previousToken = securityContext.getToken();
    boolean tokenIdentical;
    if (null == userToken) {
      tokenIdentical = false; // always need to *try* as otherwise login would never be possible
    } else {
      tokenIdentical = userToken.equals(previousToken);
    }
    try {
      if (!tokenIdentical) {
        // need to change security context
        log.debug("login using token {}", userToken);
        if (!securityManager.createSecurityContext(userToken)) {
          // not authorized
          response = new CommandResponse();
          response.setId(id);
          response.getErrors().add(
              new GeomajasSecurityException(ExceptionCode.CREDENTIALS_MISSING_OR_INVALID, userToken));
          response.setExecutionTime(System.currentTimeMillis() - begin);
          return response;
        }
      }

      // check access rights for the command
      if (securityContext.isCommandAuthorized(commandName)) {

        Command command = null;
        try {
          command = applicationContext.getBean(commandName, Command.class);
        } catch (BeansException be) {
          log.error("could not create command bean for {}", new Object[] { commandName }, be);
        }
        if (null != command) {
          response = command.getEmptyCommandResponse();
          response.setId(id);
          try {
            command.execute(request, response);
          } catch (Throwable throwable) { //NOPMD
            log.error("Error executing command", throwable);
            response.getErrors().add(throwable);
          }
        } else {
          response = new CommandResponse();
          response.setId(id);
          response.getErrors().add(new GeomajasException(ExceptionCode.COMMAND_NOT_FOUND, commandName));
        }

      } else {
        // not authorized
        response = new CommandResponse();
        response.setId(id);
        response.getErrors().add(
            new GeomajasSecurityException(ExceptionCode.COMMAND_ACCESS_DENIED, commandName, securityContext
                .getUserId()));
      }

      // Now process the errors for display on the client:
      List<Throwable> errors = response.getErrors();
      Locale localeObject = null;
      if (null != errors && !errors.isEmpty()) {
        log.warn("Command caused exceptions, to be passed on to caller:");
        for (Throwable t : errors) {
          String msg;
          if (!(t instanceof GeomajasException)) {
            msg = t.getMessage();
            if (null == msg) {
              msg = t.getClass().getName();
            } else {
              log.warn(msg, t);
            }
          } else {
            if (log.isDebugEnabled()) {
              log.debug("exception occurred {}, stack trace\n{}", t, t.getStackTrace());
            }
            if (null == localeObject && null != locale) {
              localeObject = new Locale(locale);
            }
            msg = ((GeomajasException) t).getMessage(localeObject);
            log.warn(msg);
          }
         
          // For each exception, make sure the entire exception is sent to the client:
          response.getErrorMessages().add(msg);
          response.getExceptions().add(new ExceptionDto(t.getClass().getName(), msg, t.getStackTrace()));
        }
      }

      response.setExecutionTime(System.currentTimeMillis() - begin);
      if (log.isTraceEnabled()) {
        log.trace("response:\n{}", response);
      }
      return response;
    } finally {
      if (!tokenIdentical) {
        // clear security context
        securityManager.clearSecurityContext();
      }
    }
  }
}
TOP

Related Classes of org.geomajas.internal.service.CommandDispatcherImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.