dropshell_alpine working. Example for xxhash recursive made.
This commit is contained in:
81
src/main.cpp
81
src/main.cpp
@ -18,8 +18,14 @@
|
||||
#include <iomanip>
|
||||
#include <chrono>
|
||||
|
||||
|
||||
namespace dropshell {
|
||||
|
||||
extern const std::string VERSION;
|
||||
extern const std::string RELEASE_DATE;
|
||||
extern const std::string AUTHOR;
|
||||
extern const std::string LICENSE;
|
||||
|
||||
void print_help() {
|
||||
std::cout << std::endl;
|
||||
maketitle("DropShell version " + VERSION);
|
||||
@ -57,22 +63,21 @@ void print_help() {
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace dropshell
|
||||
|
||||
int die(const std::string & msg) {
|
||||
std::cerr << msg << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
bool parseargs(std::string arg2, std::string arg3, std::string & server_name, std::vector<dropshell::ServiceInfo>& servicelist)
|
||||
bool parseargs(std::string arg2, std::string arg3, std::string & server_name, std::vector<ServiceInfo>& servicelist)
|
||||
{
|
||||
if (arg2.empty()) return false;
|
||||
server_name = arg2;
|
||||
|
||||
if (arg3.empty()) {
|
||||
servicelist = dropshell::get_server_services_info(server_name);
|
||||
servicelist = get_server_services_info(server_name);
|
||||
} else {
|
||||
servicelist.push_back(dropshell::get_service_info(server_name, arg3));
|
||||
servicelist.push_back(get_service_info(server_name, arg3));
|
||||
}
|
||||
|
||||
return true;
|
||||
@ -84,17 +89,27 @@ std::string safearg(int argc, char *argv[], int index)
|
||||
return argv[index];
|
||||
}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
void printversion() {
|
||||
maketitle("DropShell version " + VERSION);
|
||||
std::cout << "Release date: " << RELEASE_DATE << std::endl;
|
||||
std::cout << "Author: " << AUTHOR << std::endl;
|
||||
std::cout << "License: " << LICENSE << std::endl;
|
||||
}
|
||||
|
||||
if (safearg(argc,argv,1) == "hash") return dropshell::hash_demo_raw(safearg(argc,argv,2));
|
||||
#define HAPPYEXIT(CMD, RUNCMD) {if (safearg(argc,argv,1) == CMD) {RUNCMD; return 0;}}
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
HAPPYEXIT("hash", hash_demo_raw(safearg(argc,argv,2)))
|
||||
HAPPYEXIT("makesafecmd", std::cout<<makesafecmd(safearg(argc,argv,2))<<std::endl)
|
||||
HAPPYEXIT("version", printversion())
|
||||
ASSERT_MSG(safearg(argc,argv,1) != "assert", "Hello! Here is an assert.");
|
||||
|
||||
try {
|
||||
// silently attempt to load the config file.
|
||||
dropshell::gConfig().load_config();
|
||||
gConfig().load_config();
|
||||
|
||||
if (argc < 2) {
|
||||
dropshell::print_help();
|
||||
print_help();
|
||||
return 0;
|
||||
}
|
||||
std::string cmd = argv[1];
|
||||
@ -104,32 +119,32 @@ int main(int argc, char* argv[]) {
|
||||
|
||||
|
||||
if (cmd == "autocomplete") {
|
||||
dropshell::autocomplete(argvec);
|
||||
autocomplete(argvec);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "init") {
|
||||
return dropshell::main_commands::init(argvec);
|
||||
return main_commands::init(argvec);
|
||||
}
|
||||
|
||||
if (cmd == "help" || cmd == "-h" || cmd == "--help" || cmd== "h" || cmd=="halp") {
|
||||
dropshell::print_help();
|
||||
print_help();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "edit" && argc < 3) {
|
||||
std::string config_file = dropshell::localfile::dropshell_env();
|
||||
std::filesystem::create_directories( dropshell::get_parent(config_file) );
|
||||
dropshell::edit_file(config_file, "Please ensure any directories you have introduced in the config file exist.");
|
||||
std::string config_file = localfile::dropshell_env();
|
||||
std::filesystem::create_directories( get_parent(config_file) );
|
||||
edit_file(config_file, "Please ensure any directories you have introduced in the config file exist.");
|
||||
return 0;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------
|
||||
// from here we require the config file to be loaded.
|
||||
if (!dropshell::gConfig().is_config_set())
|
||||
if (!gConfig().is_config_set())
|
||||
return die("Please run 'dropshell init <path>' to initialise the user directory and create a configuration file.");
|
||||
|
||||
const std::vector<std::string> & local_config_directories = dropshell::gConfig().get_local_config_directories();
|
||||
const std::vector<std::string> & local_config_directories = gConfig().get_local_config_directories();
|
||||
std::cout << "Config directories: ";
|
||||
for (auto & dir : local_config_directories)
|
||||
std::cout << "["<< dir << "] ";
|
||||
@ -139,10 +154,10 @@ int main(int argc, char* argv[]) {
|
||||
switch (argc)
|
||||
{
|
||||
case 2:
|
||||
dropshell::list_servers();
|
||||
list_servers();
|
||||
return 0;
|
||||
case 3:
|
||||
dropshell::show_server_details(argv[2]);
|
||||
show_server_details(argv[2]);
|
||||
return 0;
|
||||
case 4:
|
||||
cmd="logs";
|
||||
@ -152,65 +167,65 @@ int main(int argc, char* argv[]) {
|
||||
}
|
||||
|
||||
if (cmd == "templates") {
|
||||
dropshell::list_templates();
|
||||
list_templates();
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "create-template") {
|
||||
if (argc < 3) return die("Error: create-template requires a template name");
|
||||
dropshell::create_template(argv[2]);
|
||||
create_template(argv[2]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "create-server") {
|
||||
if (argc < 3) return die("Error: create-server requires a server name");
|
||||
dropshell::create_server(argv[2]);
|
||||
create_server(argv[2]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "create-service") {
|
||||
if (argc < 5) return die("Error: not enough arguments.\ndropshell create-service server template service");
|
||||
dropshell::create_service(argv[2], argv[3], argv[4]);
|
||||
create_service(argv[2], argv[3], argv[4]);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "ssh" && argc < 4) {
|
||||
if (argc < 3) return die("Error: ssh requires a server name and optionally service name");
|
||||
dropshell::interactive_ssh(argv[2], "bash");
|
||||
interactive_ssh(argv[2], "bash");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "edit" && argc < 4) {
|
||||
ASSERT_MSG(argc>=3, "Error: logic error!");
|
||||
dropshell::edit_server(safearg(argc,argv,2));
|
||||
edit_server(safearg(argc,argv,2));
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (cmd == "backup" || cmd=="backups") {
|
||||
if (argc < 4) return die("Error: backup requires a target server and target service to back up");
|
||||
return dropshell::main_commands::backup(argvec);
|
||||
return main_commands::backup(argvec);
|
||||
}
|
||||
|
||||
if (cmd == "restore") {
|
||||
if (argc < 4) return die("Error: restore requires a target server, target service the backup file to restore");
|
||||
return dropshell::main_commands::restore(argvec);
|
||||
return main_commands::restore(argvec);
|
||||
}
|
||||
|
||||
// handle running a command.
|
||||
std::set<std::string> commands;
|
||||
dropshell::get_all_used_commands(commands);
|
||||
get_all_used_commands(commands);
|
||||
commands.merge(std::set<std::string>{"ssh","edit","_allservicesstatus"}); // handled by service_runner, but not in template_shell_commands.
|
||||
for (const auto& command : commands) {
|
||||
if (cmd == command) {
|
||||
std::string server_name;
|
||||
std::vector<dropshell::ServiceInfo> servicelist;
|
||||
std::vector<ServiceInfo> servicelist;
|
||||
if (!parseargs(safearg(argc, argv, 2), safearg(argc, argv, 3), server_name, servicelist)) {
|
||||
std::cerr << "Error: " << command << " command requires server name and optionally service name" << std::endl;
|
||||
return 1;
|
||||
}
|
||||
|
||||
for (const auto& service_info : servicelist) {
|
||||
dropshell::service_runner runner(server_name, service_info.service_name);
|
||||
service_runner runner(server_name, service_info.service_name);
|
||||
if (!runner.isValid()) {
|
||||
std::cerr << "Error: Failed to initialize service" << std::endl;
|
||||
return 1;
|
||||
@ -238,4 +253,10 @@ int main(int argc, char* argv[]) {
|
||||
std::cerr << "Error: " << e.what() << std::endl;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace dropshell
|
||||
|
||||
int main(int argc, char* argv[]) {
|
||||
return dropshell::main(argc, argv);
|
||||
}
|
@ -215,5 +215,11 @@ std::string sCommand::construct_safecmd() const
|
||||
// base64 <<< "FOO=BAR WHEE=YAY bash ./test.sh"
|
||||
// echo YmFzaCAtYyAnRk9PPUJBUiBXSEVFPVlBWSBiYXNoIC4vdGVzdC5zaCcK | base64 -d | bash
|
||||
|
||||
std::string makesafecmd(const std::string &command)
|
||||
{
|
||||
std::string encoded = base64_encode(dequote(trim(command)));
|
||||
std::string commandstr = "echo " + encoded + " | base64 -d | bash";
|
||||
return commandstr;
|
||||
}
|
||||
|
||||
} // namespace dropshell
|
||||
} // namespace dropshell
|
@ -34,6 +34,7 @@ class sCommand {
|
||||
std::map<std::string, std::string> mVars;
|
||||
};
|
||||
|
||||
std::string makesafecmd(const std::string& command);
|
||||
|
||||
// reads path / server.env and provides a class to access the variables.
|
||||
// each env file is required to have the following variables:
|
||||
|
Reference in New Issue
Block a user