cn.vlabs.umt.ui.servlet.AppProxyServlet.java Source code

Java tutorial

Introduction

Here is the source code for cn.vlabs.umt.ui.servlet.AppProxyServlet.java

Source

/*
 * Copyright (c) 2008-2013 Computer Network Information Center (CNIC), Chinese Academy of Sciences.
 *
 * 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 cn.vlabs.umt.ui.servlet;

import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.util.Date;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.lang.time.DateFormatUtils;
import org.apache.commons.lang.time.DateUtils;
import org.springframework.beans.factory.BeanFactory;

import cn.vlabs.commons.principal.AppPrincipal;
import cn.vlabs.duckling.common.crypto.KeyFile;
import cn.vlabs.duckling.common.crypto.impl.RSAKey;
import cn.vlabs.duckling.common.transmission.SignedEnvelope;
import cn.vlabs.duckling.common.util.Base64;
import cn.vlabs.duckling.common.util.Base64.DecodingException;
import cn.vlabs.umt.common.util.RandomUtil;
import cn.vlabs.umt.common.util.RequestUtil;
import cn.vlabs.umt.proxy.impl.AppCredContent;
import cn.vlabs.umt.services.site.AppService;
import cn.vlabs.umt.services.site.Application;
import cn.vlabs.umt.ui.Attributes;

public class AppProxyServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        String act = request.getParameter("act");
        try {
            if (act != null) {
                if (validRandom(request)) {
                    genHalfProxy(request, response);
                }
            } else {
                sendRandom(request, response);
            }
        } catch (DecodingException e) {
            throw new ServletException(e);
        }
    }

    public void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        doGet(request, response);
    }

    private void genHalfProxy(HttpServletRequest request, HttpServletResponse response) throws IOException {
        String appname = request.getParameter("appname");
        AppService service = (AppService) factory.getBean("ApplicationService");
        Application app = service.getApplication(appname);

        AppCredContent content = new AppCredContent();
        content.setAppKeyId(app.getKeyid());
        content.setIpAddress(RequestUtil.getRemoteIP(request));
        content.setPrincipal(new AppPrincipal(appname));
        Date tommorow = DateUtils.addDays(new Date(), 1);
        content.setValidTime(DateFormatUtils.format(tommorow, "yyyy-MM-dd hh:mm:ss"));

        Application umt = service.getApplication("umt");
        content.setUMTKeyId(umt.getKeyid());

        // UMTCredential cred= (UMTCredential)factory.getBean("UMTCredUtil");
        SignedEnvelope env = new SignedEnvelope(content.toXML());
        // env.genSignature(cred.getUMTKey()); kevin deleted //TODO //FIXME

        response.setCharacterEncoding("UTF-8");
        PrintWriter out = response.getWriter();
        out.println(env.toXML());
        out.flush();
        out.close();
    }

    private boolean validRandom(HttpServletRequest request) throws UnsupportedEncodingException, DecodingException {
        String appname = request.getParameter("appname");
        String random = (String) request.getSession().getAttribute("proxy_random");
        String signed = request.getParameter("signed");
        if (appname != null && random != null && signed != null) {
            byte[] decoded = Base64.decode(signed);

            AppService service = (AppService) factory.getBean("ApplicationService");
            Application app = service.getApplication(appname);
            if (app != null) {
                KeyFile kf = new KeyFile();
                RSAKey key = kf.loadFromString(app.getPublicKey());
                return key.verify(random.getBytes("UTF-8"), decoded);
            }
        }

        return false;
    }

    private void sendRandom(HttpServletRequest request, HttpServletResponse response) throws IOException {
        RandomUtil ru = new RandomUtil();
        String random = ru.getRandom(20);
        request.getSession().setAttribute("proxy_random", random);
        response.setCharacterEncoding("UTF-8");
        PrintWriter out = response.getWriter();
        out.print(random);
        out.flush();
        out.close();
    }

    public void init() throws ServletException {
        factory = (BeanFactory) getServletContext().getAttribute(Attributes.APPLICATION_CONTEXT_KEY);
    }

    private BeanFactory factory;

}