/* * Anope IRC Services * * Copyright (C) 2016 Anope Team * * This file is part of Anope. Anope is free software; you can * redistribute it and/or modify it under the terms of the GNU * General Public License as published by the Free Software * Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see see . */ #pragma once #include "modules/protocol/rfc1459.h" #include "modules/protocol/ts6.h" namespace ratbox { namespace senders { class Login : public messages::Login { public: using messages::Login::Login; void Send(User *u, NickServ::Nick *na) override; }; class Logout : public messages::Logout { public: using messages::Logout::Logout; void Send(User *u) override; }; class NickIntroduction : public messages::NickIntroduction { public: using messages::NickIntroduction::NickIntroduction; void Send(User *user) override; }; class SQLine : public messages::SQLine { public: using messages::SQLine::SQLine; void Send(User *, XLine *) override; }; class SQLineDel : public messages::SQLineDel { public: using messages::SQLineDel::SQLineDel; void Send(XLine *) override; }; class SVSNick : public messages::SVSNick { public: using messages::SVSNick::SVSNick; void Send(User *u, const Anope::string &newnick, time_t ts) override; }; class Topic : public rfc1459::senders::Topic { public: using rfc1459::senders::Topic::Topic; void Send(const MessageSource &source, Channel *channel, const Anope::string &topic, time_t topic_ts, const Anope::string &topic_setter) override; }; class Wallops : public messages::Wallops { public: using messages::Wallops::Wallops; void Send(const MessageSource &source, const Anope::string &msg) override; }; } // senders class Proto : public ts6::Proto { hybrid::Proto hybrid; ServiceBot *FindIntroduced(); public: Proto(Module *creator); bool IsIdentValid(const Anope::string &ident) override { return hybrid.IsIdentValid(ident); } void Handshake() override; }; class Encap : public IRCDMessage { public: Encap(Module *creator) : IRCDMessage(creator, "ENCAP", 3) { SetFlag(IRCDMESSAGE_REQUIRE_USER); } // Debug: Received: :00BAAAAAB ENCAP * LOGIN Adam void Run(MessageSource &source, const std::vector ¶ms) override; }; class Join : public rfc1459::Join { public: Join(Module *creator) : rfc1459::Join(creator, "JOIN") { } void Run(MessageSource &source, const std::vector ¶ms) override; }; class ServerMessage : public IRCDMessage { public: ServerMessage(Module *creator) : IRCDMessage(creator, "SERVER", 3) { } void Run(MessageSource &source, const std::vector ¶ms) override; }; class TB : public IRCDMessage { public: TB(Module *creator) : IRCDMessage(creator, "TB", 3) { SetFlag(IRCDMESSAGE_SOFT_LIMIT); } void Run(MessageSource &source, const std::vector ¶ms) override; }; class UID : public IRCDMessage { public: UID(Module *creator) : IRCDMessage(creator, "UID", 9) { SetFlag(IRCDMESSAGE_REQUIRE_SERVER); } void Run(MessageSource &source, const std::vector ¶ms) override; }; } // namespace ratbox