mirror of
https://github.com/google/nomulus.git
synced 2025-04-30 20:17:51 +02:00
Remove the hack that allows us to use JSch with Java 7 on App Engine - basically, we have a modified version of JSch that lets us attach a GAE-friendly thread factory and use that for all JSch threads. TESTED: Verified that RDE SFTP uploads still work on alpha. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=182208225
49 lines
1.6 KiB
Java
49 lines
1.6 KiB
Java
// Copyright 2017 The Nomulus Authors. All Rights Reserved.
|
|
//
|
|
// 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 google.registry.rde;
|
|
|
|
import static java.nio.charset.StandardCharsets.UTF_8;
|
|
|
|
import com.jcraft.jsch.JSch;
|
|
import com.jcraft.jsch.JSchException;
|
|
import dagger.Module;
|
|
import dagger.Provides;
|
|
import google.registry.config.RegistryConfig.Config;
|
|
import google.registry.keyring.api.KeyModule.Key;
|
|
|
|
/** Dagger module for {@link JSch} which provides SSH/SFTP connectivity. */
|
|
@Module
|
|
public final class JSchModule {
|
|
|
|
@Provides
|
|
static JSch provideJSch(
|
|
@Config("rdeSshIdentity") String identity,
|
|
@Key("rdeSshClientPrivateKey") String privateKey,
|
|
@Key("rdeSshClientPublicKey") String publicKey) {
|
|
JSch jsch = new JSch();
|
|
try {
|
|
jsch.addIdentity(
|
|
identity,
|
|
privateKey.getBytes(UTF_8),
|
|
publicKey.getBytes(UTF_8),
|
|
null);
|
|
} catch (JSchException e) {
|
|
throw new RuntimeException(e);
|
|
}
|
|
// TODO(b/13028224): Implement known hosts checking.
|
|
JSch.setConfig("StrictHostKeyChecking", "no");
|
|
return jsch;
|
|
}
|
|
}
|