2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-15 16:01:15 +02:00
|
|
|
|
|
|
|
#include "cli/pkisigncsrcommand.hpp"
|
2017-09-05 14:44:56 +02:00
|
|
|
#include "remote/pkiutility.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-10-15 16:01:15 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
REGISTER_CLICOMMAND("pki/sign-csr", PKISignCSRCommand);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String PKISignCSRCommand::GetDescription() const
|
2014-10-15 16:01:15 +02:00
|
|
|
{
|
|
|
|
return "Reads a Certificate Signing Request from stdin and prints a signed certificate on stdout.";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String PKISignCSRCommand::GetShortDescription() const
|
2014-10-15 16:01:15 +02:00
|
|
|
{
|
|
|
|
return "signs a CSR";
|
|
|
|
}
|
|
|
|
|
|
|
|
void PKISignCSRCommand::InitParameters(boost::program_options::options_description& visibleDesc,
|
2017-12-19 15:50:05 +01:00
|
|
|
boost::program_options::options_description& hiddenDesc) const
|
2014-10-15 16:01:15 +02:00
|
|
|
{
|
2014-10-16 14:33:58 +02:00
|
|
|
visibleDesc.add_options()
|
2017-12-19 15:50:05 +01:00
|
|
|
("csr", po::value<std::string>(), "CSR file path (input)")
|
|
|
|
("cert", po::value<std::string>(), "Certificate file path (output)");
|
2014-10-17 15:54:46 +02:00
|
|
|
}
|
2014-10-16 14:33:58 +02:00
|
|
|
|
2014-10-17 15:54:46 +02:00
|
|
|
std::vector<String> PKISignCSRCommand::GetArgumentSuggestions(const String& argument, const String& word) const
|
|
|
|
{
|
2014-10-22 15:36:39 +02:00
|
|
|
if (argument == "csr" || argument == "cert")
|
2014-10-17 15:54:46 +02:00
|
|
|
return GetBashCompletionSuggestions("file", word);
|
|
|
|
else
|
|
|
|
return CLICommand::GetArgumentSuggestions(argument, word);
|
2014-10-15 16:01:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The entry point for the "pki sign-csr" CLI command.
|
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
|
|
|
int PKISignCSRCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
|
|
|
|
{
|
2014-10-22 15:36:39 +02:00
|
|
|
if (!vm.count("csr")) {
|
|
|
|
Log(LogCritical, "cli", "Certificate signing request file path (--csr) must be specified.");
|
2014-10-16 14:33:58 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-22 15:36:39 +02:00
|
|
|
if (!vm.count("cert")) {
|
|
|
|
Log(LogCritical, "cli", "Certificate file path (--cert) must be specified.");
|
2014-10-16 14:33:58 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-22 15:36:39 +02:00
|
|
|
return PkiUtility::SignCsr(vm["csr"].as<std::string>(), vm["cert"].as<std::string>());
|
2014-10-15 16:01:15 +02:00
|
|
|
}
|