1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2010 InspIRCd Development Team
6 * See: http://wiki.inspircd.org/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
16 /* $ModDesc: Provides channel history for a given number of lines */
22 HistoryItem(const std::string& Line) : ts(ServerInstance->Time()), line(Line) {}
27 std::deque<HistoryItem> lines;
28 unsigned int maxlen, maxtime;
29 HistoryList(unsigned int len, unsigned int time) : maxlen(len), maxtime(time) {}
32 class HistoryMode : public ModeHandler
35 SimpleExtItem<HistoryList> ext;
37 HistoryMode(Module* Creator) : ModeHandler(Creator, "history", 'H', PARAM_SETONLY, MODETYPE_CHANNEL),
38 ext("history", Creator) { }
40 ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
44 std::string::size_type colon = parameter.find(':');
45 if (colon == std::string::npos)
46 return MODEACTION_DENY;
47 int len = atoi(parameter.substr(0, colon).c_str());
48 int time = ServerInstance->Duration(parameter.substr(colon+1));
49 if (len <= 0 || time < 0)
50 return MODEACTION_DENY;
51 if (len > maxlines && IS_LOCAL(source))
52 return MODEACTION_DENY;
55 if (parameter == channel->GetModeParameter(this))
56 return MODEACTION_DENY;
57 ext.set(channel, new HistoryList(len, time));
58 channel->SetModeParam('H', parameter);
62 if (!channel->IsModeSet('H'))
63 return MODEACTION_DENY;
65 channel->SetModeParam('H', "");
67 return MODEACTION_ALLOW;
71 class ModuleChanHistory : public Module
75 ModuleChanHistory() : m(this)
81 ServerInstance->Modules->AddService(m);
83 Implementation eventlist[] = { I_OnPostJoin, I_OnUserMessage, I_OnRehash };
84 ServerInstance->Modules->Attach(eventlist, this, 3);
90 m.maxlines = ServerInstance->Config->ConfValue("chanhistory")->getInt("maxlines", 50);
95 ServerInstance->Modes->DelMode(&m);
98 void OnUserMessage(User* user,void* dest,int target_type, const std::string &text, char status, const CUList&)
100 if (target_type == TYPE_CHANNEL && status == 0)
102 Channel* c = (Channel*)dest;
103 HistoryList* list = m.ext.get(c);
107 snprintf(buf, MAXBUF, ":%s PRIVMSG %s :%s",
108 user->GetFullHost().c_str(), c->name.c_str(), text.c_str());
109 list->lines.push_back(HistoryItem(buf));
110 if (list->lines.size() > list->maxlen)
111 list->lines.pop_front();
116 void OnPostJoin(Membership* memb)
118 HistoryList* list = m.ext.get(memb->chan);
123 mintime = ServerInstance->Time() - list->maxtime;
124 memb->user->WriteServ("NOTICE %s :Replaying up to %d lines of pre-join history spanning up to %d seconds",
125 memb->chan->name.c_str(), list->maxlen, list->maxtime);
126 for(std::deque<HistoryItem>::iterator i = list->lines.begin(); i != list->lines.end(); ++i)
128 if (i->ts >= mintime)
129 memb->user->Write(i->line);
135 return Version("Provides channel history replayed on join", VF_VENDOR);
139 MODULE_INIT(ModuleChanHistory)