Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2016 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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 org.keycloak.models;
import org.keycloak.common.util.SecretGenerator;
import org.keycloak.credential.CredentialInput;
import org.keycloak.credential.CredentialModel;
import org.keycloak.models.credential.RecoveryAuthnCodesCredentialModel;
import org.keycloak.models.credential.OTPCredentialModel;
import org.keycloak.models.credential.PasswordCredentialModel;
import org.keycloak.models.credential.PasswordUserCredentialModel;
import java.util.HashMap;
import java.util.Map;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
public class UserCredentialModel implements CredentialInput {
@Deprecated /** Use PasswordCredentialModel.TYPE instead **/
public static final String PASSWORD = PasswordCredentialModel.TYPE;
@Deprecated /** Use PasswordCredentialModel.PASSWORD_HISTORY instead **/
public static final String PASSWORD_HISTORY = PasswordCredentialModel.PASSWORD_HISTORY;
@Deprecated /** Use OTPCredentialModel.TOTP instead **/
public static final String TOTP = OTPCredentialModel.TOTP;
@Deprecated /** Use OTPCredentialModel.TOTP instead **/
public static final String HOTP = OTPCredentialModel.HOTP;
@Deprecated /** Legacy stuff. Not used in Keycloak anymore **/
public static final String PASSWORD_TOKEN = CredentialModel.PASSWORD_TOKEN;
public static final String SECRET = CredentialModel.SECRET;
public static final String KERBEROS = CredentialModel.KERBEROS;
public static final String CLIENT_CERT = CredentialModel.CLIENT_CERT;
private String credentialId;
private String type;
private String challengeResponse;
private String device;
private String algorithm;
private boolean adminRequest;
// Additional context informations
protected Map notes = new HashMap<>();
public UserCredentialModel() {
}
public UserCredentialModel(String credentialId, String type, String challengeResponse) {
this.credentialId = credentialId;
this.type = type;
this.challengeResponse = challengeResponse;
this.adminRequest = false;
}
public UserCredentialModel(String credentialId, String type, String challengeResponse, boolean adminRequest) {
this.credentialId = credentialId;
this.type = type;
this.challengeResponse = challengeResponse;
this.adminRequest = adminRequest;
}
public static PasswordUserCredentialModel password(String password) {
return password(password, false);
}
public static PasswordUserCredentialModel password(String password, boolean adminRequest) {
// It uses PasswordUserCredentialModel for backwards compatibility. Some UserStorage providers can check for that type
return new PasswordUserCredentialModel("", PasswordCredentialModel.TYPE, password, adminRequest);
}
@Deprecated /** passwordToken is legacy stuff. Not used in Keycloak anymore **/
public static UserCredentialModel passwordToken(String passwordToken) {
return new UserCredentialModel("", PASSWORD_TOKEN, passwordToken);
}
/**
* @param type must be "totp" or "hotp"
* @param key
* @return
*/
public static UserCredentialModel otp(String type, String key) {
if (type.equals(HOTP)) return hotp(key);
if (type.equals(TOTP)) return totp(key);
throw new RuntimeException("Unknown OTP type");
}
public static UserCredentialModel totp(String key) {
return new UserCredentialModel("", TOTP, key);
}
public static UserCredentialModel hotp(String key) {
return new UserCredentialModel("", HOTP, key);
}
public static UserCredentialModel secret(String password) {
return new UserCredentialModel("", SECRET, password);
}
public static UserCredentialModel kerberos(String token) {
return new UserCredentialModel("", KERBEROS, token);
}
public static UserCredentialModel generateSecret() {
return new UserCredentialModel("", SECRET, SecretGenerator.getInstance().randomString());
}
public static UserCredentialModel buildFromBackupAuthnCode(String backupAuthnCodeInput) {
return buildFromBackupAuthnCode("", backupAuthnCodeInput);
}
public static UserCredentialModel buildFromBackupAuthnCode(String credentialId, String backupAuthnCodeInput) {
return new UserCredentialModel(credentialId, RecoveryAuthnCodesCredentialModel.TYPE, backupAuthnCodeInput);
}
@Override
public String getCredentialId() {
return credentialId;
}
@Override
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public String getChallengeResponse() {
return challengeResponse;
}
public boolean isAdminRequest() {
return adminRequest;
}
/**
* This method exists only because of the backwards compatibility
*/
@Deprecated
public static boolean isOtp(String type) {
return TOTP.equals(type) || HOTP.equals(type);
}
/**
* This method exists only because of the backwards compatibility. It is recommended to use {@link #getChallengeResponse()} instead
*/
public String getValue() {
return getChallengeResponse();
}
public void setValue(String value) {
this.challengeResponse = value;
}
public String getDevice() {
return device;
}
public void setDevice(String device) {
this.device = device;
}
public String getAlgorithm() {
return algorithm;
}
public void setAlgorithm(String algorithm) {
this.algorithm = algorithm;
}
public void setNote(String key, Object value) {
this.notes.put(key, value);
}
public void removeNote(String key) {
this.notes.remove(key);
}
public Object getNote(String key) {
return this.notes.get(key);
}
}