org.mariadb.jdbc.credential.env.EnvCredentialPlugin Maven / Gradle / Ivy
Show all versions of mariadb-java-client Show documentation
/*
* MariaDB Client for Java
*
* Copyright (c) 2012-2014 Monty Program Ab.
* Copyright (c) 2015-2020 MariaDB Corporation Ab.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with this library; if not, write to Monty Program Ab [email protected].
*
*/
package org.mariadb.jdbc.credential.env;
import org.mariadb.jdbc.HostAddress;
import org.mariadb.jdbc.credential.Credential;
import org.mariadb.jdbc.credential.CredentialPlugin;
import org.mariadb.jdbc.util.Options;
/**
* Authentication using environment variable.
*
* default implementation use environment variable MARIADB_USER and MARIADB_PWD
*
*
example : `jdbc:mariadb://host/db?credentialType=ENV`
*
*
2 options `userKey` and `pwdKey` permits to indicate which environment variable to use.
*/
public class EnvCredentialPlugin implements CredentialPlugin {
private Options options;
private String userName;
@Override
public String type() {
return "ENV";
}
@Override
public String name() {
return "Environment password";
}
@Override
public CredentialPlugin initialize(Options options, String userName, HostAddress hostAddress) {
this.options = options;
this.userName = userName;
return this;
}
@Override
public Credential get() {
String userKey = this.options.nonMappedOptions.getProperty("userKey");
String pwdKey = this.options.nonMappedOptions.getProperty("pwdKey");
String envUser = System.getenv(userKey != null ? userKey : "MARIADB_USER");
return new Credential(
envUser == null ? userName : envUser,
System.getenv(pwdKey != null ? pwdKey : "MARIADB_PWD"));
}
}