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

io.quarkus.vault.runtime.client.secretengine.VaultInternalTOPTSecretEngine Maven / Gradle / Ivy

package io.quarkus.vault.runtime.client.secretengine;

import javax.inject.Singleton;

import io.quarkus.vault.runtime.client.VaultInternalBase;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPCreateKeyBody;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPCreateKeyResult;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPGenerateCodeResult;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPListKeysResult;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPReadKeyResult;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPValidateCodeBody;
import io.quarkus.vault.runtime.client.dto.totp.VaultTOTPValidateCodeResult;

@Singleton
public class VaultInternalTOPTSecretEngine extends VaultInternalBase {

    public VaultTOTPCreateKeyResult createTOTPKey(String token, String keyName, VaultTOTPCreateKeyBody body) {
        String path = "totp/keys/" + keyName;

        // Depending on parameters it might produce an output or not
        if (body.isProducingOutput()) {
            return vaultClient.post(path, token, body, VaultTOTPCreateKeyResult.class, 200);
        } else {
            vaultClient.post(path, token, body, 204);
            return null;
        }
    }

    public VaultTOTPReadKeyResult readTOTPKey(String token, String keyName) {
        String path = "totp/keys/" + keyName;
        return vaultClient.get(path, token, VaultTOTPReadKeyResult.class);
    }

    public VaultTOTPListKeysResult listTOTPKeys(String token) {
        return vaultClient.list("totp/keys", token, VaultTOTPListKeysResult.class);
    }

    public void deleteTOTPKey(String token, String keyName) {
        String path = "totp/keys/" + keyName;
        vaultClient.delete(path, token, 204);
    }

    public VaultTOTPGenerateCodeResult generateTOTPCode(String token, String keyName) {
        String path = "totp/code/" + keyName;
        return vaultClient.get(path, token, VaultTOTPGenerateCodeResult.class);
    }

    public VaultTOTPValidateCodeResult validateTOTPCode(String token, String keyName, String code) {
        String path = "totp/code/" + keyName;
        VaultTOTPValidateCodeBody body = new VaultTOTPValidateCodeBody(code);
        return vaultClient.post(path, token, body, VaultTOTPValidateCodeResult.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy