Register independent module names, first readme

This commit is contained in:
Blue 2025-03-23 20:36:09 +02:00
parent 1bda854139
commit 0be7fe9bff
Signed by: blue
GPG Key ID: 9B203B252A63EE38
4 changed files with 46 additions and 4 deletions

View File

@ -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

View File

@ -38,8 +38,16 @@ void Core::initialize(const std::shared_ptr<Connection>& cn) {
void Core::setGroup(const std::string& jid, const std::string& group) {
router.registerActor(jid, group);
std::map<std::string, std::string> 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);
}

View File

@ -42,9 +42,11 @@ void Router::routeMessage(const std::string& sender, const std::string& body) {
aItr = actors.emplace(sender, std::make_shared<Actor>(sender, defaultGroup)).first;
std::vector<std::string> 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);
}

View File

@ -10,4 +10,7 @@
namespace Shared {
typedef std::vector<std::string> Strings;
typedef std::map<std::string, Strings> Permissions;
typedef std::map<std::string, std::string> VC;
typedef std::pair<std::string, std::string> VCEntry;
typedef std::pair<const std::string, std::string> VCConstEntry;
}