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

com.appslandia.plum.base.IdentityStoreHandlerBase 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 java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import com.appslandia.common.base.AppLogger;
import com.appslandia.common.base.InitializeObject;
import com.appslandia.common.utils.STR;

import jakarta.inject.Inject;
import jakarta.security.enterprise.credential.Credential;
import jakarta.security.enterprise.identitystore.CredentialValidationResult;
import jakarta.security.enterprise.identitystore.CredentialValidationResult.Status;
import jakarta.security.enterprise.identitystore.IdentityStore;
import jakarta.security.enterprise.identitystore.IdentityStore.ValidationType;
import jakarta.security.enterprise.identitystore.IdentityStoreHandler;

/**
 *
 * @author Loc Ha
 *
 */
public abstract class IdentityStoreHandlerBase extends InitializeObject implements IdentityStoreHandler {

  @Inject
  protected AppLogger appLogger;

  protected List identityStores = new ArrayList<>();

  @Override
  protected void init() throws Exception {
    this.identityStores = Collections.unmodifiableList(this.identityStores);
  }

  @Override
  public CredentialValidationResult validate(Credential credential) {
    this.initialize();

    // Not AuthCredential?
    if (!(credential instanceof AuthCredential)) {
      this.appLogger.warn(
          "HttpAuthenticationMechanismBase is not being used. Returning CredentialValidationResult.NOT_VALIDATED_RESULT");

      return CredentialValidationResult.NOT_VALIDATED_RESULT;
    }
    AuthCredential authCredential = (AuthCredential) credential;
    CredentialValidationResult result = null;

    // RULES: First store that returns Status is not NOT_VALIDATED will be used
    // Only IdentityStoreBase validated

    for (IdentityStore store : this.identityStores) {
      if (!(store instanceof IdentityStoreBase)) {
        continue;
      }
      if (!store.validationTypes().contains(ValidationType.VALIDATE)) {
        continue;
      }

      // Validate authCredential
      result = store.validate(authCredential);

      if (result.getStatus() != Status.NOT_VALIDATED) {
        break;
      }
    }

    // NOT_VALIDATED
    if ((result == null) || (result.getStatus() == Status.NOT_VALIDATED)) {
      this.appLogger
          .warn(STR.fmt("No identity store found for validating credential type '{}'.", credential.getClass()));

      return CredentialValidationResult.NOT_VALIDATED_RESULT;
    }

    // INVALID
    if (result.getStatus() == Status.INVALID) {
      return result;
    }
    AuthUserPrincipal principal = new AuthUserPrincipal((UserPrincipal) result.getCallerPrincipal(), authCredential);
    return new CredentialValidationResult(principal, result.getCallerGroups());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy