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

org.openurp.web.EmsCookie Maven / Gradle / Ivy

There is a newer version: 0.41.3
Show newest version
/*
 * OpenURP, Agile University Resource Planning Solution.
 *
 * Copyright © 2014, The OpenURP Software.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful.
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.openurp.web;

import com.google.gson.Gson;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import org.beangle.commons.lang.Strings;
import org.beangle.commons.web.util.CookieUtils;

import java.util.HashMap;
import java.util.Map;

public class EmsCookie {
  Map data;

  public EmsCookie(Map data) {
    this.data = data;
  }

  public final static String CookieName = "URP_PROFILE";
  public final static int COOKIE_AGE = 60 * 60 * 24 * 7; // 7 days

  public static final EmsCookie parse(String cookieValue) {
    Gson gson = new Gson();
    Map v = gson.fromJson(cookieValue, Map.class);
    return new EmsCookie(v);
  }

  public String toJson() {
    Gson gson = new Gson();
    return gson.toJson(this.data);
  }

  public static final EmsCookie get(HttpServletRequest request, HttpServletResponse response) {
    String cv = CookieUtils.getCookieValue(request, EmsCookie.CookieName);
    EmsCookie cookie = null;
    if (org.beangle.commons.lang.Strings.isEmpty(cv)) cookie = new EmsCookie(new HashMap());
    else cookie = EmsCookie.parse(cv);
    String profileId = request.getParameter("contextProfileId");
    if (Strings.isNotBlank(profileId) && null != response) {
      cookie.setProfile(Long.valueOf(profileId));
      set(request, response, cookie);
    }
    return cookie;
  }

  public static final void set(HttpServletRequest request, HttpServletResponse response, EmsCookie ec) {
    CookieUtils.addCookie(request, response, CookieName, ec.toJson(), "/", COOKIE_AGE);
  }

  public long getProfile() {
    String p = data.get("profile");
    if (Strings.isBlank(p)) {
      return 0l;
    } else {
      return Long.parseLong(p);
    }
  }

  public void setProfile(long id) {
    data.put("profile", String.valueOf(id));
  }

  public void put(String key, String value) {
    data.put(key, value);
  }

  public String get(String key) {
    return data.get(key);
  }

  public void remove(String key) {
    data.remove(key);
  }

  public boolean contains(String key) {
    return data.containsKey(key);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy