2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2013 Attila Molnar <attilamolnar@hush.com>
6 * This file is part of InspIRCd. InspIRCd is free software: you can
7 * redistribute it and/or modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation, version 2.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 class CommandShowFile : public Command
31 std::string introtext;
33 unsigned int intronumeric;
34 unsigned int textnumeric;
35 unsigned int endnumeric;
40 CommandShowFile(Module* parent, const std::string& cmdname)
41 : Command(parent, cmdname)
45 CmdResult Handle(const std::vector<std::string>& parameters, User* user) CXX11_OVERRIDE
47 const std::string& sn = ServerInstance->Config->ServerName;
48 if (method == SF_NUMERIC)
50 if (!introtext.empty())
51 user->SendText(":%s %03d %s :%s %s", sn.c_str(), intronumeric, user->nick.c_str(), sn.c_str(), introtext.c_str());
53 for (file_cache::const_iterator i = contents.begin(); i != contents.end(); ++i)
54 user->SendText(":%s %03d %s :- %s", sn.c_str(), textnumeric, user->nick.c_str(), i->c_str());
56 user->SendText(":%s %03d %s :%s", sn.c_str(), endnumeric, user->nick.c_str(), endtext.c_str());
60 const char* msgcmd = (method == SF_MSG ? "PRIVMSG" : "NOTICE");
61 std::string header = InspIRCd::Format(":%s %s %s :", sn.c_str(), msgcmd, user->nick.c_str());
62 for (file_cache::const_iterator i = contents.begin(); i != contents.end(); ++i)
63 user->SendText(header + *i);
68 void UpdateSettings(ConfigTag* tag, const std::vector<std::string>& filecontents)
70 introtext = tag->getString("introtext", "Showing " + name);
71 endtext = tag->getString("endtext", "End of " + name);
72 intronumeric = tag->getInt("intronumeric", RPL_RULESTART, 0, 999);
73 textnumeric = tag->getInt("numeric", RPL_RULES, 0, 999);
74 endnumeric = tag->getInt("endnumeric", RPL_RULESEND, 0, 999);
75 std::string smethod = tag->getString("method");
80 else if (smethod == "notice")
83 contents = filecontents;
84 if (tag->getBool("colors"))
85 InspIRCd::ProcessColors(contents);
89 class ModuleShowFile : public Module
91 std::vector<CommandShowFile*> cmds;
93 void ReadTag(ConfigTag* tag, std::vector<CommandShowFile*>& newcmds)
95 std::string cmdname = tag->getString("name");
97 throw ModuleException("Empty value for 'name'");
99 std::transform(cmdname.begin(), cmdname.end(), cmdname.begin(), ::toupper);
101 const std::string file = tag->getString("file", cmdname);
103 throw ModuleException("Empty value for 'file'");
104 FileReader reader(file);
106 CommandShowFile* sfcmd;
107 Command* handler = ServerInstance->Parser.GetHandler(cmdname);
110 // Command exists, check if it is ours
111 if (handler->creator != this)
112 throw ModuleException("Command " + cmdname + " already exists");
114 // This is our command, make sure we don't have the same entry twice
115 sfcmd = static_cast<CommandShowFile*>(handler);
116 if (std::find(newcmds.begin(), newcmds.end(), sfcmd) != newcmds.end())
117 throw ModuleException("Command " + cmdname + " is already used in a <showfile> tag");
121 // Command doesn't exist, create it
122 sfcmd = new CommandShowFile(this, cmdname);
123 ServerInstance->Modules->AddService(*sfcmd);
126 sfcmd->UpdateSettings(tag, reader.GetVector());
127 newcmds.push_back(sfcmd);
131 void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE
133 std::vector<CommandShowFile*> newcmds;
135 ConfigTagList tags = ServerInstance->Config->ConfTags("showfile");
136 for (ConfigIter i = tags.first; i != tags.second; ++i)
138 ConfigTag* tag = i->second;
141 ReadTag(tag, newcmds);
143 catch (CoreException& ex)
145 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Error: " + ex.GetReason() + " at " + tag->getTagLocation());
149 // Remove all commands that were removed from the config
150 std::vector<CommandShowFile*> removed(cmds.size());
151 std::sort(newcmds.begin(), newcmds.end());
152 std::set_difference(cmds.begin(), cmds.end(), newcmds.begin(), newcmds.end(), removed.begin());
154 stdalgo::delete_all(removed);
160 stdalgo::delete_all(cmds);
163 Version GetVersion() CXX11_OVERRIDE
165 return Version("Provides support for showing text files to users", VF_VENDOR);
169 MODULE_INIT(ModuleShowFile)