Merge Irssi 0.8.16-rc1
[silc.git] / apps / irssi / src / fe-common / core / fe-channels.c
index 6579e8b237985458af4051b245cfc1aa51952cb9..75147fdbcc588abc1b75dd1f77e177b1f9599599 100644 (file)
@@ -13,9 +13,9 @@
     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, write to the Free Software
-    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+    You should have received a copy of the GNU General Public License along
+    with this program; if not, write to the Free Software Foundation, Inc.,
+    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
 #include "module.h"
@@ -110,47 +110,31 @@ static void sig_channel_joined(CHANNEL_REC *channel)
                fe_channels_nicklist(channel, CHANNEL_NICKLIST_FLAG_ALL);
 }
 
-static void cmd_wjoin_pre(const char *data, SERVER_REC *server)
-{
-       GHashTable *optlist;
-       char *nick;
-       void *free_arg;
-
-       if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
-                           PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
-                           "join", &optlist, &nick))
-                return;
-
-       /* kludge for /join -invite -window if there is no invite */
-       if (g_hash_table_lookup(optlist, "invite") &&
-            server != NULL && server->last_invite == NULL) {
-               cmd_params_free(free_arg);
-               return;
-        }                    
-       if (g_hash_table_lookup(optlist, "window") != NULL) {
-               signal_add("channel created",
-                          (SIGNAL_FUNC) signal_channel_created_curwin);
-        }
-       cmd_params_free(free_arg);
-}
-
+/* SYNTAX: JOIN [-window] [-invite] [-<server tag>] <channels> [<keys>] */
 static void cmd_join(const char *data, SERVER_REC *server)
 {
        WINDOW_REC *window;
         CHANNEL_REC *channel;
        GHashTable *optlist;
-       char *channelname;
+       char *pdata;
+       int invite;
+       int samewindow;
        void *free_arg;
 
        if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
-                           PARAM_FLAG_UNKNOWN_OPTIONS,
-                           "join", &optlist, &channelname))
+                           PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
+                           "join", &optlist, &pdata))
                return;
 
+       invite = g_hash_table_lookup(optlist, "invite") != NULL;
+       samewindow = g_hash_table_lookup(optlist, "window") != NULL;
+       if (!invite && *pdata == '\0')
+               cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
+
        /* -<server tag> */
        server = cmd_options_get_server("join", optlist, server);
-       
-       channel = channel_find(server, channelname);
+
+       channel = channel_find(server, pdata);
        if (channel != NULL) {
                /* already joined to channel, set it active */
                window = window_item_window(channel);
@@ -159,23 +143,25 @@ static void cmd_join(const char *data, SERVER_REC *server)
 
                window_item_set_active(active_win, (WI_ITEM_REC *) channel);
        }
-       cmd_params_free(free_arg);
-}
-
-static void cmd_wjoin_post(const char *data)
-{
-       GHashTable *optlist;
-       char *nick;
-       void *free_arg;
-
-       if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
-                           PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
-                           "join", &optlist, &nick))
-               return;
-
-       if (g_hash_table_lookup(optlist, "window") != NULL) {
-               signal_remove("channel created",
-                          (SIGNAL_FUNC) signal_channel_created_curwin);
+       else {
+               if (server == NULL || !server->connected)
+                       cmd_param_error(CMDERR_NOT_CONNECTED);
+               if (invite) {
+                       if (server->last_invite == NULL) {
+                               printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_NOT_INVITED);
+                               signal_stop();
+                               cmd_params_free(free_arg);
+                               return;
+                       }
+                       pdata = server->last_invite;
+               }
+               if (samewindow)
+                       signal_add("channel created",
+                                  (SIGNAL_FUNC) signal_channel_created_curwin);
+               server->channels_join(server, pdata, FALSE);
+               if (samewindow)
+                       signal_remove("channel created",
+                                     (SIGNAL_FUNC) signal_channel_created_curwin);
        }
        cmd_params_free(free_arg);
 }
@@ -207,7 +193,7 @@ static void cmd_channel_list_joined(void)
                for (ntmp = nicklist; ntmp != NULL; ntmp = ntmp->next) {
                        NICK_REC *rec = ntmp->data;
 
-                       g_string_sprintfa(nicks, "%s ", rec->nick);
+                       g_string_append_printf(nicks, "%s ", rec->nick);
                }
 
                if (nicks->len > 1) g_string_truncate(nicks, nicks->len-1);
@@ -235,9 +221,9 @@ static void cmd_channel_list(void)
                if (rec->autojoin)
                        g_string_append(str, "autojoin, ");
                if (rec->botmasks != NULL && *rec->botmasks != '\0')
-                       g_string_sprintfa(str, "bots: %s, ", rec->botmasks);
+                       g_string_append_printf(str, "bots: %s, ", rec->botmasks);
                if (rec->autosendcmd != NULL && *rec->autosendcmd != '\0')
-                       g_string_sprintfa(str, "botcmd: %s, ", rec->autosendcmd);
+                       g_string_append_printf(str, "botcmd: %s, ", rec->autosendcmd);
 
                if (str->len > 2) g_string_truncate(str, str->len-2);
                printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_LINE,
@@ -413,14 +399,8 @@ static void display_sorted_nicks(CHANNEL_REC *channel, GSList *nicklist)
        for (tmp = nicklist; tmp != NULL; tmp = tmp->next) {
                NICK_REC *rec = tmp->data;
 
-               if (rec->other)
-                       nickmode[0] = rec->other;
-               else if (rec->op)
-                       nickmode[0] = '@';
-               else if (rec->halfop)
-                       nickmode[0] = '%';
-               else if (rec->voice)
-                       nickmode[0] = '+';
+               if (rec->prefixes[0])
+                       nickmode[0] = rec->prefixes[0];
                else
                        nickmode[0] = ' ';
                
@@ -508,12 +488,7 @@ void fe_channels_nicklist(CHANNEL_REC *channel, int flags)
        g_slist_free(nicklist);
 
        /* sort the nicklist */
-#if GLIB_MAJOR_VERSION < 2
-       /* glib1 doesn't have g_slist_sort_with_data, so non-standard prefixes won't be sorted correctly */
-       sorted = g_slist_sort(sorted, (GCompareFunc)nicklist_compare_glib1);
-#else
        sorted = g_slist_sort_with_data(sorted, (GCompareDataFunc) nicklist_compare, (void *)nick_flags);
-#endif
 
        /* display the nicks */
         if ((flags & CHANNEL_NICKLIST_FLAG_COUNT) == 0) {
@@ -575,7 +550,7 @@ static void cmd_names(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
        for (tmp = channels; *tmp != NULL; tmp++) {
                chanrec = channel_find(server, *tmp);
                if (chanrec == NULL)
-                       g_string_sprintfa(unknowns, "%s,", *tmp);
+                       g_string_append_printf(unknowns, "%s,", *tmp);
                else {
                        fe_channels_nicklist(chanrec, flags);
                        signal_stop();
@@ -643,9 +618,7 @@ void fe_channels_init(void)
        signal_add_last("server disconnected", (SIGNAL_FUNC) sig_disconnected);
        signal_add_last("channel joined", (SIGNAL_FUNC) sig_channel_joined);
 
-       command_bind_first("join", NULL, (SIGNAL_FUNC) cmd_wjoin_pre);
        command_bind("join", NULL, (SIGNAL_FUNC) cmd_join);
-       command_bind_last("join", NULL, (SIGNAL_FUNC) cmd_wjoin_post);
        command_bind("channel", NULL, (SIGNAL_FUNC) cmd_channel);
        command_bind("channel add", NULL, (SIGNAL_FUNC) cmd_channel_add);
        command_bind("channel remove", NULL, (SIGNAL_FUNC) cmd_channel_remove);
@@ -655,7 +628,7 @@ void fe_channels_init(void)
 
        command_set_options("channel add", "auto noauto -bots -botcmd");
        command_set_options("names", "count ops halfops voices normal");
-       command_set_options("join", "window");
+       command_set_options("join", "invite window");
 }
 
 void fe_channels_deinit(void)
@@ -666,9 +639,7 @@ void fe_channels_deinit(void)
        signal_remove("server disconnected", (SIGNAL_FUNC) sig_disconnected);
        signal_remove("channel joined", (SIGNAL_FUNC) sig_channel_joined);
 
-       command_unbind("join", (SIGNAL_FUNC) cmd_wjoin_pre);
        command_unbind("join", (SIGNAL_FUNC) cmd_join);
-       command_unbind("join", (SIGNAL_FUNC) cmd_wjoin_post);
        command_unbind("channel", (SIGNAL_FUNC) cmd_channel);
        command_unbind("channel add", (SIGNAL_FUNC) cmd_channel_add);
        command_unbind("channel remove", (SIGNAL_FUNC) cmd_channel_remove);