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

org.ssssssss.magicapi.servlet.javaee.MagicJavaEEResponseExtension Maven / Gradle / Ivy

The newest version!
package org.ssssssss.magicapi.servlet.javaee;

import org.apache.commons.lang3.StringUtils;
import org.ssssssss.magicapi.core.context.RequestContext;
import org.ssssssss.magicapi.core.servlet.MagicHttpServletResponse;
import org.ssssssss.magicapi.modules.servlet.ResponseModule;
import org.ssssssss.script.annotation.Comment;
import org.ssssssss.script.functions.ExtensionMethod;
import org.ssssssss.script.functions.ObjectConvertExtension;

import javax.servlet.http.Cookie;
import java.util.Map;

public class MagicJavaEEResponseExtension implements ExtensionMethod {

	/**
	 * 添加cookie
	 */
	@Comment("添加Cookie")
	public ResponseModule addCookie(ResponseModule module, @Comment(name = "cookie", value = "Cookie对象") Cookie cookie) {
		if (cookie != null) {
			MagicHttpServletResponse response = RequestContext.getHttpServletResponse();
			if (response != null) {
				response.addCookie(new MagicJavaEECookie(cookie));
			}
		}
		return module;
	}

	/**
	 * 批量添加cookie
	 */
	@Comment("批量添加Cookie")
	public ResponseModule addCookies(ResponseModule module, @Comment(name = "cookies", value = "Cookies") Map cookies) {
		return addCookies(module, cookies, null);

	}

	/**
	 * 添加cookie
	 */
	@Comment("添加Cookie")
	public ResponseModule addCookie(ResponseModule module, @Comment(name = "name", value = "Cookie名") String name,
									@Comment(name = "value", value = "Cookie值") String value,
									@Comment(name = "options", value = "Cookie选项,如`path`、`httpOnly`、`domain`、`maxAge`") Map options) {
		if (StringUtils.isNotBlank(name)) {
			Cookie cookie = new Cookie(name, value);
			if (options != null) {
				Object path = options.get("path");
				if (path != null) {
					cookie.setPath(path.toString());
				}
				Object httpOnly = options.get("httpOnly");
				if (httpOnly != null) {
					cookie.setHttpOnly("true".equalsIgnoreCase(httpOnly.toString()));
				}
				Object domain = options.get("domain");
				if (domain != null) {
					cookie.setDomain(domain.toString());
				}
				Object maxAge = options.get("maxAge");
				int age;
				if (maxAge != null && (age = ObjectConvertExtension.asInt(maxAge, Integer.MIN_VALUE)) != Integer.MIN_VALUE) {
					cookie.setMaxAge(age);
				}
			}
			addCookie(module, cookie);
		}
		return module;
	}


	/**
	 * 添加cookie
	 */
	@Comment("添加Cookie")
	public ResponseModule addCookie(ResponseModule module, @Comment(name = "name", value = "cookie名") String name,
									@Comment(name = "value", value = "cookie值") String value) {
		if (StringUtils.isNotBlank(name)) {
			addCookie(module, new Cookie(name, value));
		}
		return module;
	}

	/**
	 * 批量添加cookie
	 */
	@Comment("批量添加Cookie")
	public ResponseModule addCookies(ResponseModule module,
									 @Comment(name = "cookies", value = "Cookies") Map cookies,
									 @Comment(name = "options", value = "Cookie选项,如`path`、`httpOnly`、`domain`、`maxAge`") Map options) {
		if (cookies != null) {
			for (Map.Entry entry : cookies.entrySet()) {
				addCookie(module, entry.getKey(), entry.getValue(), options);
			}
		}
		return module;
	}

	@Override
	public Class support() {
		return ResponseModule.class;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy