|
| 1 | +/* |
| 2 | + * Copyright (c) 2025, Oracle and/or its affiliates. |
| 3 | + * Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. |
| 4 | + */ |
| 5 | +package oracle.weblogic.deploy.tool.archive_helper.extract; |
| 6 | + |
| 7 | +import oracle.weblogic.deploy.logging.PlatformLogger; |
| 8 | +import oracle.weblogic.deploy.logging.WLSDeployLogFactory; |
| 9 | +import oracle.weblogic.deploy.tool.archive_helper.ArchiveHelperException; |
| 10 | +import oracle.weblogic.deploy.tool.archive_helper.CommandResponse; |
| 11 | +import oracle.weblogic.deploy.util.ExitCode; |
| 12 | +import oracle.weblogic.deploy.util.WLSDeployArchive; |
| 13 | +import oracle.weblogic.deploy.util.WLSDeployArchiveIOException; |
| 14 | +import picocli.CommandLine.Command; |
| 15 | +import picocli.CommandLine.Option; |
| 16 | + |
| 17 | +import static oracle.weblogic.deploy.tool.ArchiveHelper.LOGGER_NAME; |
| 18 | + |
| 19 | +@Command( |
| 20 | + name = "serverTemplateKeystore", |
| 21 | + header = "Extract server template keystore from the archive file.", |
| 22 | + description = "%nCommand-line options:" |
| 23 | +) |
| 24 | +public class ExtractServerTemplateKeystoreCommand extends ExtractTypeCommandBase { |
| 25 | + private static final String CLASS = ExtractServerTemplateKeystoreCommand.class.getName(); |
| 26 | + private static final PlatformLogger LOGGER = WLSDeployLogFactory.getLogger(LOGGER_NAME); |
| 27 | + private static final String TYPE = "server template keystore"; |
| 28 | + private static final String ERROR_KEY = "WLSDPLY-30066"; |
| 29 | + |
| 30 | + @Option( |
| 31 | + names = {"-server_template_name"}, |
| 32 | + description = "Name of the server template used to segregate the keystores in the archive file", |
| 33 | + required = true |
| 34 | + ) |
| 35 | + private String serverTemplateName; |
| 36 | + |
| 37 | + @Option( |
| 38 | + names = {"-name"}, |
| 39 | + description = "Name of the server template keystore to be extracted from the archive file", |
| 40 | + required = true |
| 41 | + ) |
| 42 | + private String name; |
| 43 | + |
| 44 | + |
| 45 | + @Override |
| 46 | + public CommandResponse call() throws Exception { |
| 47 | + final String METHOD = "call"; |
| 48 | + LOGGER.entering(CLASS, METHOD); |
| 49 | + |
| 50 | + CommandResponse response; |
| 51 | + try { |
| 52 | + initializeOptions(); |
| 53 | + |
| 54 | + WLSDeployArchive.ArchiveEntryType archiveType = WLSDeployArchive.ArchiveEntryType.SERVER_TEMPLATE_KEYSTORE; |
| 55 | + this.archive.extractSegregatedFile(archiveType, this.serverTemplateName, this.name, this.targetDirectory); |
| 56 | + response = new CommandResponse(ExitCode.OK, "WLSDPLY-30065", TYPE, this.name, this.serverTemplateName, |
| 57 | + this.archiveFilePath, this.targetDirectory.getPath()); |
| 58 | + } catch (ArchiveHelperException ex) { |
| 59 | + LOGGER.severe(ERROR_KEY, ex, TYPE, this.name, this.serverTemplateName, this.archiveFilePath, |
| 60 | + this.targetDirectory.getPath(), ex.getLocalizedMessage()); |
| 61 | + response = new CommandResponse(ex.getExitCode(), ERROR_KEY, TYPE, this.name, this.serverTemplateName, |
| 62 | + this.archiveFilePath, this.targetDirectory.getPath(), ex.getLocalizedMessage()); |
| 63 | + } catch (WLSDeployArchiveIOException | IllegalArgumentException ex) { |
| 64 | + LOGGER.severe(ERROR_KEY, ex, TYPE, this.name, this.serverTemplateName, this.archiveFilePath, |
| 65 | + this.targetDirectory.getPath(), ex.getLocalizedMessage()); |
| 66 | + response = new CommandResponse(ExitCode.ERROR, ERROR_KEY, TYPE, this.name, this.serverTemplateName, |
| 67 | + this.archiveFilePath, this.targetDirectory.getPath(), ex.getLocalizedMessage()); |
| 68 | + } |
| 69 | + |
| 70 | + LOGGER.exiting(CLASS, METHOD, response); |
| 71 | + return response; |
| 72 | + } |
| 73 | +} |
0 commit comments