summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/command_parse.cpp28
-rw-r--r--src/modules/m_spanningtree/main.cpp27
2 files changed, 47 insertions, 8 deletions
diff --git a/src/command_parse.cpp b/src/command_parse.cpp
index fb89fd7ad..9cef16ef4 100644
--- a/src/command_parse.cpp
+++ b/src/command_parse.cpp
@@ -594,3 +594,31 @@ void CommandParser::SetupCommandTable(userrec* user)
this->CreateCommand(new cmd_reload(ServerInstance));
}
+int CommandParser::TranslateUIDs(TranslateType to, const std::string &source, std::string &dest)
+{
+ userrec* user = NULL;
+ switch (to)
+ {
+ case TR_NICK:
+ /* Translate single nickname */
+ user = ServerInstance->FindNick(source);
+ if (user)
+ dest = user->uuid;
+ else
+ dest = source;
+ break;
+ case TR_NICKLIST:
+ /* Translate comma seperated list of nicknames */
+ break;
+ case TR_SPACENICKLIST:
+ /* Translate space seperated list of nicknames */
+ break;
+ case TR_END:
+ case TR_TEXT:
+ default:
+ /* Do nothing */
+ dest = source;
+ break;
+ }
+}
+
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp
index 7ff67e458..651afe095 100644
--- a/src/modules/m_spanningtree/main.cpp
+++ b/src/modules/m_spanningtree/main.cpp
@@ -803,6 +803,8 @@ void ModuleSpanningTree::OnPostCommand(const std::string &command, const char**
{
if ((result == CMD_SUCCESS) && (ServerInstance->IsValidModuleCommand(command, pcnt, user)))
{
+ /* Safe, we know its non-null because IsValidModuleCommand returned true */
+ command_t* thiscmd = ServerInstance->Parser->GetHandler(command);
// this bit of code cleverly routes all module commands
// to all remote severs *automatically* so that modules
// can just handle commands locally, without having
@@ -810,19 +812,28 @@ void ModuleSpanningTree::OnPostCommand(const std::string &command, const char**
// commands and linking protocols.
std::deque<std::string> params;
params.clear();
+ size_t n_translate = thiscmd->translation.size();
+ TranslationType translate_to;
+
for (int j = 0; j < pcnt; j++)
{
- /* XXX UID: Translate nicks in this list to UIDs, potentially using some form of lookup
- * table that specifies a value type for each parameter, as part of the command_t.
- */
- if (strchr(parameters[j],' '))
+ std::string target;
+
+ /* Map all items to UUIDs where neccessary */
+ if (j < n_translate)
{
- params.push_back(":" + std::string(parameters[j]));
+ /* We have a translation mapping for this index */
+ translate_to = thiscmd->translation[j] != TR_END ? thiscmd->translation[j] : TR_TEXT;
}
else
- {
- params.push_back(std::string(parameters[j]));
- }
+ translate_to = TR_TEXT;
+
+ ServerInstance->Parser->TranslateUIDs(translate_to, parameters[j], target);
+
+ if (strchr(parameters[j],' '))
+ params.push_back(":" + target);
+ else
+ params.push_back(target);
}
Utils->DoOneToMany(user->uuid, command, params);
}