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

io.vertx.ext.web.sstore.SessionStore Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR1
Show newest version
/*
 * Copyright 2014 Red Hat, Inc.
 *
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  and Apache License v2.0 which accompanies this distribution.
 *
 *  The Eclipse Public License is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  The Apache License v2.0 is available at
 *  http://www.opensource.org/licenses/apache2.0.php
 *
 *  You may elect to redistribute this code under either of these licenses.
 */

package io.vertx.ext.web.sstore;

import io.vertx.codegen.annotations.Fluent;
import io.vertx.codegen.annotations.Nullable;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.*;
import io.vertx.core.json.JsonObject;
import io.vertx.ext.web.Session;
import io.vertx.ext.web.sstore.impl.ClusteredSessionStoreImpl;
import io.vertx.ext.web.sstore.impl.LocalSessionStoreImpl;

/**
 * A session store is used to store sessions for an Vert.x-Web web app
 *
 * @author Tim Fox
 * @author Paulo Lopes
 */
@VertxGen
public interface SessionStore {

  /**
   * Create a Session store given a backend and configuration JSON.
   *
   * @param vertx vertx instance
   * @return the store or runtime exception
   */
  static SessionStore create(Vertx vertx) {
    return create(vertx, new JsonObject());
  }

  /**
   * Create a Session store given a backend and configuration JSON.
   *
   * @param vertx vertx instance
   * @param options extra options for initialization
   * @return the store or runtime exception
   */
  static SessionStore create(Vertx vertx, JsonObject options) {
    SessionStore defaultStore;

    try {
      defaultStore = ServiceHelper.loadFactoryOrNull(SessionStore.class);
      if (defaultStore != null) {
        return defaultStore.init(vertx, options);
      }
    } catch (RuntimeException e) {
      // ignore that it cannot be loaded, falling back to the next
    }

    if (vertx.isClustered()) {
      defaultStore = new ClusteredSessionStoreImpl();
    } else {
      defaultStore = new LocalSessionStoreImpl();
    }

    return defaultStore.init(vertx, options);
  }

  /**
   * Initialize this store.
   *
   * @param vertx  the vertx instance
   * @param options  optional Json with extra configuration options
   * @return  self
   */
  @Fluent
  SessionStore init(Vertx vertx, JsonObject options);

  /**
   * Default length for a session id.
   * More info: https://www.owasp.org/index.php/Session_Management_Cheat_Sheet
   */
  int DEFAULT_SESSIONID_LENGTH = 16;

  /**
   * The retry timeout value in milli seconds used by the session handler when it retrieves a value from the store.

* * A non positive value means there is no retry at all. * * @return the timeout value, in ms */ long retryTimeout(); /** * Create a new session using the default min length. * * @param timeout - the session timeout, in ms * * @return the session */ Session createSession(long timeout); /** * Create a new session. * * @param timeout - the session timeout, in ms * @param length - the required length for the session id * * @return the session */ Session createSession(long timeout, int length); /** * Get the session with the specified ID. * * @param cookieValue the unique ID of the session * @param resultHandler will be called with a result holding the session, or a failure */ @Fluent default SessionStore get(String cookieValue, Handler> resultHandler) { get(cookieValue) .onComplete(resultHandler); return this; } /** * @see SessionStore#get(String, Handler) * @param cookieValue the unique ID of the session * @return future that will be called with a result holding the session, or a failure */ Future<@Nullable Session> get(String cookieValue); /** * Delete the session with the specified ID. * * @param id the session id * @param resultHandler will be called with a success or a failure */ @Fluent default SessionStore delete(String id, Handler> resultHandler) { delete(id) .onComplete(resultHandler); return this; } /** * @see SessionStore#delete(String, Handler) * @param cookieValue the unique ID of the session * @return future that will be called with a result, or a failure */ Future delete(String cookieValue); /** * Add a session with the specified ID. * * @param session the session * @param resultHandler will be called with a success or a failure */ @Fluent default SessionStore put(Session session, Handler> resultHandler) { put(session) .onComplete(resultHandler); return this; } /** * @see SessionStore#put(Session, Handler) * @param session the session * @return future that will be called with a result, or a failure */ Future put(Session session); /** * Remove all sessions from the store. * * @param resultHandler will be called with a success or a failure */ @Fluent default SessionStore clear(Handler> resultHandler) { clear() .onComplete(resultHandler); return this; } /** * @see SessionStore#clear(Handler) * @return future that will be called with a result, or a failure */ Future clear(); /** * Get the number of sessions in the store. *

* Beware of the result which is just an estimate, in particular with distributed session stores. * * @param resultHandler will be called with the number, or a failure */ @Fluent default SessionStore size(Handler> resultHandler) { size() .onComplete(resultHandler); return this; } /** * @see SessionStore#size(Handler) * @return future that will be called with a result, or a failure */ Future size(); /** * Close the store */ void close(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy