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

com.blade.mvc.handler.SessionHandler Maven / Gradle / Ivy

/**
 * Copyright (c) 2018, biezhi 王爵 nice ([email protected])
 * 

* 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 com.blade.mvc.handler; import com.blade.Blade; import com.blade.kit.ReflectKit; import com.blade.kit.StringKit; import com.blade.kit.UUID; import com.blade.mvc.WebContext; import com.blade.mvc.http.Request; import com.blade.mvc.http.Session; import com.blade.mvc.http.session.SessionManager; import java.time.Instant; import static com.blade.mvc.Const.ENV_KEY_SESSION_TIMEOUT; /** * session handler * * @author biezhi * 2017/6/3 */ public class SessionHandler { private final Blade blade; private final SessionManager sessionManager; private final int timeout; public SessionHandler(Blade blade) { this.blade = blade; this.sessionManager = blade.sessionManager(); this.timeout = blade.environment().getInt(ENV_KEY_SESSION_TIMEOUT, 1800); } public Session createSession(Request request) { Session session = getSession(request); long now = Instant.now().getEpochSecond(); if (null == session) { long expired = now + timeout; session = ReflectKit.newInstance(blade.sessionType()); session.id(UUID.UU32()); session.created(now); session.expired(expired); sessionManager.createSession(session); return session; } else { if (session.expired() < now) { sessionManager.destorySession(session); } else { // renewal long expired = now + timeout; session.expired(expired); } } return session; } private Session getSession(Request request) { String cookieHeader = request.cookie(WebContext.sessionKey()); if (StringKit.isEmpty(cookieHeader)) { return null; } return sessionManager.getSession(cookieHeader); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy