Wenjun Ruan
1 year ago
committed by
GitHub
7 changed files with 137 additions and 66 deletions
@ -0,0 +1,81 @@ |
|||||||
|
/* |
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||||
|
* contributor license agreements. See the NOTICE file distributed with |
||||||
|
* this work for additional information regarding copyright ownership. |
||||||
|
* The ASF licenses this file to You 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.apache.dolphinscheduler.plugin.datasource.ssh; |
||||||
|
|
||||||
|
import static com.google.common.base.Preconditions.checkNotNull; |
||||||
|
|
||||||
|
import org.apache.commons.lang3.StringUtils; |
||||||
|
import org.apache.sshd.client.SshClient; |
||||||
|
import org.apache.sshd.client.session.ClientSession; |
||||||
|
import org.apache.sshd.common.config.keys.loader.KeyPairResourceLoader; |
||||||
|
import org.apache.sshd.common.util.security.SecurityUtils; |
||||||
|
|
||||||
|
import java.io.IOException; |
||||||
|
import java.security.GeneralSecurityException; |
||||||
|
import java.security.KeyPair; |
||||||
|
import java.time.Duration; |
||||||
|
import java.util.Collection; |
||||||
|
|
||||||
|
import lombok.extern.slf4j.Slf4j; |
||||||
|
|
||||||
|
@Slf4j |
||||||
|
public class SshClientWrapper implements AutoCloseable { |
||||||
|
|
||||||
|
private SshClient sshClient; |
||||||
|
|
||||||
|
private final ClientSession clientSession; |
||||||
|
|
||||||
|
public SshClientWrapper( |
||||||
|
String ip, Integer port, String userName, String password, String privateKey) |
||||||
|
throws IOException, |
||||||
|
GeneralSecurityException { |
||||||
|
checkNotNull(ip); |
||||||
|
checkNotNull(port); |
||||||
|
checkNotNull(userName); |
||||||
|
clientSession = createSession(ip, port, userName); |
||||||
|
if (StringUtils.isNotEmpty(password)) { |
||||||
|
clientSession.addPasswordIdentity(password); |
||||||
|
} |
||||||
|
if (StringUtils.isNotEmpty(privateKey)) { |
||||||
|
KeyPairResourceLoader loader = SecurityUtils.getKeyPairResourceParser(); |
||||||
|
Collection<KeyPair> keyPairCollection = loader.loadKeyPairs(null, null, null, privateKey); |
||||||
|
for (KeyPair keyPair : keyPairCollection) { |
||||||
|
clientSession.addPublicKeyIdentity(keyPair); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public boolean isAuth() throws IOException { |
||||||
|
return clientSession.auth().verify(Duration.ofSeconds(10)).isSuccess(); |
||||||
|
} |
||||||
|
|
||||||
|
private ClientSession createSession(String ip, Integer port, String userName) throws IOException { |
||||||
|
sshClient = SshClient.setUpDefaultClient(); |
||||||
|
sshClient.start(); |
||||||
|
return sshClient.connect(userName, ip, port).verify(Duration.ofSeconds(10)).getSession(); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void close() throws Exception { |
||||||
|
try ( |
||||||
|
ClientSession clientSession1 = clientSession; |
||||||
|
SshClient sshClient1 = sshClient) { |
||||||
|
// closed the resources
|
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue