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

net.oneandone.stool.util.KeyStore Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/**
 * Copyright 1&1 Internet AG, https://github.com/1and1/
 *
 * 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 net.oneandone.stool.util;

import net.oneandone.sushi.fs.file.FileNode;
import net.oneandone.sushi.launcher.Failure;
import net.oneandone.sushi.launcher.Launcher;

import java.io.IOException;
import java.io.StringWriter;

public class KeyStore {
    private final FileNode workDir;
    private final FileNode file;

    public KeyStore(FileNode workDir) {
        this.workDir = workDir;
        this.file = workDir.join("tomcat.jks");
    }

    public void download(String getUrlStart, String hostname) throws IOException {
        pkcs12toKeyStore(pkcs12Store(certificate(getUrlStart, hostname)));
    }

    public String file() {
        return file.getAbsolute();
    }

    public String type() {
        return "JKS";
    }

    public String password() {
        return "changeit";
    }

    public boolean exists() {
        return file.exists();
    }

    private void pkcs12toKeyStore(FileNode pkcs12) throws IOException {
        try {
            workDir.launcher("keytool", "-importkeystore", "-srckeystore", pkcs12.getAbsolute(), "-srcstoretype",
              "pkcs12", "-destkeystore", file.getAbsolute(), "-deststoretype", "jks",
              "-deststorepass", password(), "-srcstorepass", password()).exec();
            Files.stoolFile(file);
        } catch (Failure failure) {
            throw new IOException(failure);
        }
    }

    private FileNode pkcs12Store(Certificate certificate) throws IOException {
        FileNode keystore;

        keystore = workDir.join("tomcat.p12");
        try {
            workDir.launcher("openssl", "pkcs12",
              "-export", "-passout", "pass:" + password(), "-in", certificate.certificate().getAbsolute(),
              "-inkey", certificate.privateKey().getAbsolute(), "-out", keystore.getAbsolute(),
              "-name", "tomcat").exec();
            Files.stoolFile(keystore);
            return keystore;
        } catch (Failure e) {
            throw new IOException(e);
        }
    }

    //--

    public Certificate certificate(String getUrlStart, String hostname) throws IOException {
        Certificate certificate;

        certificate = create(hostname);
        if (!(certificate.privateKey().exists() || certificate.certificate().exists())) {
            generate(getUrlStart + hostname);
            Files.stoolFile(certificate.privateKey());
            Files.stoolFile(certificate.certificate());
        }
        return certificate;
    }

    private Certificate create(String hostname) {
        FileNode crt, key;

        crt = workDir.join(hostname.replace("*", "_") + ".crt");
        key = workDir.join(hostname.replace("*", "_") + ".key");
        return new Certificate(key, crt);

    }

    public void generate(String getUrl) throws IOException {
        extract(doDownload(getUrl));
    }

    private FileNode doDownload(String getUrl) throws IOException {
        StringWriter output;
        FileNode tmp;
        Launcher launcher;
        output = new StringWriter();

        tmp = workDir.getWorld().getTemp().createTempDirectory();
        launcher = tmp.launcher("wget", "--no-check-certificate", getUrl, "-O", tmp.join("cert.zip").getAbsolute());
        try {
            launcher.exec(output);
            return tmp.join("cert.zip");
        } catch (Failure e) {
            throw new IOException(launcher.toString() + " failed:\n" + e.getMessage() + output.toString(), e.getCause());
        }
    }

    private void extract(FileNode certificateZip) throws IOException {
        certificateZip.unzip(workDir);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy