1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2010 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
/* $ModDesc: Provides channel history for a given number of lines */
struct HistoryItem
{
time_t ts;
std::string line;
HistoryItem(const std::string& Line) : ts(ServerInstance->Time()), line(Line) {}
};
struct HistoryList
{
std::deque<HistoryItem> lines;
unsigned int maxlen, maxtime;
HistoryList(unsigned int len, unsigned int time) : maxlen(len), maxtime(time) {}
};
class HistoryMode : public ModeHandler
{
public:
SimpleExtItem<HistoryList> ext;
HistoryMode(Module* Creator) : ModeHandler(Creator, "history", 'H', PARAM_SETONLY, MODETYPE_CHANNEL),
ext("history", Creator) { }
ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
{
if (adding)
{
std::string::size_type colon = parameter.find(':');
if (colon == std::string::npos)
return MODEACTION_DENY;
int len = atoi(parameter.substr(0, colon).c_str());
int time = ServerInstance->Duration(parameter.substr(colon+1));
if (len <= 0 || time < 0 || len > 50)
return MODEACTION_DENY;
ext.set(channel, new HistoryList(len, time));
channel->SetModeParam('H', parameter);
}
else
{
ext.unset(channel);
channel->SetModeParam('H', "");
}
return MODEACTION_ALLOW;
}
};
class ModuleChanHistory : public Module
{
HistoryMode m;
public:
ModuleChanHistory() : m(this)
{
if (!ServerInstance->Modes->AddMode(&m))
throw ModuleException("Could not add new modes!");
Implementation eventlist[] = { I_OnUserJoin, I_OnUserMessage };
ServerInstance->Modules->Attach(eventlist, this, 2);
}
~ModuleChanHistory()
{
ServerInstance->Modes->DelMode(&m);
}
void OnUserMessage(User* user,void* dest,int target_type, const std::string &text, char status, const CUList&)
{
if (target_type == TYPE_CHANNEL && status == 0)
{
Channel* c = (Channel*)dest;
HistoryList* list = m.ext.get(c);
if (list)
{
char buf[MAXBUF];
snprintf(buf, MAXBUF, ":%s PRIVMSG %s :%s",
user->GetFullHost().c_str(), c->name.c_str(), text.c_str());
list->lines.push_back(HistoryItem(buf));
if (list->lines.size() > list->maxlen)
list->lines.pop_front();
}
}
}
void OnUserJoin(Membership* memb, bool sync, bool created, CUList& except_list)
{
HistoryList* list = m.ext.get(memb->chan);
if (!list)
return;
time_t mintime = 0;
if (list->maxtime)
mintime = ServerInstance->Time() - list->maxtime;
memb->user->WriteServ("NOTICE %s :Replaying up to %d lines of pre-join history spanning up to %d seconds",
memb->chan->name.c_str(), list->maxlen, list->maxtime);
for(std::deque<HistoryItem>::iterator i = list->lines.begin(); i != list->lines.end(); ++i)
{
if (i->ts >= mintime)
memb->user->Write(i->line);
}
}
Version GetVersion()
{
return Version("Provides channel history replayed on join", VF_VENDOR);
}
};
MODULE_INIT(ModuleChanHistory)
|