Help command aliases (#306)

* changes to help info loading

* updated sample help command config file

* updated test config file
This commit is contained in:
cow-face 2022-07-06 13:53:12 -05:00 committed by GitHub
parent 9232b59e26
commit 03ee9337d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 425 additions and 224 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,21 +1,29 @@
[ [
{ {
"name":"foo", "names": [
"foo"
],
"usage":"/foo <bar> [baz|qux]", "usage":"/foo <bar> [baz|qux]",
"text":"A sample explanation." "text":"A sample explanation."
}, },
{ {
"name":"login", "names": [
"login"
],
"usage":"/login", "usage":"/login",
"text":"Activates the login dialogue to enter your credentials. This command takes no arguments." "text":"Activates the login dialogue to enter your credentials. This command takes no arguments."
}, },
{ {
"name":"getareas", "names": [
"getareas"
],
"usage":"/getareas", "usage":"/getareas",
"text":"Lists all clients in all areas. This command takes no arguments." "text":"Lists all clients in all areas. This command takes no arguments."
}, },
{ {
"name":"getarea", "names": [
"getarea"
],
"usage":"/getarea", "usage":"/getarea",
"text":"Lists all clients in the area the caller is in. This command takes no arguments." "text":"Lists all clients in the area the caller is in. This command takes no arguments."
} }

View File

@ -199,19 +199,23 @@ void ConfigManager::loadCommandHelp()
// Akashi expects the helpfile to contain multiple entires, so it always checks for an array first. // Akashi expects the helpfile to contain multiple entires, so it always checks for an array first.
QJsonArray l_Json_root_array = l_help_list_json.array(); QJsonArray l_Json_root_array = l_help_list_json.array();
QJsonObject l_child_obj; QJsonObject l_child_obj;
QJsonArray l_names;
for (int i = 0; i <= l_Json_root_array.size() - 1; i++) { for (int i = 0; i < l_Json_root_array.size(); i++) {
l_child_obj = l_Json_root_array.at(i).toObject(); l_child_obj = l_Json_root_array.at(i).toObject();
QString l_name = l_child_obj["name"].toString(); l_names = l_child_obj["names"].toArray();
QString l_usage = l_child_obj["usage"].toString(); QString l_usage = l_child_obj["usage"].toString();
QString l_text = l_child_obj["text"].toString(); QString l_text = l_child_obj["text"].toString();
if (!l_name.isEmpty()) { for (int j = 0; j < l_names.size(); j++) {
help l_help_information; QString l_name = l_names.at(j).toString();
l_help_information.usage = l_usage; if (!l_name.isEmpty()) {
l_help_information.text = l_text; help l_help_information = {
.usage = l_usage,
.text = l_text};
m_commands_help->insert(l_name, l_help_information); m_commands_help->insert(l_name, l_help_information);
}
} }
} }
} }