mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
181 lines
4.9 KiB
C
181 lines
4.9 KiB
C
#include "common/printing.h"
|
|
#include "common/jsonconfig.h"
|
|
#include "common/processing.h"
|
|
#include "modules/command/command.h"
|
|
#include "util/stringUtils.h"
|
|
|
|
#define FF_COMMAND_NUM_FORMAT_ARGS 1
|
|
|
|
void ffPrintCommand(FFCommandOptions* options)
|
|
{
|
|
FF_STRBUF_AUTO_DESTROY result = ffStrbufCreate();
|
|
const char* error = ffProcessAppendStdOut(&result, (char* const[]){
|
|
options->shell.chars,
|
|
#ifdef _WIN32
|
|
"/c",
|
|
#else
|
|
"-c",
|
|
#endif
|
|
options->text.chars,
|
|
NULL
|
|
});
|
|
|
|
if(error)
|
|
{
|
|
ffPrintError(FF_COMMAND_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "%s", error);
|
|
return;
|
|
}
|
|
|
|
if(!result.length)
|
|
{
|
|
ffPrintError(FF_COMMAND_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "No result printed");
|
|
return;
|
|
}
|
|
|
|
if (options->moduleArgs.outputFormat.length == 0)
|
|
{
|
|
ffPrintLogoAndKey(FF_COMMAND_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT);
|
|
ffStrbufPutTo(&result, stdout);
|
|
}
|
|
else
|
|
{
|
|
FF_PRINT_FORMAT_CHECKED(FF_COMMAND_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, FF_COMMAND_NUM_FORMAT_ARGS, ((FFformatarg[]){
|
|
{FF_FORMAT_ARG_TYPE_STRBUF, &result}
|
|
}));
|
|
}
|
|
}
|
|
|
|
bool ffParseCommandCommandOptions(FFCommandOptions* options, const char* key, const char* value)
|
|
{
|
|
const char* subKey = ffOptionTestPrefix(key, FF_COMMAND_MODULE_NAME);
|
|
if (!subKey) return false;
|
|
if (ffOptionParseModuleArgs(key, subKey, value, &options->moduleArgs))
|
|
return true;
|
|
|
|
if(ffStrEqualsIgnCase(subKey, "shell"))
|
|
{
|
|
ffOptionParseString(key, value, &options->shell);
|
|
return true;
|
|
}
|
|
|
|
if(ffStrEqualsIgnCase(subKey, "text"))
|
|
{
|
|
ffOptionParseString(key, value, &options->text);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void ffParseCommandJsonObject(FFCommandOptions* options, yyjson_val* module)
|
|
{
|
|
yyjson_val *key_, *val;
|
|
size_t idx, max;
|
|
yyjson_obj_foreach(module, idx, max, key_, val)
|
|
{
|
|
const char* key = yyjson_get_str(key_);
|
|
if(ffStrEqualsIgnCase(key, "type"))
|
|
continue;
|
|
|
|
if (ffJsonConfigParseModuleArgs(key, val, &options->moduleArgs))
|
|
continue;
|
|
|
|
if (ffStrEqualsIgnCase(key, "shell"))
|
|
{
|
|
ffStrbufSetS(&options->shell, yyjson_get_str(val));
|
|
continue;
|
|
}
|
|
|
|
if (ffStrEqualsIgnCase(key, "text"))
|
|
{
|
|
ffStrbufSetS(&options->text, yyjson_get_str(val));
|
|
continue;
|
|
}
|
|
|
|
ffPrintError(FF_COMMAND_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "Unknown JSON key %s", key);
|
|
}
|
|
}
|
|
|
|
void ffGenerateCommandJsonConfig(FFCommandOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module)
|
|
{
|
|
__attribute__((__cleanup__(ffDestroyCommandOptions))) FFCommandOptions defaultOptions;
|
|
ffInitCommandOptions(&defaultOptions);
|
|
|
|
ffJsonConfigGenerateModuleArgsConfig(doc, module, &defaultOptions.moduleArgs, &options->moduleArgs);
|
|
|
|
if (!ffStrbufEqual(&defaultOptions.shell, &options->shell))
|
|
yyjson_mut_obj_add_strbuf(doc, module, "shell", &options->shell);
|
|
|
|
if (!ffStrbufEqual(&defaultOptions.text, &options->text))
|
|
yyjson_mut_obj_add_strbuf(doc, module, "text", &options->text);
|
|
}
|
|
|
|
void ffGenerateCommandJsonResult(FF_MAYBE_UNUSED FFCommandOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module)
|
|
{
|
|
FF_STRBUF_AUTO_DESTROY result = ffStrbufCreate();
|
|
const char* error = ffProcessAppendStdOut(&result, (char* const[]){
|
|
options->shell.chars,
|
|
#ifdef _WIN32
|
|
"/c",
|
|
#else
|
|
"-c",
|
|
#endif
|
|
options->text.chars,
|
|
NULL
|
|
});
|
|
|
|
if(error)
|
|
{
|
|
yyjson_mut_obj_add_str(doc, module, "error", error);
|
|
return;
|
|
}
|
|
|
|
if(!result.length)
|
|
{
|
|
yyjson_mut_obj_add_str(doc, module, "error", "No result printed");
|
|
return;
|
|
}
|
|
|
|
yyjson_mut_obj_add_strbuf(doc, module, "result", &result);
|
|
}
|
|
|
|
void ffPrintCommandHelpFormat(void)
|
|
{
|
|
FF_PRINT_MODULE_FORMAT_HELP_CHECKED(FF_COMMAND_MODULE_NAME, "{1}", FF_COMMAND_NUM_FORMAT_ARGS, ((const char* []) {
|
|
"Command result"
|
|
}));
|
|
}
|
|
|
|
void ffInitCommandOptions(FFCommandOptions* options)
|
|
{
|
|
ffOptionInitModuleBaseInfo(
|
|
&options->moduleInfo,
|
|
FF_COMMAND_MODULE_NAME,
|
|
"Running custom shell scripts",
|
|
ffParseCommandCommandOptions,
|
|
ffParseCommandJsonObject,
|
|
ffPrintCommand,
|
|
ffGenerateCommandJsonResult,
|
|
ffPrintCommandHelpFormat,
|
|
ffGenerateCommandJsonConfig
|
|
);
|
|
ffOptionInitModuleArg(&options->moduleArgs);
|
|
|
|
ffStrbufInitStatic(&options->shell,
|
|
#ifdef _WIN32
|
|
"cmd.exe"
|
|
#else
|
|
"/bin/sh"
|
|
#endif
|
|
);
|
|
|
|
ffStrbufInit(&options->text);
|
|
}
|
|
|
|
void ffDestroyCommandOptions(FFCommandOptions* options)
|
|
{
|
|
ffOptionDestroyModuleArg(&options->moduleArgs);
|
|
ffStrbufDestroy(&options->shell);
|
|
ffStrbufDestroy(&options->text);
|
|
}
|