blob: d0cb958f304949edd0492e67faa7880ba02accd5 [file] [log] [blame]
Jiewen Tan870b29b2014-11-17 19:09:49 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yumin Xia2c509c22017-02-09 14:37:36 -08002/*
Davide Pesavento948c50c2020-12-26 21:30:45 -05003 * Copyright (c) 2014-2020, Regents of the University of California.
Jiewen Tan870b29b2014-11-17 19:09:49 -08004 *
5 * This file is part of NDNS (Named Data Networking Domain Name Service).
6 * See AUTHORS.md for complete list of NDNS authors and contributors.
7 *
8 * NDNS is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Jiewen Tan870b29b2014-11-17 19:09:49 -080020#include "logger.hpp"
Davide Pesaventod01c1a42019-01-21 21:42:45 -050021#include "ndns-label.hpp"
22#include "mgmt/management-tool.hpp"
23#include "util/util.hpp"
24
Jiewen Tan870b29b2014-11-17 19:09:49 -080025#include <boost/program_options.hpp>
Davide Pesavento948c50c2020-12-26 21:30:45 -050026
27#include <iostream>
Jiewen Tan870b29b2014-11-17 19:09:49 -080028
29int
30main(int argc, char* argv[])
31{
32 using std::string;
33 using namespace ndn;
Jiewen Tan870b29b2014-11-17 19:09:49 -080034
Jiewen Tan870b29b2014-11-17 19:09:49 -080035 string certStr;
Davide Pesaventod01c1a42019-01-21 21:42:45 -050036 string db = ndns::getDefaultDatabaseFile();
Jiewen Tan870b29b2014-11-17 19:09:49 -080037 string output = "-";
38 try {
39 namespace po = boost::program_options;
40 po::variables_map vm;
41
42 po::options_description options("Generic Options");
43 options.add_options()
Davide Pesaventod01c1a42019-01-21 21:42:45 -050044 ("help,h", "print this help message and exit")
45 ("db,b", po::value<std::string>(&db)->default_value(db), "path to NDNS database file")
46 ;
Jiewen Tan870b29b2014-11-17 19:09:49 -080047
48 po::options_description config("Output Options");
49 config.add_options()
50 ("output,o", po::value<string>(&output), "Set the output path of the to be export cert. "
51 "Default: stdout(-)")
52 ;
53
54 options.add(config);
55
56 po::options_description hidden("Hidden Options");
57 hidden.add_options()
58 ("certName", po::value<string>(&certStr), "the name of the certificate")
59 ;
60
61 po::positional_options_description postion;
62 postion.add("certName", 1);
63
64 po::options_description cmdline_options;
65 cmdline_options.add(options).add(hidden);
66
67 // po::options_description config_file_options;
68 // config_file_options.add(config).add(hidden);
69
70 po::parsed_options parsed =
71 po::command_line_parser(argc, argv).options(cmdline_options).positional(postion).run();
72
73 po::store(parsed, vm);
74 po::notify(vm);
75
76 if (vm.count("help")) {
77 std::cout << "Usage: ndns-export-certificate [-b db] certificateName [-o output] "
78 << std::endl;
79 std::cout << options << std::endl;
80 return 0;
81 }
82
83 if (vm.count("certName") == 0) {
84 std::cerr << "Error: certificate name must be specified" << std::endl;
85 return 1;
86 }
87 }
88 catch (const std::exception& ex) {
89 std::cerr << "Parameter Error: " << ex.what() << std::endl;
90 return 1;
91 }
92
93 try {
94 Name certName(certStr);
95
Yumin Xia2c509c22017-02-09 14:37:36 -080096 KeyChain keyChain;
Alexander Afanasyevd6b3bda2014-11-25 17:33:58 -080097 ndn::ndns::ManagementTool tool(db, keyChain);
Jiewen Tan870b29b2014-11-17 19:09:49 -080098 tool.exportCertificate(certName, output);
99 }
100 catch (const std::exception& ex) {
101 std::cerr << "Error: " << ex.what() << std::endl;
102 return 1;
103 }
104}