]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/snomasks.h
e1af1a1099c998484d780e7a2cd657e0b35478dd
[user/henk/code/inspircd.git] / include / snomasks.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __SNOMASKS_H__
15 #define __SNOMASKS_H__
16
17 class Snomask : public Extensible
18 {
19  private:
20         InspIRCd *ServerInstance;
21
22  public:
23         char MySnomask;
24         std::string Description;
25         std::string LastMessage;
26         bool LastBlocked;
27         unsigned int Count;
28
29         /** Create a new Snomask
30          */
31         Snomask(InspIRCd* Instance, char snomask, const std::string &description) : ServerInstance(Instance), MySnomask(snomask), Description(description), LastMessage(""), Count(0)
32         {
33         }
34
35         /** Sends a message to all opers with this snomask.
36          */
37         void SendMessage(const std::string &message);
38
39         /** Sends out the (last message repeated N times) message
40          */
41         void Flush();
42 };
43
44 /** A list of snomasks which are valid, and their descriptive texts
45  */
46 typedef std::map<char, Snomask *> SnoList;
47
48 /** Snomask manager handles routing of SNOMASK (usermode +n) messages to opers.
49  * Modules and the core can enable and disable snomask characters. If they do,
50  * then sending snomasks using these characters becomes possible.
51  */
52 class CoreExport SnomaskManager : public Extensible
53 {
54  private:
55         /** Creator/owner
56          */
57         InspIRCd* ServerInstance;
58
59         /** Currently active snomask list
60          */
61         SnoList SnoMasks;
62
63         /** Set up the default (core available) snomask chars
64          */
65         void SetupDefaults();
66  public:
67         /** Create a new SnomaskManager
68          */
69         SnomaskManager(InspIRCd* Instance);
70
71         /** Delete SnomaskManager
72          */
73         ~SnomaskManager();
74
75         /** Enable a snomask.
76          * @param letter The snomask letter to enable. Once enabled,
77          * server notices may be routed to users with this letter in
78          * their list, and users may add this letter to their list.
79          * @param description The descriptive text sent along with any
80          * server notices, at the start of the notice, e.g. "GLOBOPS".
81          * @return True if the snomask was enabled, false if it already
82          * exists.
83          */
84         bool EnableSnomask(char letter, const std::string &description);
85
86         /** Disable a snomask.
87          * @param letter The snomask letter to disable.
88          * @return True if the snomask was disabled, false if it didn't
89          * exist.
90          */
91         bool DisableSnomask(char letter);
92
93         /** Write to all users with a given snomask (local server only)
94          * @param letter The snomask letter to write to
95          * @param text The text to send to the users
96          */
97         void WriteToSnoMask(char letter, const std::string &text);
98
99         /** Write to all users with a given snomask (local server only)
100          * @param letter The snomask letter to write to
101          * @param text A format string containing text to send
102          * @param ... Format arguments
103          */
104         void WriteToSnoMask(char letter, const char* text, ...) CUSTOM_PRINTF(3, 4);
105
106         /** Write to all users with a given snomask (sent globally)
107          * @param letter The snomask letter to write to
108          * @param text The text to send to the users
109          */
110         void WriteGlobalSno(char letter, const std::string &text);
111
112         /** Write to all users with a given snomask (sent globally)
113          * @param letter The snomask letter to write to
114          * @param text A format string containing text to send
115          * @param ... Format arguments
116          */
117         void WriteGlobalSno(char letter, const char* text, ...) CUSTOM_PRINTF(3, 4);
118
119
120         /** Called once per 5 seconds from the mainloop, this flushes any cached
121          * snotices. The way the caching works is as follows:
122          * Calls to WriteToSnoMask write to a cache, if the call is the same as it was
123          * for the previous call, then a count is incremented. If it is different,
124          * the previous message it just sent normally via NOTICE (with count if > 1)
125          * and the new message is cached. This acts as a sender in case the number of notices
126          * is not particularly significant, in order to keep notices going out.
127          */
128         void FlushSnotices();
129
130         /** Check if a snomask is enabled.
131          * @param letter The snomask letter to check.
132          * @return True if the snomask has been enabled.
133          */
134         bool IsEnabled(char letter);
135 };
136
137 #endif