icinga2/lib/cli/pkirequestcommand.cpp

95 lines
2.9 KiB
C++
Raw Normal View History

Replace all existing copyright headers with `SPDX` headers I've used the following command to replace the original copyright header lines in a C-style comment block: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{/\*[^*]*\(\s*c\s*\)\s*(\d{4})\s*Icinga\s+GmbH[^*]*\*/}{// SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n// SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ``` For files that use shell-style comments (#) like CMakeLists.txt, I've used this command: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f -exec perl -pi -e 's{#.*\(\s*c\s*\)\s(\d{4})\sIcinga\s+GmbH.*}{# SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n# SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ``` And for SQL files: ``` $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{--.*\(c\)\s(\d{4})\sIcinga\sGmbH.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + $ find . \( -type d \( -name '\..*' -o -name third-party -o -name scripts -o -name prefix -o -name malloc -o -name server -o -name docker -o -name build -o -name doc \) -prune \) -o -type f \( -name '*.sql' \) -exec perl -pi -e 's{-- Copyright \(c\)\s(\d{4})\sIcinga\s+Development\sTeam.*}{-- SPDX-FileCopyrightText: \1 Icinga GmbH <https://icinga.com>\n-- SPDX-License-Identifier: GPL-2.0-or-later}gi' {} + ```
2026-01-27 09:06:40 -05:00
// SPDX-FileCopyrightText: 2012 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-2.0-or-later
2014-10-16 06:30:50 -04:00
#include "cli/pkirequestcommand.hpp"
2017-09-05 08:44:56 -04:00
#include "remote/pkiutility.hpp"
2014-10-19 08:21:12 -04:00
#include "base/logger.hpp"
#include "base/tlsutility.hpp"
#include <iostream>
2014-10-16 06:30:50 -04:00
using namespace icinga;
namespace po = boost::program_options;
REGISTER_CLICOMMAND("pki/request", PKIRequestCommand);
String PKIRequestCommand::GetDescription() const
2014-10-16 06:30:50 -04:00
{
return "Sends a PKI request to Icinga 2.";
}
String PKIRequestCommand::GetShortDescription() const
2014-10-16 06:30:50 -04:00
{
return "requests a certificate";
}
void PKIRequestCommand::InitParameters(boost::program_options::options_description& visibleDesc,
[[maybe_unused]] boost::program_options::options_description& hiddenDesc) const
2014-10-16 06:30:50 -04:00
{
visibleDesc.add_options()
("key", po::value<std::string>(), "Key file path (input)")
("cert", po::value<std::string>(), "Certificate file path (input + output)")
("ca", po::value<std::string>(), "CA file path (output)")
("trustedcert", po::value<std::string>(), "Trusted certificate file path (input)")
("host", po::value<std::string>(), "Icinga 2 host")
("port", po::value<std::string>(), "Icinga 2 port")
("ticket", po::value<std::string>(), "Icinga 2 PKI ticket");
}
std::vector<String> PKIRequestCommand::GetArgumentSuggestions(const String& argument, const String& word) const
{
2014-10-22 09:36:39 -04:00
if (argument == "key" || argument == "cert" || argument == "ca" || argument == "trustedcert")
return GetBashCompletionSuggestions("file", word);
else if (argument == "host")
return GetBashCompletionSuggestions("hostname", word);
else if (argument == "port")
return GetBashCompletionSuggestions("service", word);
else
return CLICommand::GetArgumentSuggestions(argument, word);
2014-10-16 06:30:50 -04:00
}
/**
* The entry point for the "pki request" CLI command.
*
* @returns An exit status.
*/
int PKIRequestCommand::Run(const boost::program_options::variables_map& vm, [[maybe_unused]] const std::vector<std::string>& ap) const
2014-10-16 06:30:50 -04:00
{
if (!vm.count("host")) {
Log(LogCritical, "cli", "Icinga 2 host (--host) must be specified.");
return 1;
}
2014-10-22 09:36:39 -04:00
if (!vm.count("key")) {
Log(LogCritical, "cli", "Key input file path (--key) must be specified.");
2014-10-16 06:30:50 -04:00
return 1;
}
2014-10-22 09:36:39 -04:00
if (!vm.count("cert")) {
Log(LogCritical, "cli", "Certificate output file path (--cert) must be specified.");
2014-10-16 06:30:50 -04:00
return 1;
}
2014-10-22 09:36:39 -04:00
if (!vm.count("ca")) {
Log(LogCritical, "cli", "CA certificate output file path (--ca) must be specified.");
2014-10-16 06:30:50 -04:00
return 1;
}
2014-10-22 09:36:39 -04:00
if (!vm.count("trustedcert")) {
Log(LogCritical, "cli", "Trusted certificate input file path (--trustedcert) must be specified.");
2014-10-21 07:54:56 -04:00
return 1;
}
2014-10-16 06:30:50 -04:00
String port = "5665";
String ticket;
2014-10-16 06:30:50 -04:00
if (vm.count("port"))
port = vm["port"].as<std::string>();
if (vm.count("ticket"))
ticket = vm["ticket"].as<std::string>();
2014-10-22 09:36:39 -04:00
return PkiUtility::RequestCertificate(vm["host"].as<std::string>(), port, vm["key"].as<std::string>(),
vm["cert"].as<std::string>(), vm["ca"].as<std::string>(), GetX509Certificate(vm["trustedcert"].as<std::string>()),
ticket);
2014-10-16 06:30:50 -04:00
}