marking.c
author Mikael Berthe <mikael@lilotux.net>
Sat, 04 Aug 2012 14:05:19 +0200
changeset 25 39d261f589d0
parent 24 5254ab4a5f24
child 26 24ed43268d29
permissions -rw-r--r--
Improve listing of marked JIDs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
     1
1
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     2
/*
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     3
 * marking.c            -- Actions on multiple buddies
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     4
 *
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     5
 * Copyrigth (C) 2009      Myhailo Danylenko <isbear@ukrpost.net>
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     6
 *
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     7
 * This program is free software; you can redistribute it and/or modify
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     8
 * it under the terms of the GNU General Public License as published by
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     9
 * the Free Software Foundation; either version 2 of the License, or (at
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    10
 * your option) any later version.
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    11
 *
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    12
 * This program is distributed in the hope that it will be useful, but
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    13
 * WITHOUT ANY WARRANTY; without even the implied warranty of
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    15
 * General Public License for more details.
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    16
 *
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    17
 * You should have received a copy of the GNU General Public License
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    18
 * along with this program; if not, write to the Free Software
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    20
 * USA
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
    21
 */
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    22
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    23
#include <glib.h>
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    24
#include <string.h>
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    25
2
30b66610f86a Change mcabber headers naming scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1
diff changeset
    26
#include <mcabber/hbuf.h>
30b66610f86a Change mcabber headers naming scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1
diff changeset
    27
#include <mcabber/screen.h>
30b66610f86a Change mcabber headers naming scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1
diff changeset
    28
#include <mcabber/commands.h>
30b66610f86a Change mcabber headers naming scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1
diff changeset
    29
#include <mcabber/compl.h>
30b66610f86a Change mcabber headers naming scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1
diff changeset
    30
#include <mcabber/utils.h>
30b66610f86a Change mcabber headers naming scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 1
diff changeset
    31
#include <mcabber/logprint.h>
10
b84d72957c06 New module loading scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2
diff changeset
    32
#include <mcabber/modules.h>
b84d72957c06 New module loading scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2
diff changeset
    33
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    34
#include "config.h"
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    35
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
    36
void marking_init   (void);
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
    37
void marking_uninit (void);
10
b84d72957c06 New module loading scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2
diff changeset
    38
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    39
#define DESCRIPTION ( "Actions on multiple marked buddies\nProvides commands /mark and /marked" )
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    40
22
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    41
module_info_t info_marking = {
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    42
	.branch      = MCABBER_BRANCH,
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    43
	.api         = MCABBER_API_VERSION,
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    44
	.version     = PROJECT_VERSION,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    45
	.description = DESCRIPTION,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    46
	.requires    = NULL,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    47
	.init        = marking_init,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    48
	.uninit      = marking_uninit,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    49
	.next        = NULL,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    50
};
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    51
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
    52
#ifdef MCABBER_API_HAVE_CMD_ID
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    53
static gpointer mark_cmid   = NULL;
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    54
static gpointer marked_cmid = NULL;
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    55
#endif
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    56
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    57
static GSList *marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    58
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    59
// mark set jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    60
// mark clear jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    61
// mark toggle jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    62
static void do_mark (char *arg)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    63
{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    64
	char     **args   = split_arg (arg, 2, 1);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    65
	char      *cmd    = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    66
	char      *jid    = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    67
	gboolean   jfree  = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    68
	int        marked = -1;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    69
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    70
	if (args[0]) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    71
		cmd = args[0];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    72
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    73
		if (args[1]) {
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    74
			const char *j = args[1];
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    75
			if (check_jid_syntax(j)) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    76
				scr_LogPrint(LPRINT_NORMAL|LPRINT_NOTUTF8,
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    77
					     "<%s> is not a valid Jabber ID.", j);
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    78
				return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    79
			}
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    80
			jid = jidtodisp(j);
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    81
			if (!jid) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    82
				scr_LogPrint(LPRINT_NORMAL|LPRINT_NOTUTF8,
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    83
					     "Unexpected error.");
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    84
				return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    85
			}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    86
			jfree = TRUE;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    87
		}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    88
	} else
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    89
		cmd = "set";
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    90
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    91
	if (!jid) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    92
		// JID was not provided
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    93
		const char *j = NULL;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    94
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    95
		if (current_buddy)
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    96
			j = CURRENT_JID;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    97
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    98
		if (!j) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    99
			scr_LogPrint(LPRINT_NORMAL, "No buddy is currently selected.");
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   100
			return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   101
		}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   102
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   103
		jid = g_strdup(j);
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   104
		jfree = TRUE;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   105
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   106
		// TODO: handle group marking :)
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   107
	}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   108
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   109
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   110
	if (!strcmp (cmd, "set")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   111
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   112
		if (!g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0)) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   113
			marked_jids = g_slist_append (marked_jids, jid);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   114
			marked = 1;
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   115
			jfree = FALSE;
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   116
		}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   117
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   118
	} else if (!strcmp (cmd, "clear")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   119
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   120
		GSList *mel = g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   121
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   122
		if (mel) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   123
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   124
			marked_jids = g_slist_delete_link (marked_jids, mel);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   125
			marked = 0;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   126
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   127
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   128
	} else if (!strcmp (cmd, "toggle")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   129
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   130
		GSList *mel = g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   131
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   132
		if (mel) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   133
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   134
			marked_jids = g_slist_delete_link (marked_jids, mel);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   135
			marked = 0;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   136
		} else {
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   137
			marked_jids = g_slist_append (marked_jids, jid);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   138
			marked = 1;
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   139
			jfree  = FALSE;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   140
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   141
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   142
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   143
	if (marked == 1) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   144
		scr_write_incoming_message (jid, "Marked", 0,
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   145
					    HBB_PREFIX_INFO|HBB_PREFIX_NOFLAG, 0);
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   146
	} else if (marked == 0) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   147
		scr_write_incoming_message (jid, "Mark cleared", 0,
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   148
					    HBB_PREFIX_INFO|HBB_PREFIX_NOFLAG, 0);
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   149
	}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   150
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   151
	if (jfree && jid)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   152
		g_free (jid);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   153
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   154
	free_arg_lst (args);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   155
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   156
1
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
   157
// marked clear
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
   158
// marked do cmd
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   159
void do_marked (char *arg)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   160
{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   161
	char **args = split_arg (arg, 2, 1);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   162
	char  *cmd = args[0];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   163
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   164
	if (!cmd)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   165
		cmd = "list";
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   166
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   167
	if (!strcmp (cmd, "list")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   168
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   169
		GSList *mel;
25
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   170
		guint len = g_slist_length(marked_jids);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   171
25
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   172
		if (!marked_jids) {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   173
			scr_log_print (LPRINT_NORMAL, "No marked JIDs.");
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   174
		} else {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   175
			scr_log_print (LPRINT_NORMAL, "%d marked JIDs:", len);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   176
			for (mel = marked_jids; mel; mel = mel->next) {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   177
				char *jid = (char *) mel->data;
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   178
				scr_log_print (LPRINT_NORMAL, " * %s", jid);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   179
			}
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   180
			// Smartly set the status flag if we have more marks than the log
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   181
			// window height.
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   182
			if (len + 1 > scr_getlogwinheight()) {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   183
				scr_setmsgflag_if_needed(SPECIAL_BUFFER_STATUS_ID, TRUE);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   184
				scr_setattentionflag_if_needed(SPECIAL_BUFFER_STATUS_ID, TRUE,
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   185
							       ROSTER_UI_PRIO_STATUS_WIN_MESSAGE, prio_max);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   186
			}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   187
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   188
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   189
	} else if (!strcmp (cmd, "clear")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   190
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   191
		GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   192
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   193
		for (mel = marked_jids; mel; mel = mel->next)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   194
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   195
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   196
		g_slist_free (marked_jids);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   197
		marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   198
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   199
	} else if (!strcmp (cmd, "do")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   200
		char *format = args[1];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   201
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   202
		if (!format)
25
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   203
			scr_log_print (LPRINT_NORMAL, "You must specify action to do with marked JIDs");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   204
		else {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   205
			char     *pos   = format;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   206
			gboolean  found = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   207
			gboolean  error = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   208
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   209
			for (pos = strchr (pos, '%'); pos; pos = strchr (pos, '%')) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   210
				if (*(pos + 1) == 's')
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   211
					found = TRUE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   212
				else if (*(pos + 1) == '%')
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   213
					++pos;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   214
				else {
12
5ae14bc061b2 Use new scr_* functions
Myhailo Danylenko <isbear@ukrpost.net>
parents: 11
diff changeset
   215
					scr_log_print (LPRINT_NORMAL, "Action string must not contain any other %%-sequesnces!");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   216
					error = TRUE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   217
					break;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   218
				}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   219
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   220
				++pos;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   221
			}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   222
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   223
			if (!found)
12
5ae14bc061b2 Use new scr_* functions
Myhailo Danylenko <isbear@ukrpost.net>
parents: 11
diff changeset
   224
				scr_log_print (LPRINT_NORMAL, "Action string must contain one %%s!");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   225
			else if (!error) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   226
				GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   227
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   228
				for (mel = marked_jids; mel; mel = mel->next) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   229
					char *jid     = (char *) mel->data;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   230
					char *command = g_strdup_printf (format, jid);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   231
					process_command (command, TRUE);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   232
					g_free (command);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   233
				}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   234
			}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   235
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   236
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   237
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   238
	free_arg_lst (args);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   239
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   240
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   241
void marking_init (void)
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   242
{
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   243
#ifndef MCABBER_API_HAVE_CMD_ID
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   244
	cmd_add ("mark", "", 0, COMPL_JID, do_mark, NULL);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   245
	cmd_add ("marked", "", 0, COMPL_CMD, do_marked, NULL);
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   246
#else
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   247
	mark_cmid   = cmd_add ("mark", "", 0, COMPL_JID, do_mark, NULL);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   248
	marked_cmid = cmd_add ("marked", "", 0, COMPL_CMD, do_marked, NULL);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   249
#endif
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   250
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   251
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   252
void marking_uninit (void)
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   253
{
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   254
#ifndef MCABBER_API_HAVE_CMD_ID
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   255
	cmd_del ("mark");
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   256
	cmd_del ("marked");
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   257
#else
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   258
	if (mark_cmid)
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   259
		cmd_del (mark_cmid);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   260
	if (marked_cmid)
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   261
		cmd_del (marked_cmid);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   262
#endif
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   263
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   264
	{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   265
		GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   266
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   267
		for (mel = marked_jids; mel; mel = mel->next)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   268
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   269
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   270
		g_slist_free (marked_jids);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   271
		marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   272
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   273
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   274
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   275
/* vim: se ts=4 sw=4: */