Register independent module names, first readme
This commit is contained in:
parent
1bda854139
commit
0be7fe9bff
29
README.md
29
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
|
@ -38,8 +38,16 @@ void Core::initialize(const std::shared_ptr<Connection>& cn) {
|
|||||||
void Core::setGroup(const std::string& jid, const std::string& group) {
|
void Core::setGroup(const std::string& jid, const std::string& group) {
|
||||||
router.registerActor(jid, group);
|
router.registerActor(jid, group);
|
||||||
|
|
||||||
std::map<std::string, std::string> actors = router.getActors();
|
Shared::VC actors = router.getActors();
|
||||||
actors["default"] = router.getDefaultGroup();
|
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);
|
config.setActors(actors);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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;
|
aItr = actors.emplace(sender, std::make_shared<Actor>(sender, defaultGroup)).first;
|
||||||
|
|
||||||
std::vector<std::string> args = Module::Module::split(body);
|
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()) {
|
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);
|
return onMessageResult(Shared::unhandled, sender);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,4 +10,7 @@
|
|||||||
namespace Shared {
|
namespace Shared {
|
||||||
typedef std::vector<std::string> Strings;
|
typedef std::vector<std::string> Strings;
|
||||||
typedef std::map<std::string, Strings> Permissions;
|
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;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user