Package org.internna.iwebmvc.dwr

Source Code of org.internna.iwebmvc.dwr.EncryptedClassConverter

/*
* Copyright 2009-2010 the original author or authors.
*
* 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.internna.iwebmvc.dwr;

import org.directwebremoting.ConversionException;
import org.directwebremoting.extend.InboundVariable;
import org.directwebremoting.extend.NonNestedOutboundVariable;
import org.directwebremoting.extend.OutboundContext;
import org.directwebremoting.extend.OutboundVariable;
import org.directwebremoting.util.LocalUtil;
import org.internna.iwebmvc.IWebMvcException;
import org.internna.iwebmvc.crypto.Cipherer;
import org.internna.iwebmvc.crypto.Decipherer;
import org.internna.iwebmvc.utils.Assert;
import org.internna.iwebmvc.utils.ClassUtils;
import org.springframework.beans.factory.annotation.Required;

/**
* DWR converter for Class objects from/to an encrypted String
*
* @author Jose Noheda
*/
public class EncryptedClassConverter extends AbstractConverter {

    private Cipherer cipherer;
    private Decipherer decipherer;

    @Required public void setCipherer(Cipherer cipherer) {
        this.cipherer = cipherer;
    }

    @Required public void setDecipherer(Decipherer decipherer) {
        this.decipherer = decipherer;
    }

    @Override public Object convertInbound(Class<?> paramType, InboundVariable data) throws ConversionException {
      if (!data.isNull()) {
            String className = LocalUtil.urlDecode(data.getValue());
            try {
                Assert.isEncrypted(decipherer, className);
                return ClassUtils.forName(decipherer.decrypt(className));
            } catch (Exception cne) {
                throw new ConversionException(paramType, new IWebMvcException("Could not convert class from: " + className, cne));
            }
      }
      return null;
    }

    @Override public OutboundVariable convertOutbound(Object data, OutboundContext outctx) throws ConversionException {
        try {
            String name = ClassUtils.getActualClass(data).getName();
            if (name.indexOf("_$$_javassist") > 0) name = name.substring(0, name.indexOf("_$$_javassist"));
            return new NonNestedOutboundVariable(data == null ? "null" : "'" + cipherer.encrypt(name) + "'");
        } catch (Exception e) {
            throw new ConversionException(data.getClass(), new IWebMvcException("Could not generate encrypted class name from: " + data, e));
        }
    }

}
TOP

Related Classes of org.internna.iwebmvc.dwr.EncryptedClassConverter

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.