Package org.vosao.service.front.impl

Source Code of org.vosao.service.front.impl.LoginServiceImpl

/**
* Vosao CMS. Simple CMS for Google App Engine.
*
* Copyright (C) 2009-2010 Vosao development team.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*
* email: vosao.dev@gmail.com
*/

package org.vosao.service.front.impl;

import javax.servlet.http.HttpSession;

import org.apache.commons.lang.StringUtils;
import org.vosao.business.mq.Topic;
import org.vosao.business.mq.message.SimpleMessage;
import org.vosao.common.BCrypt;
import org.vosao.common.VosaoContext;
import org.vosao.entity.UserEntity;
import org.vosao.filter.AuthenticationFilter;
import org.vosao.i18n.Messages;
import org.vosao.service.ServiceResponse;
import org.vosao.service.front.LoginService;
import org.vosao.service.impl.AbstractServiceImpl;

/**
*
* @author Alexander Oleynik
*
*/
public class LoginServiceImpl extends AbstractServiceImpl
    implements LoginService {

  @Override
  public ServiceResponse login(String email, String password) {
    UserEntity user = getDao().getUserDao().getByEmail(email);
    if (user == null || user.isDisabled()) {
      return ServiceResponse.createErrorResponse(Messages.get(
          "user_not_found"));
    }
    ServiceResponse passwordIncorrect = ServiceResponse.createErrorResponse(
        Messages.get("password_incorrect"));
    if (user.getPassword() == null) {
      if (!StringUtils.isEmpty(password)) {
        return passwordIncorrect;
      }
    }
    else {   
      try {
        if (!BCrypt.checkpw(password, user.getPassword())) {
          return passwordIncorrect;
        }
      }
      catch (Exception e) {
        e.printStackTrace();
        return passwordIncorrect;
      }
    }
    HttpSession session = VosaoContext.getInstance().getRequest()
        .getSession(true);
    session.setAttribute(AuthenticationFilter.USER_SESSION_ATTR,
        user.getEmail());
    String originalView = (String) session.getAttribute(
        AuthenticationFilter.ORIGINAL_VIEW_KEY);
    logger.info(originalView);
    if (originalView != null) {
      session.removeAttribute(AuthenticationFilter.ORIGINAL_VIEW_KEY);
      if (originalView.equals("/login.vm")) {
        originalView = "/cms/index.vm";
      }
    }
    else {
      originalView = "/cms/index.vm";
    }
    getMessageQueue().publish(new SimpleMessage(Topic.LOGIN.name(),
        user.getEmail()));
    return ServiceResponse.createSuccessResponse(originalView);
  }

  @Override
  public ServiceResponse logout() {
    HttpSession session = VosaoContext.getInstance().getRequest()
        .getSession(true);
    session.setAttribute(AuthenticationFilter.USER_SESSION_ATTR, null);
    return ServiceResponse.createSuccessResponse(Messages.get(
        "success_logout"));
  }

  @Override
  public ServiceResponse forgotPassword(String email) {
    try {
      getBusiness().getUserBusiness().forgotPassword(email);
      return ServiceResponse.createSuccessResponse(Messages.get("success"));
    }
    catch (Exception e) {
      return ServiceResponse.createErrorResponse(e.getMessage());
    }
  }
 

}
TOP

Related Classes of org.vosao.service.front.impl.LoginServiceImpl

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.