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