]> jfr.im git - irc/quakenet/newserv.git/blob - helpmod2/hchannel.h
Whoops, bit too much copy paste there...
[irc/quakenet/newserv.git] / helpmod2 / hchannel.h
1 /* new H channel entries */
2 #ifndef HCHANNEL_H
3 #define HCHANNEL_H
4
5 #include <time.h>
6
7 #include "../channel/channel.h"
8
9 #include "hlamer.h"
10 #include "hcensor.h"
11 #include "hterm.h"
12 #include "htopic.h"
13 #include "hstat.h"
14 #include "hdef.h"
15 #include "hticket.h"
16
17 enum
18 {
19 H_PASSIVE = 1 << 0,
20 H_WELCOME = 1 << 1,
21 H_JOINFLOOD_PROTECTION = 1 << 2,
22 H_QUEUE = 1 << 3,
23
24 H_QUEUE_SPAMMY = 1 << 4,
25 H_QUEUE_MAINTAIN = 1 << 5,
26 H_REPORT = 1 << 6,
27 H_CENSOR = 1 << 7,
28
29 H_LAMER_CONTROL = 1 << 8,
30 H_ANTI_IDLE = 1 << 9,
31 H_MAINTAIN_M = 1 << 10,
32 H_MAINTAIN_I = 1 << 11,
33
34 H_HANDLE_TOPIC = 1 << 12,
35 H_DO_STATS = 1 << 13,
36 H_TROJAN_REMOVAL = 1 << 14,
37 H_CHANNEL_COMMANDS = 1 << 15,
38
39 H_OPER_ONLY = 1 << 16,
40 H_DISALLOW_LAME_TEXT = 1 << 17,
41 H_QUEUE_TIMEOUT = 1 << 18,
42 H_REQUIRE_TICKET = 1 << 19,
43
44 H_TICKET_MESSAGE = 1 << 20,
45 H_HIGHLIGHT_PREVENTION = 1 << 21,
46
47 /* the following are not real channel flags, they're used only internally */
48 H_UNUSED_1 = 1 << 28,
49 H_UNUSED_2 = 1 << 29,
50 H_JOIN_FLOOD = 1 << 30,
51 H_EVERYONEOUT = 1 << 31
52 };
53
54 #define H_CHANFLAGS_DEFAULT (H_CHANNEL_COMMANDS)
55
56 #define HCHANNEL_CONF_COUNT 21
57
58 typedef struct hchannel_struct
59 {
60 channel *real_channel;
61 char welcome[400];
62 int flags;
63
64 int jf_control; /* join flood control */
65 hcensor *censor; /* censor, keeps the bad words out */
66 int autoqueue; /* H_QUEUE_MAINTAIN value */
67 int max_idle; /* automatic idler removal */
68 htopic *topic;
69 hterm *channel_hterms; /* local terms */
70 struct hchannel_struct *report_to; /* where to report this channels statistics */
71
72 /* this is also the queue, so it's "sorted" */
73 struct hchannel_user_struct *channel_users;
74
75 time_t last_activity;
76 time_t last_staff_activity;
77 hstat_channel *stats;
78
79 hlc_profile *lc_profile;
80
81 struct hticket_struct *htickets;
82 sstring *ticket_message;
83
84 struct hchannel_struct *next;
85 } hchannel;
86
87 typedef struct hchannel_user_struct
88 {
89 struct huser_struct *husr;
90 time_t time_joined;
91 struct hchannel_user_struct *next;
92 } hchannel_user;
93
94 extern hchannel *hchannels;
95
96 hchannel *hchannel_add(const char *);
97 int hchannel_del(hchannel *);
98 void hchannel_del_all(void);
99 hchannel *hchannel_get_by_channel(channel *);
100 hchannel *hchannel_get_by_name(const char *);
101 const char *hchannel_get_name(hchannel*);
102
103 hchannel_user *hchannel_on_channel(hchannel*, struct huser_struct *);
104 hchannel_user *hchannel_add_user(hchannel*, struct huser_struct *);
105 hchannel_user *hchannel_del_user(hchannel*, struct huser_struct *);
106
107 int hchannel_authority(hchannel*, struct huser_struct *);
108
109 /* returns the setting state for a channel, the int is the flag, not 1 << parameter */
110 const char *hchannel_get_state(hchannel*, int);
111 /* returns a setting name */
112 const char *hchannel_get_sname(int);
113 void hchannel_conf_change(hchannel *, int);
114 void hchannel_mode_check(hchannel*);
115
116 void hchannel_remove_inactive_users(void);
117 void hchannel_report(void);
118
119 void hchannel_set_topic(hchannel *);
120
121 /*int hchannel_on_queue(hchannel *, struct huser_struct *);*/
122 int hchannels_on_queue(struct huser_struct*);
123 int hchannels_on_desk(struct huser_struct*);
124
125 int hchannel_count_users(hchannel *, hlevel);
126 int hchannel_count_queue(hchannel *);
127
128 void hchannels_dnmo(struct huser_struct*);
129
130 int hchannel_is_valid(hchannel *);
131
132 /* somewhat of a hack, but channels have to be loaded before accounts */
133 void hchannels_match_accounts(void);
134
135 int hchannel_count(void);
136
137 int hchannel_highlight_detection(hchannel *, const char *);
138
139 void hchannel_activate_join_flood(hchannel*);
140 /* goes to schedule */
141 void hchannel_deactivate_join_flood();
142
143 #endif