All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.frameworkset.web.token.ws.v2.CheckTokenContoller Maven / Gradle / Ivy

Go to download

support session share between application cluster nodes and cross domain application nodes.support good application session monitor and session data statitic module.demo site http://session.bbossgroups.com/

There is a newer version: 6.2.7
Show newest version
/*
 *  Copyright 2008 bbossgroups
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
package org.frameworkset.web.token.ws.v2;

import javax.jws.WebService;

import org.frameworkset.util.annotations.ResponseBody;
import org.frameworkset.web.token.TokenException;
import org.frameworkset.web.token.TokenHelper;
import org.frameworkset.web.token.TokenResult;
import org.frameworkset.web.token.TokenService;
import org.frameworkset.web.token.TokenStore;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.frameworkset.util.StringUtil;

/**
 * 

Title: CheckTokenContoller.java

*

Description:

*

bboss workgroup

*

Copyright (c) 2008

* @Date 2014年4月16日 * @author biaoping.yin * @version 3.8.0 */ @WebService(name="CheckTokenService",targetNamespace="org.frameworkset.web.token.ws.v2.CheckTokenService") public class CheckTokenContoller implements CheckTokenService{ private static final Logger log = LoggerFactory.getLogger(TokenController.class); public @ResponseBody(datatype="json") TokenCheckResponse checkToken(String appid,String secret,String token) { TokenCheckResponse tokenCheckResponse = new TokenCheckResponse(); try { if(StringUtil.isEmpty(token)) { tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_EMPTYTOEKN ); return tokenCheckResponse; } TokenResult result = TokenHelper.getTokenService().checkToken(appid,secret,token); if(result.getResult() == null) tokenCheckResponse.setResultcode(TokenStore.RESULT_NOTENABLETOKEN ); else { tokenCheckResponse.setResultcode(TokenStore.RESULT_OK ); tokenCheckResponse.setValidateResult(TokenService.assertDToken(result.getResult())); tokenCheckResponse.setUserAccount(result.getAccount()); tokenCheckResponse.setWorknumber(result.getWorknumber()); } } catch (TokenException e) { tokenCheckResponse.setResultcode(e.getMessage()); //tokenCheckResponse.setMessage(StringUtil.exceptionToString(e)); } catch (Exception e) { log.debug(TokenStore.ERROR_CODE_BACKENDERROR, e); tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_BACKENDERROR); tokenCheckResponse.setMessage(StringUtil.exceptionToString(e)); // tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_BACKENDERROR+":" +e.getMessage()); } return tokenCheckResponse; } public @ResponseBody(datatype="json") TokenCheckResponse checkTicket(String appid,String secret,String ticket) { TokenCheckResponse tokenCheckResponse = new TokenCheckResponse(); try { if(StringUtil.isEmpty(ticket)) { tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_EMPTYTICKET ); return tokenCheckResponse; } TokenResult result = TokenHelper.getTokenService().checkTicket(appid,secret,ticket); if(result.getResult() == null) tokenCheckResponse.setResultcode(TokenStore.RESULT_NOTENABLETOKEN ); else { tokenCheckResponse.setResultcode(TokenStore.RESULT_OK ); tokenCheckResponse.setValidateResult(TokenService.assertDToken(result.getResult())); tokenCheckResponse.setUserAccount(result.getAccount()); tokenCheckResponse.setWorknumber(result.getWorknumber()); } } catch (TokenException e) { tokenCheckResponse.setResultcode(e.getMessage()); //tokenCheckResponse.setMessage(StringUtil.exceptionToString(e)); } catch (Exception e) { log.debug(TokenStore.ERROR_CODE_BACKENDERROR, e); tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_BACKENDERROR); tokenCheckResponse.setMessage(StringUtil.exceptionToString(e)); } return tokenCheckResponse; } public @ResponseBody(datatype="json") TokenCheckResponse checkTempToken(String token) { TokenCheckResponse tokenCheckResponse = new TokenCheckResponse(); try { if(StringUtil.isEmpty(token)) { tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_EMPTYTOEKN ); return tokenCheckResponse; } tokenCheckResponse.setValidateResult(TokenService.assertDToken(TokenHelper.getTokenService().checkTempToken(token))); tokenCheckResponse.setResultcode(TokenStore.RESULT_OK); } catch (TokenException e) { tokenCheckResponse.setResultcode(e.getMessage()); //tokenCheckResponse.setMessage(StringUtil.exceptionToString(e)); } catch (Exception e) { log.debug(TokenStore.ERROR_CODE_BACKENDERROR, e); tokenCheckResponse.setResultcode(TokenStore.ERROR_CODE_BACKENDERROR); tokenCheckResponse.setMessage(StringUtil.exceptionToString(e)); } return tokenCheckResponse; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy