marking.c
author Mikael Berthe <mikael@lilotux.net>
Sat, 04 Aug 2012 14:53:15 +0200
changeset 28 940e15e0075b
parent 27 b51de2faa028
child 29 2464d2194e57
permissions -rw-r--r--
Add French translation
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     1
/*
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     2
 * marking.c            -- Actions on multiple buddies
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
     3
 *
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
     4
 * Copyright (C) 2009-2012 Myhailo Danylenko <isbear@ukrpost.net>
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
     5
 * Copyright (C) 2012      Mikael Berthe <mikael@lilotux.net>
1
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
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
    39
#define DESCRIPTION ( "Actions on multiple marked buddies\n" \
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
    40
					  "Provides commands /mark and /marked" )
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    41
22
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    42
module_info_t info_marking = {
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    43
	.branch      = MCABBER_BRANCH,
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    44
	.api         = MCABBER_API_VERSION,
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    45
	.version     = PROJECT_VERSION,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    46
	.description = DESCRIPTION,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    47
	.requires    = NULL,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    48
	.init        = marking_init,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    49
	.uninit      = marking_uninit,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    50
	.next        = NULL,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    51
};
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    52
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
    53
#ifdef MCABBER_API_HAVE_CMD_ID
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    54
static gpointer mark_cmid   = NULL;
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    55
static gpointer marked_cmid = NULL;
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    56
#endif
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    57
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    58
static GSList *marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    59
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    60
// mark set jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    61
// mark clear jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    62
// mark toggle jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    63
static void do_mark (char *arg)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    64
{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    65
	char     **args   = split_arg (arg, 2, 1);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    66
	char      *cmd    = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    67
	char      *jid    = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    68
	gboolean   jfree  = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    69
	int        marked = -1;
26
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
    70
	guint	   len;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    71
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    72
	if (args[0]) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    73
		cmd = args[0];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    74
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    75
		if (args[1]) {
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    76
			const char *j = args[1];
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    77
			if (check_jid_syntax(j)) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    78
				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
    79
					     "<%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
    80
				return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    81
			}
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    82
			jid = jidtodisp(j);
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    83
			if (!jid) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    84
				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
    85
					     "Unexpected error.");
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    86
				return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    87
			}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    88
			jfree = TRUE;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    89
		}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    90
	} else
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    91
		cmd = "set";
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    92
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    93
	if (!jid) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    94
		// JID was not provided
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    95
		const char *j = NULL;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    96
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    97
		if (current_buddy)
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    98
			j = CURRENT_JID;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    99
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   100
		if (!j) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   101
			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
   102
			return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   103
		}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   104
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   105
		jid = g_strdup(j);
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   106
		jfree = TRUE;
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
		// TODO: handle group marking :)
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   109
	}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   110
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   111
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   112
	if (!strcmp (cmd, "set")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   113
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   114
		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
   115
			marked_jids = g_slist_append (marked_jids, jid);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   116
			marked = 1;
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   117
			jfree = FALSE;
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   118
		}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   119
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   120
	} else if (!strcmp (cmd, "clear")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   121
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   122
		GSList *mel = g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   123
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   124
		if (mel) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   125
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   126
			marked_jids = g_slist_delete_link (marked_jids, mel);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   127
			marked = 0;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   128
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   129
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   130
	} else if (!strcmp (cmd, "toggle")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   131
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   132
		GSList *mel = g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   133
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   134
		if (mel) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   135
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   136
			marked_jids = g_slist_delete_link (marked_jids, mel);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   137
			marked = 0;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   138
		} else {
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   139
			marked_jids = g_slist_append (marked_jids, jid);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   140
			marked = 1;
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   141
			jfree  = FALSE;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   142
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   143
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   144
26
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   145
	len = g_slist_length(marked_jids);
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   146
	if (marked == 1) {
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, "Marked", 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
	} else if (marked == 0) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   150
		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
   151
					    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
   152
	}
26
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   153
	if (marked >= 0) {
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   154
		scr_LogPrint(LPRINT_NORMAL, "<%s> is now %s (%u mark%s).", jid,
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   155
					 marked == 1 ? "marked" : "unmarked",
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   156
					 len, len > 1 ? "s" : "");
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
   157
	}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   158
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   159
	if (jfree && jid)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   160
		g_free (jid);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   161
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   162
	free_arg_lst (args);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   163
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   164
1
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
   165
// marked clear
c8473c43ce72 Cosmetics, install help
Myhailo Danylenko <isbear@ukrpost.net>
parents: 0
diff changeset
   166
// marked do cmd
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   167
void do_marked (char *arg)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   168
{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   169
	char **args = split_arg (arg, 2, 1);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   170
	char  *cmd = args[0];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   171
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   172
	if (!cmd)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   173
		cmd = "list";
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   174
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   175
	if (!strcmp (cmd, "list")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   176
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   177
		GSList *mel;
25
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   178
		guint len = g_slist_length(marked_jids);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   179
25
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   180
		if (!marked_jids) {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   181
			scr_log_print (LPRINT_NORMAL, "No marked JIDs.");
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   182
		} else {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   183
			scr_log_print (LPRINT_NORMAL, "%d marked JIDs:", len);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   184
			for (mel = marked_jids; mel; mel = mel->next) {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   185
				char *jid = (char *) mel->data;
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   186
				scr_log_print (LPRINT_NORMAL, " * %s", jid);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   187
			}
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   188
			// 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
   189
			// window height.
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   190
			if (len + 1 > scr_getlogwinheight()) {
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   191
				scr_setmsgflag_if_needed(SPECIAL_BUFFER_STATUS_ID, TRUE);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   192
				scr_setattentionflag_if_needed(SPECIAL_BUFFER_STATUS_ID, TRUE,
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   193
							       ROSTER_UI_PRIO_STATUS_WIN_MESSAGE, prio_max);
39d261f589d0 Improve listing of marked JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 24
diff changeset
   194
			}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   195
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   196
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   197
	} else if (!strcmp (cmd, "clear")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   198
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   199
		GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   200
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   201
		for (mel = marked_jids; mel; mel = mel->next)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   202
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   203
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   204
		g_slist_free (marked_jids);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   205
		marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   206
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   207
	} else if (!strcmp (cmd, "do")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   208
		char *format = args[1];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   209
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   210
		if (!format)
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   211
			scr_log_print (LPRINT_NORMAL,
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   212
				       "You must specify action to do with marked JIDs");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   213
		else {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   214
			char     *pos   = format;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   215
			gboolean  found = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   216
			gboolean  error = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   217
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   218
			for (pos = strchr (pos, '%'); pos; pos = strchr (pos, '%')) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   219
				if (*(pos + 1) == 's')
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   220
					found = TRUE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   221
				else if (*(pos + 1) == '%')
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   222
					++pos;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   223
				else {
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   224
					scr_log_print (LPRINT_NORMAL,
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   225
						       "Action string must not contain any other %%-sequences!");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   226
					error = TRUE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   227
					break;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   228
				}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   229
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   230
				++pos;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   231
			}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   232
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   233
			if (!found)
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   234
				scr_log_print (LPRINT_NORMAL,
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   235
					       "Action string must contain one %%s!");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   236
			else if (!error) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   237
				GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   238
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   239
				for (mel = marked_jids; mel; mel = mel->next) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   240
					char *jid     = (char *) mel->data;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   241
					char *command = g_strdup_printf (format, jid);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   242
					process_command (command, TRUE);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   243
					g_free (command);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   244
				}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   245
			}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   246
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   247
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   248
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   249
	free_arg_lst (args);
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_init (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_add ("mark", "", 0, COMPL_JID, do_mark, NULL);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   256
	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
   257
#else
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   258
	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
   259
	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
   260
#endif
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   261
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   262
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   263
void marking_uninit (void)
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   264
{
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   265
#ifndef MCABBER_API_HAVE_CMD_ID
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   266
	cmd_del ("mark");
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   267
	cmd_del ("marked");
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   268
#else
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   269
	if (mark_cmid)
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   270
		cmd_del (mark_cmid);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   271
	if (marked_cmid)
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   272
		cmd_del (marked_cmid);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   273
#endif
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   274
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   275
	{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   276
		GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   277
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   278
		for (mel = marked_jids; mel; mel = mel->next)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   279
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   280
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   281
		g_slist_free (marked_jids);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   282
		marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   283
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   284
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   285
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   286
/* vim: se ts=4 sw=4: */