package cn.twinkling.stream.servlet;

import java.io.IOException;
import java.io.PrintWriter;

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

import org.json.JSONException;
import org.json.JSONObject;

import cn.twinkling.stream.util.TokenUtil;

/**
 * According the file name and its size, generate a unique token. And this
 * token will be refer to user's file.
 */
public class TokenServlet extends HttpServlet {
	private static final long serialVersionUID = 2650340991003623753L;
	static final String FILE_NAME_FIELD = "name";
	static final String FILE_SIZE_FIELD = "size";
	static final String TOKEN_FIELD = "token";
	static final String SERVER_FIELD = "server";
	static final String SUCCESS = "success";
	static final String MESSAGE = "message";
	
	/** mark it whether cross domain for uploading */
	static final String CROSS = "CROSS";
	static final String SERVER = "SERVER";
	boolean cross = false;
	String server = null;
	
	@Override
	public void init() throws ServletException {
		cross = Boolean.parseBoolean(getInitParameter(CROSS));
		server = getInitParameter(SERVER);
	}

	@Override
	protected void doGet(HttpServletRequest req, HttpServletResponse resp)
			throws ServletException, IOException {
		String name = req.getParameter(FILE_NAME_FIELD);
		String size = req.getParameter(FILE_SIZE_FIELD);
		String token = TokenUtil.generateToken(name, size);
		
		PrintWriter writer = resp.getWriter();
		
		JSONObject json = new JSONObject();
		try {
			json.put(TOKEN_FIELD, token);
			if (cross)
				json.put(SERVER_FIELD, server);
			json.put(SUCCESS, true);
			json.put(MESSAGE, "");
		} catch (JSONException e) {
		}
		/** TODO: save the token. */
		
		writer.write(json.toString());
	}

	@Override
	protected void doHead(HttpServletRequest req, HttpServletResponse resp)
			throws ServletException, IOException {
		super.doHead(req, resp);
	}

	@Override
	public void destroy() {
		super.destroy();
	}

}
最近下载更多
我真的是小明  LV10 2021年7月19日
hzszwx  LV1 2021年5月30日
yqd123456  LV3 2021年2月2日
maorchao  LV11 2020年11月19日
dzcdhj  LV4 2020年5月19日
1602749187  LV7 2020年4月15日
gaoleipro  LV2 2019年11月6日
killpofeng  LV5 2019年11月6日
kuiis66  LV1 2019年8月19日
skipple3  LV39 2019年8月3日
最近浏览更多
gowangbo1  LV6 6月30日
微信网友_6755417394941952 2023年11月28日
暂无贡献等级
yangk_126 2023年3月14日
暂无贡献等级
lemon1900 2022年9月6日
暂无贡献等级
xuexizhuanyong23  LV16 2022年8月7日
陈小灏  LV15 2022年6月1日
wanglinddad  LV55 2022年4月15日
zhjwgs  LV15 2022年2月22日
haoo123 2022年1月26日
暂无贡献等级
dfkk_love  LV11 2021年12月26日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友