mirror of
https://github.com/Neo-Desktop/WindowsXPKg
synced 2024-11-18 11:51:01 +02:00
4b60737bb4
* add -V/--validate command line switch * Return success/failure bool on CLI::stripKey --------- Co-authored-by: Neo <321592+Neo-Desktop@users.noreply.github.com>
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
/**
|
|
* This file is a part of the UMSKT Project
|
|
*
|
|
* Copyleft (C) 2019-2023 UMSKT Contributors (et.al.)
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @FileCreated by Andrew on 01/06/2023
|
|
* @Maintainer Neo
|
|
*/
|
|
|
|
#include "header.h"
|
|
#include "cli.h"
|
|
|
|
Options options;
|
|
|
|
int main(int argc, char *argv[]) {
|
|
if (!CLI::parseCommandLine(argc, argv, &options)) {
|
|
fmt::print("error parsing command line options\n");
|
|
CLI::showHelp(argv);
|
|
return !options.error ? 0 : 1;
|
|
}
|
|
|
|
json keys;
|
|
|
|
int status = CLI::validateCommandLine(&options, argv, &keys);
|
|
if (status > 0) {
|
|
return status;
|
|
}
|
|
|
|
CLI* run = new CLI(options, keys);
|
|
|
|
switch(options.applicationMode) {
|
|
case MODE_BINK1998_GENERATE:
|
|
return run->BINK1998Generate();
|
|
|
|
case MODE_BINK2002_GENERATE:
|
|
return run->BINK2002Generate();
|
|
|
|
case MODE_BINK1998_VALIDATE:
|
|
return run->BINK1998Validate();
|
|
|
|
case MODE_BINK2002_VALIDATE:
|
|
return run->BINK2002Validate();
|
|
|
|
case MODE_CONFIRMATION_ID:
|
|
return run->ConfirmationID();
|
|
|
|
default:
|
|
return 1;
|
|
}
|
|
}
|