2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2014-10-16 12:30:50 +02:00
|
|
|
|
|
|
|
#include "cli/pkiticketcommand.hpp"
|
2017-09-05 14:44:56 +02:00
|
|
|
#include "remote/pkiutility.hpp"
|
2014-10-30 15:22:55 +01:00
|
|
|
#include "cli/variableutility.hpp"
|
2014-10-19 14:21:12 +02:00
|
|
|
#include "base/logger.hpp"
|
2014-10-16 15:39:11 +02:00
|
|
|
#include <iostream>
|
2014-10-16 12:30:50 +02:00
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
REGISTER_CLICOMMAND("pki/ticket", PKITicketCommand);
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String PKITicketCommand::GetDescription() const
|
2014-10-16 12:30:50 +02:00
|
|
|
{
|
|
|
|
return "Generates an Icinga 2 ticket";
|
|
|
|
}
|
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
String PKITicketCommand::GetShortDescription() const
|
2014-10-16 12:30:50 +02:00
|
|
|
{
|
|
|
|
return "generates a ticket";
|
|
|
|
}
|
|
|
|
|
|
|
|
void PKITicketCommand::InitParameters(boost::program_options::options_description& visibleDesc,
|
2017-12-19 15:50:05 +01:00
|
|
|
boost::program_options::options_description& hiddenDesc) const
|
2014-10-16 12:30:50 +02:00
|
|
|
{
|
|
|
|
visibleDesc.add_options()
|
2017-12-19 15:50:05 +01:00
|
|
|
("cn", po::value<std::string>(), "Certificate common name")
|
|
|
|
("salt", po::value<std::string>(), "Ticket salt");
|
2014-10-16 12:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The entry point for the "pki ticket" CLI command.
|
|
|
|
*
|
|
|
|
* @returns An exit status.
|
|
|
|
*/
|
|
|
|
int PKITicketCommand::Run(const boost::program_options::variables_map& vm, const std::vector<std::string>& ap) const
|
|
|
|
{
|
|
|
|
if (!vm.count("cn")) {
|
|
|
|
Log(LogCritical, "cli", "Common name (--cn) must be specified.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-30 15:22:55 +01:00
|
|
|
String salt = VariableUtility::GetVariable("TicketSalt");
|
|
|
|
|
|
|
|
if (vm.count("salt"))
|
|
|
|
salt = vm["salt"].as<std::string>();
|
|
|
|
|
|
|
|
if (salt.IsEmpty()) {
|
2014-10-16 12:30:50 +02:00
|
|
|
Log(LogCritical, "cli", "Ticket salt (--salt) must be specified.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-30 15:22:55 +01:00
|
|
|
return PkiUtility::GenTicket(vm["cn"].as<std::string>(), salt, std::cout);
|
2014-10-16 12:30:50 +02:00
|
|
|
}
|