summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2016-02-03 13:45:44 (GMT)
committerKevin Smith <kevin.smith@isode.com>2016-02-04 15:41:17 (GMT)
commitde378c0b47268aea03177165156627659e28dde3 (patch)
tree3da89610ffb11bcdcc850ad260d01830187444c2 /Swiftob/Commands.cpp
parent20333d5b8dc0f97b60415f0daf3c53a573e0ff8f (diff)
downloadswift-de378c0b47268aea03177165156627659e28dde3.zip
swift-de378c0b47268aea03177165156627659e28dde3.tar.bz2
Remove abandoned Swiftob subprojectswift-3.0rc1
Swifttob used to be an initial approach of a XMPP bot using Swiften. Today such a bot would probably use Sluift. Test-Information: ./scons test=system passes on OS X 10.11.3. Change-Id: I976f26d906f3007b4395e90fdd966e2c00cb1c2c
Diffstat (limited to 'Swiftob/Commands.cpp')
-rw-r--r--Swiftob/Commands.cpp217
1 files changed, 0 insertions, 217 deletions
diff --git a/Swiftob/Commands.cpp b/Swiftob/Commands.cpp
deleted file mode 100644
index 9212aaf..0000000
--- a/Swiftob/Commands.cpp
+++ /dev/null
@@ -1,217 +0,0 @@
-/*
- * Copyright (c) 2011-2016 Isode Limited.
- * All rights reserved.
- * See the COPYING file for more information.
- */
-
-#include <Swiftob/Commands.h>
-
-#include <iostream>
-
-#include <boost/algorithm/string.hpp>
-#include <boost/bind.hpp>
-
-#include <Swiften/Base/foreach.h>
-#include <Swiften/Client/Client.h>
-
-typedef std::pair<std::string, Commands::Command*> NamedCommand;
-
-Commands::Commands(Users* users, Swift::Client* client, Storage* storage, MUCs* mucs) {
- users_ = users;
- client_ = client;
- mucs_ = mucs;
- storage_ = storage;
- resetCommands();
-}
-
-Commands::~Commands() {
- clearCommands();
-}
-
-void Commands::clearCommands() {
- foreach (NamedCommand command, commands_) {
- delete command.second;
- }
- commands_.clear();
-
-}
-
-void Commands::resetCommands() {
- clearCommands();
- registerCommand("quit", Owner, "Quit the bot", boost::bind(&Commands::handleQuitCommand, this, _1, _2, _3));
- registerCommand("help", Anyone, "Get help", boost::bind(&Commands::handleHelpCommand, this, _1, _2, _3));
- registerCommand("join", Owner, "Join a MUC", boost::bind(&Commands::handleJoinCommand, this, _1, _2, _3));
- registerCommand("part", Owner, "Leave a MUC", boost::bind(&Commands::handlePartCommand, this, _1, _2, _3));
- registerCommand("rehash", Owner, "Reload scripts", boost::bind(&Commands::handleRehashCommand, this, _1, _2, _3));
- registerCommand("restart", Owner, "Restart bot", boost::bind(&Commands::handleRestartCommand, this, _1, _2, _3));
- registerCommand("nick", Owner, "Change nick (requires restart)", boost::bind(&Commands::handleChangeNick, this, _1, _2, _3));
- //registerCommand("owner", Owner, "Change owner settinsg", boost::bind(&Commands::handleChangeOwner, this, _1, _2, _3));
- onReset();
-}
-
-void Commands::registerCommand(const std::string& name, RoleList roles, const std::string& description, boost::function<void(const std::string& /*command*/, const std::string& /*params*/, Swift::Message::ref)> callback) {
- Command* command = new Command(roles, description);
- commands_[name] = command;
- command->onReceived.connect(callback);
-}
-
-void Commands::registerListener(ListenerCallback listener) {
- listeners_.push_back(listener);
-}
-
-bool Commands::hasCommand(const std::string& name) {
- return commands_.find(name) != commands_.end();
-}
-
-bool Commands::runCommand(const std::string& name, const std::string& params, Swift::Message::ref message) {
- Users::User::Role userRole = users_->getRoleForSender(message);
- Command* command = commands_[name];
- if (roleIn(userRole, command->getAllowedBy())) {
- command->onReceived(name, params, message);
- return true;
- } else {
- replyTo(message, "You may not run this command", true);
- }
- return false;
-}
-
-void Commands::runListeners(Swift::Message::ref message) {
- foreach (ListenerCallback listener, listeners_) {
- listener(message);
- }
-}
-
-bool Commands::roleIn(const Users::User::Role userRole, RoleList roleList) {
- switch (roleList) {
- case Owner : return userRole == Users::User::Owner;
- case Anyone : return true;
- }
- std::cerr << "Unrecognised role list" << std::endl;
- return false;
-}
-
-void Commands::handleChangeNick(const std::string& /*command*/, const std::string& params, Swift::Message::ref message) {
- std::string nick(params);
- boost::algorithm::trim(nick);
- if (nick.empty()) {
- replyTo(message, "Current nick is '" + mucs_->getDefaultNick() + "'. Run the command with a new nick to change it.");
- }
- else {
- if (mucs_->setDefaultNick(params)) {
- replyTo(message, "Default nick now set to '" + nick + "' - restart the bot for this to take effect.");
- }
- else {
- replyTo(message, "Can't set invalid nick '" + nick + "'.");
- }
- }
-}
-
-void Commands::handleChangeOwner(const std::string& /*command*/, const std::string& /*params*/, Swift::Message::ref /*message*/) {
- /* Oh, right. I don't have user persistence coded yet.
- * Probably not worth doing this until I have.*/
-}
-
-void Commands::handleQuitCommand(const std::string& /*command*/, const std::string& /*params*/, Swift::Message::ref message) {
- replyTo(message, "Shutting down");
- std::cout << "Quitting at the behest of " << message->getFrom().toString() << std::endl;
- exit(0);
-}
-
-void Commands::setRehashError(const std::string& error) {
- if (!rehashError_.empty()) {
- rehashError_ += "; ";
- }
- rehashError_ += error;
-}
-
-void Commands::handleRehashCommand(const std::string& /*command*/, const std::string& /*params*/, Swift::Message::ref message) {
- rehashError_ = "";
- replyTo(message, "Rehashing now.");
- std::cout << "Rehashing at the behest of " << message->getFrom().toString() << std::endl;
- resetCommands();
- listeners_.clear();
- if (rehashError_.empty()) {
- replyTo(message, "Rehash complete");
- } else {
- replyTo(message, "I have suffered a tremendous failure: " + rehashError_);
- }
-}
-
-void Commands::handleRestartCommand(const std::string& /*command*/, const std::string& /*params*/, Swift::Message::ref message) {
- rehashError_ = "";
- replyTo(message, "Restarting now.");
- std::cout << "Restarting at the behest of " << message->getFrom().toString() << std::endl;
- onRestartRequested();
-}
-
-void Commands::handleJoinCommand(const std::string& /*command*/, const std::string& params, Swift::Message::ref message) {
- Swift::JID room(params);
- if (!room.isValid() || !room.getResource().empty() || room.getNode().empty()) {
- replyTo(message, "Can't join " + room.toString() + ", not a valid room JID.");
- return;
- }
- if (mucs_->contains(room)) {
- replyTo(message, "I'm already (trying to be?) in " + room.toString() + ".");
- return;
- }
- replyTo(message, "Trying to join " + room.toString() + ".");
- mucs_->join(room, boost::bind(&Commands::handleJoinCommandSuccess, this, room, message), boost::bind(&Commands::handleJoinCommandFailure, this, room, _1, message));
-}
-
-void Commands::handlePartCommand(const std::string& /*command*/, const std::string& params, Swift::Message::ref message) {
- Swift::JID room(params);
- if (!room.isValid() || !room.getResource().empty() || room.getNode().empty()) {
- replyTo(message, "Can't leave " + room.toString() + ", not a valid room JID.");
- return;
- }
- if (mucs_->contains(room)) {
- replyTo(message, "I'm not in " + room.toString() + ".");
- return;
- }
- replyTo(message, "Leaving " + room.toString() + ".");
- mucs_->part(room);
-}
-
-void Commands::handleJoinCommandSuccess(const Swift::JID& room, Swift::Message::ref message) {
- replyTo(message, "Joined " + room.toString());
-}
-
-void Commands::handleJoinCommandFailure(const Swift::JID& room, const std::string& error, Swift::Message::ref message) {
- replyTo(message, "Join to " + room.toString() + "failed. " + error);
-}
-
-void Commands::handleHelpCommand(const std::string& /*command*/, const std::string& /*params*/, Swift::Message::ref message) {
- Users::User::Role userRole = users_->getRoleForSender(message);
- std::string result("Available commands:");
- std::string bang = message->getType() == Swift::Message::Groupchat ? "\n!" : "\n";
- foreach (NamedCommand pair, commands_) {
- if (roleIn(userRole, pair.second->getAllowedBy())) {
- result += bang + pair.first + " - " + pair.second->getDescription();
- }
- }
- replyTo(message, result, true);
-}
-
-/**
- * \param outOfMUC Reply to the sender directly, don't spam MUCs with the reply
- */
-void Commands::replyTo(Swift::Message::ref source, std::string replyBody, bool outOfMUC) {
- Swift::Message::ref reply(new Swift::Message());
- Swift::Message::Type type = source->getType();
- reply->setType(type);
- reply->setBody(type == Swift::Message::Groupchat ? source->getFrom().getResource() + ": " + replyBody : replyBody);
- Swift::JID to = source->getFrom();
- if (type == Swift::Message::Groupchat) {
- if (outOfMUC) {
- reply->setType(Swift::Message::Chat);
- } else {
- to = to.toBare();
- }
- }
- reply->setTo(to);
- if (client_->isAvailable()) {
- client_->sendMessage(reply);
- } else {
- std::cout << "Dropping '" + reply->getBody().get_value_or("") + "' -> " + reply->getTo().toString() + " on the floor due to missing connection." << std::endl;
- }
-}