From 0be7fe9bffd9a4e948c938da9b3a1d843294bef7 Mon Sep 17 00:00:00 2001 From: blue Date: Sun, 23 Mar 2025 20:36:09 +0200 Subject: [PATCH] Register independent module names, first readme --- README.md | 29 +++++++++++++++++++++++++++++ component/core.cpp | 12 ++++++++++-- component/router.cpp | 6 ++++-- shared/definitions.h | 3 +++ 4 files changed, 46 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e69de29..c24ed54 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,29 @@ +# Jay +Customizable XMPP bot + +## Dependencies +- CMake +- pkgconfig +- gloox +- yaml-cpp + +## Building +The following is an example, feel free to customize +```shell +mkdir build +cp example.config.yml build/config.yml +cd build +# edit config.yml as you please +cmake .. +cmake --build . +./jay config.yml # to run the app with the config +``` + +## Modules + +### Actor +This module is designed to control access to Bot. + +#### Commands: +- list: lists all known actors +- set `actor` `group`: assigns a group to an actor. `default` is a special actor name, group from it is assigned to all new actors, not listed in `actors` section of config \ No newline at end of file diff --git a/component/core.cpp b/component/core.cpp index ae2b3bd..cb3aa39 100644 --- a/component/core.cpp +++ b/component/core.cpp @@ -38,8 +38,16 @@ void Core::initialize(const std::shared_ptr& cn) { void Core::setGroup(const std::string& jid, const std::string& group) { router.registerActor(jid, group); - std::map actors = router.getActors(); - actors["default"] = router.getDefaultGroup(); + Shared::VC actors = router.getActors(); + std::string defaultGroup = router.getDefaultGroup(); + + for (Shared::VC::const_iterator itr = actors.begin(); itr != actors.end(); ) + if (itr->second == defaultGroup) + itr = actors.erase(itr); + else + itr++; + + actors["default"] = defaultGroup; config.setActors(actors); } diff --git a/component/router.cpp b/component/router.cpp index 2da0a58..b094c68 100644 --- a/component/router.cpp +++ b/component/router.cpp @@ -42,9 +42,11 @@ void Router::routeMessage(const std::string& sender, const std::string& body) { aItr = actors.emplace(sender, std::make_shared(sender, defaultGroup)).first; std::vector args = Module::Module::split(body); - Modules::iterator mItr = modules.find(args[0]); + std::string moduleAlias = Module::Module::lower(args[0]); + + Modules::iterator mItr = modules.find(moduleAlias); if (mItr == modules.end()) { - debug("could not find module \"" + args[0] + "\" to handle message from " + sender); + debug("could not find module \"" + moduleAlias + "\" to handle message from " + sender); return onMessageResult(Shared::unhandled, sender); } diff --git a/shared/definitions.h b/shared/definitions.h index c03236e..0196cf3 100644 --- a/shared/definitions.h +++ b/shared/definitions.h @@ -10,4 +10,7 @@ namespace Shared { typedef std::vector Strings; typedef std::map Permissions; + typedef std::map VC; + typedef std::pair VCEntry; + typedef std::pair VCConstEntry; } \ No newline at end of file