summaryrefslogtreecommitdiff
path: root/src/plugins/irc/irc-mode.c
blob: a8e39a9110eea633e00099681830b820c30086f1 (plain)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*
 * Copyright (c) 2003-2009 by FlashCode <flashcode@flashtux.org>
 * See README for License detail, AUTHORS for developers list.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/* irc-mode.c: IRC channel/user modes management */


#include <stdlib.h>
#include <string.h>

#include "../weechat-plugin.h"
#include "irc.h"
#include "irc-mode.h"
#include "irc-server.h"
#include "irc-channel.h"
#include "irc-nick.h"


/*
 * irc_mode_channel_set_nick: set a mode for a nick on a channel
 */

void
irc_mode_channel_set_nick (struct t_irc_channel *channel, const char *nick,
                           char set_flag, int flag)
{
    struct t_irc_nick *ptr_nick;
    
    if (nick)
    {
        ptr_nick = irc_nick_search (channel, nick);
        if (ptr_nick)
            irc_nick_set (channel, ptr_nick, (set_flag == '+'), flag);
    }
}

/*
 * irc_mode_channel_get_flag: search for flag before current position
 */

char
irc_mode_channel_get_flag (const char *string, const char *pos)
{
    char set_flag;

    set_flag = '+';
    pos--;
    while (pos >= string)
    {
        if (pos[0] == '-')
            return '-';
        if (pos[0] == '+')
            return '+';
        pos--;
    }
    return set_flag;
}

/*
 * irc_mode_channel_set: set channel modes
 *                       return: 1 if channel modes are updated
 *                               0 if channel modes are NOT updated
 *                                 (no update or on nicks only)
 */

int
irc_mode_channel_set (struct t_irc_server *server,
                      struct t_irc_channel *channel, const char *modes)
{
    char *pos_args, *str_modes, set_flag, **argv, *pos, *ptr_arg;
    int channel_modes_updated, argc, current_arg;
    
    if (!server || !channel || !modes)
        return 0;
    
    channel_modes_updated = 0;
    
    argc = 0;
    argv = NULL;
    current_arg = 0;
    pos_args = strchr (modes, ' ');
    if (pos_args)
    {
        str_modes = weechat_strndup (modes, pos_args - modes);
        if (!str_modes)
            return 0;
        pos_args++;
        while (pos_args[0] == ' ')
            pos_args++;
        argv = weechat_string_explode (pos_args, " ", 0, 0, &argc);
        if (argc > 0)
            current_arg = argc - 1;
    }
    else
    {
        str_modes = strdup (modes);
        if (!str_modes)
            return 0;
    }
    
    if (str_modes && str_modes[0])
    {
        set_flag = '+';
        pos = str_modes + strlen (str_modes) - 1;
        while (pos >= str_modes)
        {
            switch (pos[0])
            {
                case ':':
                case ' ':
                case '+':
                case '-':
                    break;
                default:
                    set_flag = irc_mode_channel_get_flag (str_modes, pos);
                    switch (pos[0])
                    {
                        case 'a': /* channel admin (unrealircd specific flag) */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            if (irc_mode_nick_prefix_allowed (server, '~'))
                                irc_mode_channel_set_nick (channel, ptr_arg,
                                                           set_flag, IRC_NICK_CHANADMIN);
                            break;
                        case 'b': /* ban (ignored) */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            break;
                        case 'h': /* half-op */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            if (irc_mode_nick_prefix_allowed (server, '%'))
                                irc_mode_channel_set_nick (channel, ptr_arg,
                                                           set_flag, IRC_NICK_HALFOP);
                            break;
                        case 'k': /* channel key */
                            if (channel->key)
                            {
                                free (channel->key);
                                channel->key = NULL;
                            }
                            if (set_flag == '+')
                            {
                                ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                    argv[current_arg--] : NULL;
                                if (ptr_arg)
                                    channel->key = strdup (ptr_arg);
                            }
                            channel_modes_updated = 1;
                            break;
                        case 'l': /* channel limit */
                            if (set_flag == '-')
                                channel->limit = 0;
                            if (set_flag == '+')
                            {
                                ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                    argv[current_arg--] : NULL;
                                if (ptr_arg)
                                    channel->limit = atoi (ptr_arg);
                            }
                            channel_modes_updated = 1;
                            break;
                        case 'o': /* op */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            if (irc_mode_nick_prefix_allowed (server, '@'))
                                irc_mode_channel_set_nick (channel, ptr_arg,
                                                           set_flag, IRC_NICK_OP);
                            break;
                        case 'q': /* channel owner (unrealircd specific flag) */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            if (irc_mode_nick_prefix_allowed (server, '~'))
                                irc_mode_channel_set_nick (channel, ptr_arg,
                                                           set_flag, IRC_NICK_CHANOWNER);
                            break;
                        case 'u': /* channel user */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            if (irc_mode_nick_prefix_allowed (server, '-'))
                                irc_mode_channel_set_nick (channel, ptr_arg,
                                                           set_flag, IRC_NICK_CHANUSER);
                            break;
                        case 'v': /* voice */
                            ptr_arg = ((argc > 0) && (current_arg >= 0)) ?
                                argv[current_arg--] : NULL;
                            if (irc_mode_nick_prefix_allowed (server, '+'))
                                irc_mode_channel_set_nick (channel, ptr_arg,
                                                           set_flag, IRC_NICK_VOICE);
                            break;
                        default:
                            channel_modes_updated = 1;
                            break;
                    }
                    break;
            }
            pos--;
        }
    }
    
    if (str_modes)
        free (str_modes);
    if (argv)
        weechat_string_free_exploded (argv);
    
    weechat_bar_item_update ("buffer_name");
    
    return channel_modes_updated;
}

/*
 * irc_mode_user_add: add a user mode
 */

void
irc_mode_user_add (struct t_irc_server *server, char mode)
{
    char str_mode[2];

    str_mode[0] = mode;
    str_mode[1] = '\0';
    
    if (server->nick_modes)
    {
        if (!strchr (server->nick_modes, mode))
        {
            server->nick_modes = realloc (server->nick_modes,
                                          strlen (server->nick_modes) + 1 + 1);
            strcat (server->nick_modes, str_mode);
            weechat_bar_item_update ("input_prompt");
        }
    }
    else
    {
        server->nick_modes = malloc (2);
        strcpy (server->nick_modes, str_mode);
        weechat_bar_item_update ("input_prompt");
    }
}

/*
 * irc_mode_user_remove: remove a user mode
 */

void
irc_mode_user_remove (struct t_irc_server *server, char mode)
{
    char *pos;
    int new_size;
    
    if (server->nick_modes)
    {
        pos = strchr (server->nick_modes, mode);
        if (pos)
        {
            new_size = strlen (server->nick_modes);
            memmove (pos, pos + 1, strlen (pos + 1) + 1);
            server->nick_modes = realloc (server->nick_modes, new_size);
            weechat_bar_item_update ("input_prompt");
        }
    }
}

/*
 * irc_mode_user_set: set user modes
 */

void
irc_mode_user_set (struct t_irc_server *server, const char *modes)
{
    char set_flag;
    
    set_flag = '+';
    while (modes && modes[0])
    {
        switch (modes[0])
        {
            case ':':
            case ' ':
                break;
            case '+':
                set_flag = '+';
                break;
            case '-':
                set_flag = '-';
                break;
            default:
                if (set_flag == '+')
                    irc_mode_user_add (server, modes[0]);
                else
                    irc_mode_user_remove (server, modes[0]);
                break;
        }
        modes++;
    }
}

/*
 * irc_mode_nick_prefix_allowed: return <> 0 if nick prefix is allowed by server
 *                               for example :
 *                                 IRC:  005 (...) PREFIX=(ov)@+
 *                               => allowed prefixes: @+
 */

int
irc_mode_nick_prefix_allowed (struct t_irc_server *server, char prefix)
{
    char str[2];
    
    /* if server did not send any prefix info, then use default prefixes */
    if (!server->prefix)
    {
        str[0] = prefix;
        str[1] = '\0';
        return (strpbrk (str, IRC_NICK_DEFAULT_PREFIXES_LIST)) ? 1 : 0;
    }
    
    return (strchr (server->prefix, prefix) != NULL);
}