Siba/src/org/dclermonte/siba/cli/SibaCLI.java

231 lines
5.8 KiB
Java
Raw Normal View History

2016-04-19 22:34:25 +02:00
/*
2016-04-26 23:02:26 +02:00
* Copyright (C) 2016 Didier Clermonté <dclermonte@april.org>
2016-04-19 22:34:25 +02:00
* Copyright (C) 2016 Christian Pierre Momon <christian.momon@devinsy.fr>
*
* This file is part of Siba.
*
* Siba is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2016-03-29 23:25:18 +02:00
package org.dclermonte.siba.cli;
2016-05-03 17:36:45 +02:00
import java.io.File;
import java.io.IOException;
import java.security.NoSuchAlgorithmException;
import java.util.ResourceBundle;
import org.apache.commons.compress.archivers.ArchiveException;
2016-05-16 23:40:07 +02:00
import org.apache.commons.lang3.StringUtils;
2016-05-19 18:40:00 +02:00
import org.dclermonte.siba.SibaException;
2016-05-03 17:36:45 +02:00
import org.dclermonte.siba.model.SibaManager;
2016-05-02 22:28:35 +02:00
2016-05-16 23:40:07 +02:00
/**
2016-05-19 18:40:00 +02:00
* This class CLI is for use from Command Line Interface.
2016-05-16 23:40:07 +02:00
*
*
*/
2016-03-29 23:25:18 +02:00
public class SibaCLI
2016-05-16 23:40:07 +02:00
2016-03-29 23:25:18 +02:00
{
2016-05-08 22:43:19 +02:00
private static final ResourceBundle BUNDLE = ResourceBundle.getBundle("org.dclermonte.siba.cli.messages"); //$NON-NLS-1$
2016-05-03 17:36:45 +02:00
/**
*
2016-05-19 18:40:00 +02:00
* This method is called for Backup from CLI.
*
* @param directoryToSave
* @param targetDirectory
* @throws ArchiveException
* @throws IOException
2016-05-19 18:40:00 +02:00
* @throws SibaException
*/
2016-05-08 22:43:19 +02:00
public static void backup(final File directoryToSave, final File targetDirectory)
2016-05-19 18:40:00 +02:00
throws ArchiveException, IOException, SibaException
2016-05-03 17:36:45 +02:00
{
File result;
result = SibaManager.backup(directoryToSave, targetDirectory);
2016-05-08 22:43:19 +02:00
System.out.println(BUNDLE.getString("confirmDialog.text") + result.getName()); //$NON-NLS-1$
2016-05-03 17:36:45 +02:00
return;
}
/**
*
2016-05-19 18:40:00 +02:00
* This method is called for Check from CLI.
*
* @param fileToCheck
* @throws NoSuchAlgorithmException
* @throws IOException
*/
2016-05-03 17:36:45 +02:00
public static void check(final File fileToCheck) throws NoSuchAlgorithmException, IOException
{
boolean result;
result = SibaManager.check(fileToCheck);
2016-05-08 22:43:19 +02:00
String yourFile = BUNDLE.getString("confirmDialogYourString.text"); //$NON-NLS-1$
String good = BUNDLE.getString("confirmDialogGood.text"); //$NON-NLS-1$
String bad = BUNDLE.getString("confirmDialogBad.text"); //$NON-NLS-1$
2016-05-03 17:36:45 +02:00
if (result)
{
System.out.println(yourFile + fileToCheck.getName() + good);
}
else
{
System.out.println(yourFile + fileToCheck.getName() + bad);
}
return;
}
/**
*
2016-05-19 18:40:00 +02:00
* This method send help response.
*
*/
2016-05-02 22:28:35 +02:00
public static void help()
{
2016-05-08 22:43:19 +02:00
System.out.println("usage :");
System.out.println("Siba :");
2016-05-02 22:28:35 +02:00
System.out.println("Siba [-h |-help| --help]");
2016-05-08 22:43:19 +02:00
System.out.println("siba backup directoryToSave [target]");
System.out.println("siba check [filename | filename.tgz | filename.tgz.md5]");
2016-05-02 22:28:35 +02:00
}
2016-05-15 16:56:10 +02:00
/**
*
2016-05-19 18:40:00 +02:00
* This method launch CLI.
2016-05-15 16:56:10 +02:00
*
* @param args
* @throws ArchiveException
* @throws IOException
* @throws NoSuchAlgorithmException
*/
2016-05-19 18:40:00 +02:00
public static void run(final String[] args)
throws ArchiveException, IOException, NoSuchAlgorithmException, SibaException
2016-05-02 22:28:35 +02:00
{
try
2016-05-08 22:43:19 +02:00
{
// This part implements an automate.
int parameterCount = args.length;
if (parameterCount == 0)
2016-05-08 22:43:19 +02:00
{
2016-05-02 22:28:35 +02:00
help();
2016-05-08 22:43:19 +02:00
}
else
2016-05-08 22:43:19 +02:00
{
if (StringUtils.equals(args[0], "-h") || StringUtils.equals(args[0], "-help")
|| StringUtils.equals(args[0], "--help"))
2016-05-08 22:43:19 +02:00
{
help();
}
else if (StringUtils.equals(args[0], "backup"))
2016-05-03 17:36:45 +02:00
{
if (parameterCount == 1)
2016-05-03 17:36:45 +02:00
{
System.out.println(BUNDLE.getString("missingDirectoryToSave.text"));
help();
2016-05-08 22:43:19 +02:00
}
else if (parameterCount == 2)
2016-05-08 22:43:19 +02:00
{
File directoryToSave = new File(args[1]);
if (directoryToSave.exists())
{
backup(directoryToSave, new File(System.getProperty("user.dir")));
}
else
{
System.out.println(BUNDLE.getString("directoryToSaveNotExist.text"));
help();
}
2016-05-03 17:36:45 +02:00
}
else if (parameterCount == 3)
2016-05-03 17:36:45 +02:00
{
File directoryToSave = new File(args[1]);
File targetDirectory = new File(args[2]);
if (directoryToSave.exists() && targetDirectory.exists())
{
backup(directoryToSave, targetDirectory);
}
2016-05-19 18:40:00 +02:00
else
{
System.out.println(BUNDLE.getString("directoryNotExist.text"));
help();
}
2016-05-08 22:43:19 +02:00
}
else
{
System.out.println(BUNDLE.getString("badUsage.text"));
2016-05-08 22:43:19 +02:00
help();
2016-05-03 17:36:45 +02:00
}
}
else if (StringUtils.equals(args[0], "check"))
2016-05-03 17:36:45 +02:00
{
if (parameterCount == 1)
2016-05-08 22:43:19 +02:00
{
System.out.println(BUNDLE.getString("missingFileToCheck.text"));
help();
2016-05-08 22:43:19 +02:00
}
else
{
2016-05-20 16:21:10 +02:00
String fileToCheckName;
if (!args[1].endsWith("tgz") && !args[1].endsWith("md5"))
{
2016-05-20 16:21:10 +02:00
fileToCheckName = args[1].concat(".tgz.md5");
}
else if (args[1].endsWith("tgz"))
{
2016-05-20 16:21:10 +02:00
fileToCheckName = args[1].concat(".md5");
}
else
{
fileToCheckName = args[1];
}
File fileToCheck = new File(fileToCheckName);
File fileToCheckFinal;
if (!fileToCheck.isAbsolute())
{
fileToCheckFinal = new File(System.getProperty("user.dir") + "/" + fileToCheckName);
}
else
{
fileToCheckFinal = new File(fileToCheckName);
}
if (fileToCheckFinal.exists())
{
check(fileToCheckFinal);
}
else
{
System.out.println(BUNDLE.getString("missingFileToCheck.text"));
help();
}
2016-05-08 22:43:19 +02:00
}
}
else
{
System.out.println(BUNDLE.getString("badUsage.text"));
help();
2016-05-03 17:36:45 +02:00
}
2016-05-08 22:43:19 +02:00
}
}
2016-05-19 18:40:00 +02:00
catch (SibaException nullException)
{
2016-05-19 18:40:00 +02:00
System.out.println("SibaException = " + nullException.getMessage());
2016-05-02 22:28:35 +02:00
}
2016-05-02 22:28:35 +02:00
}
2016-03-29 23:25:18 +02:00
}