]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_chanhistory.cpp
m_halfop, m_chanhistory Remove redundant ModeParser::DelMode() calls, the modes are...
[user/henk/code/inspircd.git] / src / modules / m_chanhistory.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *
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.
9  *
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
13  * details.
14  *
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/>.
17  */
18
19
20 #include "inspircd.h"
21
22 /* $ModDesc: Provides channel history for a given number of lines */
23
24 struct HistoryItem
25 {
26         time_t ts;
27         std::string line;
28         HistoryItem(const std::string& Line) : ts(ServerInstance->Time()), line(Line) {}
29 };
30
31 struct HistoryList
32 {
33         std::deque<HistoryItem> lines;
34         unsigned int maxlen, maxtime;
35         HistoryList(unsigned int len, unsigned int time) : maxlen(len), maxtime(time) {}
36 };
37
38 class HistoryMode : public ModeHandler
39 {
40         bool IsValidDuration(const std::string duration)
41         {
42                 for (std::string::const_iterator i = duration.begin(); i != duration.end(); ++i)
43                 {
44                         unsigned char c = *i;
45                         if (((c >= '0') && (c <= '9')) || (c == 's') || (c != 'S'))
46                                 continue;
47
48                         if (duration_multi[c] == 1)
49                                 return false;
50                 }
51                 return true;
52         }
53
54  public:
55         SimpleExtItem<HistoryList> ext;
56         unsigned int maxlines;
57         HistoryMode(Module* Creator) : ModeHandler(Creator, "history", 'H', PARAM_SETONLY, MODETYPE_CHANNEL),
58                 ext("history", Creator) { }
59
60         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
61         {
62                 if (adding)
63                 {
64                         std::string::size_type colon = parameter.find(':');
65                         if (colon == std::string::npos)
66                                 return MODEACTION_DENY;
67
68                         std::string duration = parameter.substr(colon+1);
69                         if ((IS_LOCAL(source)) && ((duration.length() > 10) || (!IsValidDuration(duration))))
70                                 return MODEACTION_DENY;
71
72                         unsigned int len = ConvToInt(parameter.substr(0, colon));
73                         int time = ServerInstance->Duration(duration);
74                         if (len == 0 || time < 0)
75                                 return MODEACTION_DENY;
76                         if (len > maxlines && IS_LOCAL(source))
77                                 return MODEACTION_DENY;
78                         if (len > maxlines)
79                                 len = maxlines;
80                         if (parameter == channel->GetModeParameter(this))
81                                 return MODEACTION_DENY;
82
83                         HistoryList* history = ext.get(channel);
84                         if (history)
85                         {
86                                 // Shrink the list if the new line number limit is lower than the old one
87                                 if (len < history->lines.size())
88                                         history->lines.erase(history->lines.begin(), history->lines.begin() + (history->lines.size() - len));
89
90                                 history->maxlen = len;
91                                 history->maxtime = time;
92                         }
93                         else
94                         {
95                                 ext.set(channel, new HistoryList(len, time));
96                         }
97                         channel->SetModeParam('H', parameter);
98                 }
99                 else
100                 {
101                         if (!channel->IsModeSet('H'))
102                                 return MODEACTION_DENY;
103                         ext.unset(channel);
104                         channel->SetModeParam('H', "");
105                 }
106                 return MODEACTION_ALLOW;
107         }
108 };
109
110 class ModuleChanHistory : public Module
111 {
112         HistoryMode m;
113         bool sendnotice;
114  public:
115         ModuleChanHistory() : m(this)
116         {
117         }
118
119         void init()
120         {
121                 ServerInstance->Modules->AddService(m);
122
123                 Implementation eventlist[] = { I_OnPostJoin, I_OnUserMessage, I_OnRehash };
124                 ServerInstance->Modules->Attach(eventlist, this, 3);
125                 OnRehash(NULL);
126         }
127
128         void OnRehash(User*)
129         {
130                 ConfigTag* tag = ServerInstance->Config->ConfValue("chanhistory");
131                 m.maxlines = tag->getInt("maxlines", 50);
132                 sendnotice = tag->getInt("notice", true);
133         }
134
135         void OnUserMessage(User* user,void* dest,int target_type, const std::string &text, char status, const CUList&)
136         {
137                 if (target_type == TYPE_CHANNEL && status == 0)
138                 {
139                         Channel* c = (Channel*)dest;
140                         HistoryList* list = m.ext.get(c);
141                         if (list)
142                         {
143                                 char buf[MAXBUF];
144                                 snprintf(buf, MAXBUF, ":%s PRIVMSG %s :%s",
145                                         user->GetFullHost().c_str(), c->name.c_str(), text.c_str());
146                                 list->lines.push_back(HistoryItem(buf));
147                                 if (list->lines.size() > list->maxlen)
148                                         list->lines.pop_front();
149                         }
150                 }
151         }
152
153         void OnPostJoin(Membership* memb)
154         {
155                 if (IS_REMOTE(memb->user))
156                         return;
157
158                 HistoryList* list = m.ext.get(memb->chan);
159                 if (!list)
160                         return;
161                 time_t mintime = 0;
162                 if (list->maxtime)
163                         mintime = ServerInstance->Time() - list->maxtime;
164
165                 if (sendnotice)
166                 {
167                         memb->user->WriteServ("NOTICE %s :Replaying up to %d lines of pre-join history spanning up to %d seconds",
168                                 memb->chan->name.c_str(), list->maxlen, list->maxtime);
169                 }
170
171                 for(std::deque<HistoryItem>::iterator i = list->lines.begin(); i != list->lines.end(); ++i)
172                 {
173                         if (i->ts >= mintime)
174                                 memb->user->Write(i->line);
175                 }
176         }
177
178         Version GetVersion()
179         {
180                 return Version("Provides channel history replayed on join", VF_VENDOR);
181         }
182 };
183
184 MODULE_INIT(ModuleChanHistory)