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

com.appslandia.plum.base.AuthByCodeIdentityStore Maven / Gradle / Ivy

// The MIT License (MIT)
// Copyright © 2015 AppsLandia. All rights reserved.

// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:

// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.

// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

package com.appslandia.plum.base;

import com.appslandia.common.base.Out;
import com.appslandia.plum.utils.ServletUtils;

import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import jakarta.security.enterprise.credential.Credential;
import jakarta.servlet.http.HttpServletRequest;

/**
 *
 * @author Loc Ha
 *
 */
@ApplicationScoped
public class AuthByCodeIdentityStore extends IdentityStoreBase implements AuthByCodeTokenHandler {

  public static final String CONFIG_EXPIRY_LEEWAY_MS = AuthByCodeIdentityStore.class.getName() + ".expiry_leeway_ms";

  public static final String CONFIG_TOKEN_BOUND_CLIENT_IP = AuthByCodeIdentityStore.class.getName()
      + ".token_bound_client_ip";
  public static final String CONFIG_TOKEN_BOUND_USER_AGENT = AuthByCodeIdentityStore.class.getName()
      + ".token_bound_user_agent";

  @Inject
  protected AppConfig appConfig;

  @Inject
  protected AuthTokenHandler authTokenHandler;

  @Inject
  protected IdentityHandler identityHandler;

  @Inject
  protected HttpServletRequest currentRequest;

  protected int getExpiryLeewayMs() {
    return this.appConfig.getInt(CONFIG_EXPIRY_LEEWAY_MS, 0);
  }

  protected boolean getTokenBoundClientIp() {
    return this.appConfig.getBool(CONFIG_TOKEN_BOUND_CLIENT_IP, true);
  }

  protected boolean getTokenBoundUserAgent() {
    return this.appConfig.getBool(CONFIG_TOKEN_BOUND_USER_AGENT, true);
  }

  @Override
  public Class getAcceptedCredentialType() {
    return AuthByCodeCredential.class;
  }

  protected String getClientData() {
    String clientIp = getTokenBoundClientIp() ? ServletUtils.getClientIp(this.currentRequest) : "false";
    String userAgent = getTokenBoundUserAgent() ? ServletUtils.getUserAgent(this.currentRequest) : "false";
    return clientIp + "," + userAgent;
  }

  @Override
  protected PrincipalRoles doValidate(String module, Credential credential, Out invalidCode) {
    AuthByCodeCredential authByCodeCredential = (AuthByCodeCredential) credential;
    String tokenBoundData = getTokenBoundData(getClientData(), authByCodeCredential.getCode());

    // Verify Token
    AuthToken authToken = this.authTokenHandler.verifyToken(authByCodeCredential.getSeries(),
        authByCodeCredential.getToken(), module, tokenBoundData, getExpiryLeewayMs(), invalidCode);

    if (invalidCode.value != null) {
      return null;
    }
    return this.identityHandler.validateIdentity(module, authToken.getIdentity(), invalidCode);
  }

  @Override
  public SeriesToken saveToken(String identity, String module, String code, int expiresInSec) {
    String tokenBoundData = getTokenBoundData(getClientData(), code);
    return this.authTokenHandler.saveToken(identity, module, tokenBoundData, expiresInSec);
  }

  protected String getTokenBoundData(String clientData, String code) {
    return clientData + "," + code;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy