marking.c
author Myhailo Danylenko <isbear@ukrpost.net>
Thu, 13 Nov 2014 23:29:42 +0200
changeset 34 1820e2dc90ef
parent 31 55395c6ef7ea
permissions -rw-r--r--
[avv] Update avv dependencies
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
34
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    26
#include <mcabber/commands.h>  // cmd_add (), cmd_del (), process_command ()
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    27
#include <mcabber/compl.h>     // COMPL_JID, COMPL_CMD
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    28
#include <mcabber/hbuf.h>      // HBB_PREFIX_INFO, HBB_PREFIX_NOFLAG
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    29
#include <mcabber/logprint.h>  // scr_log_print ()
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    30
#include <mcabber/modules.h>   // module_info_t
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    31
#include <mcabber/roster.h>    // ROSTER_UI_PRIO_STATUS_WIN_MESSAGE, SPECIAL_BUFFER_STATUS_ID, current_buddy
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    32
#include <mcabber/screen.h>    // scr_write_incoming_message (), scr_getlogwinheight (), scr_setmsgflag_if_needed (), scr_setattentionflag_if_needed ()
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    33
#include <mcabber/utils.h>     // free_arg_lst (), split_arg ()
10
b84d72957c06 New module loading scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2
diff changeset
    34
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    35
#include "config.h"
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    36
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
    37
void marking_init   (void);
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
    38
void marking_uninit (void);
10
b84d72957c06 New module loading scheme
Myhailo Danylenko <isbear@ukrpost.net>
parents: 2
diff changeset
    39
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
    40
#define DESCRIPTION ( "Actions on multiple marked buddies\n" \
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
    41
					  "Provides commands /mark and /marked" )
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    42
22
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    43
module_info_t info_marking = {
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    44
	.branch      = MCABBER_BRANCH,
cbae62eecb1d Use build-time api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 21
diff changeset
    45
	.api         = MCABBER_API_VERSION,
11
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    46
	.version     = PROJECT_VERSION,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    47
	.description = DESCRIPTION,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    48
	.requires    = NULL,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    49
	.init        = marking_init,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    50
	.uninit      = marking_uninit,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    51
	.next        = NULL,
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    52
};
f7c76b2c9900 Use new module struct with api version
Myhailo Danylenko <isbear@ukrpost.net>
parents: 10
diff changeset
    53
34
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
    54
#ifdef HAVE_MCABBER_CMD_ID
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    55
static gpointer mark_cmid   = NULL;
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    56
static gpointer marked_cmid = NULL;
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    57
#endif
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
    58
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    59
static GSList *marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    60
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    61
// mark set jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    62
// mark clear jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    63
// mark toggle jid
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    64
static void do_mark (char *arg)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    65
{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    66
	char     **args   = split_arg (arg, 2, 1);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    67
	char      *cmd    = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    68
	char      *jid    = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    69
	gboolean   jfree  = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    70
	int        marked = -1;
26
24ed43268d29 Display a message when marking/unmarking a contact
Mikael Berthe <mikael@lilotux.net>
parents: 25
diff changeset
    71
	guint	   len;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    72
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    73
	if (args[0]) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    74
		cmd = args[0];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    75
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    76
		if (args[1]) {
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    77
			const char *j = args[1];
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    78
			if (check_jid_syntax(j)) {
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
    79
				scr_log_print(LPRINT_NORMAL|LPRINT_NOTUTF8,
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
    80
					          "<%s> is not a valid Jabber ID.", j);
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    81
				return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    82
			}
29
2464d2194e57 Allow full JIDs
Mikael Berthe <mikael@lilotux.net>
parents: 27
diff changeset
    83
			jid = g_strdup(j);
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    84
			if (!jid) {
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
    85
				scr_log_print (LPRINT_NORMAL|LPRINT_NOTUTF8,
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
    86
					           "Unexpected error.");
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    87
				return;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    88
			}
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    89
			jfree = TRUE;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    90
		}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    91
	} else
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
    92
		cmd = "set";
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
    93
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    94
	if (!jid) {
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    95
		// JID was not provided
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    96
		const char *j = NULL;
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 (current_buddy)
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
    99
			j = CURRENT_JID;
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   100
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   101
		if (!j) {
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   102
			scr_log_print (LPRINT_NORMAL, "No buddy is currently selected.");
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   103
			return;
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
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   106
		jid   = g_strdup (j);
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   107
		jfree = TRUE;
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
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   110
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   111
	if (!strcmp (cmd, "set")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   112
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   113
		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
   114
			marked_jids = g_slist_append (marked_jids, jid);
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   115
			marked      = 1;
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   116
			jfree       = FALSE;
23
66455f258c64 Check user-supplied JID, change memory allocation tracking logic
Mikael Berthe <mikael@lilotux.net>
parents: 22
diff changeset
   117
		}
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   118
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   119
	} else if (!strcmp (cmd, "clear")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   120
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   121
		GSList *mel = g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   122
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   123
		if (mel) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   124
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   125
			marked_jids = g_slist_delete_link (marked_jids, mel);
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   126
			marked      = 0;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   127
		}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   128
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   129
	} else if (!strcmp (cmd, "toggle")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   130
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   131
		GSList *mel = g_slist_find_custom (marked_jids, jid, (GCompareFunc) g_strcmp0);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   132
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   133
		if (mel) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   134
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   135
			marked_jids = g_slist_delete_link (marked_jids, mel);
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   136
			marked      = 0;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   137
		} else {
24
5254ab4a5f24 Do more checks when JID isn't explicitly specified
Mikael Berthe <mikael@lilotux.net>
parents: 23
diff changeset
   138
			marked_jids = g_slist_append (marked_jids, jid);
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   139
			marked      = 1;
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   140
			jfree       = FALSE;
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   141
		}
31
55395c6ef7ea Add some verbosity
Mikael Berthe <mikael@lilotux.net>
parents: 30
diff changeset
   142
	} else
55395c6ef7ea Add some verbosity
Mikael Berthe <mikael@lilotux.net>
parents: 30
diff changeset
   143
		scr_log_print (LPRINT_NORMAL, "Unknown subcommand.");
0
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) {
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   154
		scr_log_print (LPRINT_NORMAL, "<%s> is now %s (%u mark%s).", jid,
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   155
					   marked == 1 ? "marked" : "unmarked",
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   156
					   len, len > 1 ? "s" : "");
26
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;
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
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
			}
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   188
			// XXX Smartly set the status flag if we have more marks than the log
25
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
31
55395c6ef7ea Add some verbosity
Mikael Berthe <mikael@lilotux.net>
parents: 30
diff changeset
   207
		scr_log_print (LPRINT_NORMAL, "List cleared.  No marked JIDs.");
55395c6ef7ea Add some verbosity
Mikael Berthe <mikael@lilotux.net>
parents: 30
diff changeset
   208
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   209
	} else if (!strcmp (cmd, "do")) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   210
		char *format = args[1];
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   211
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   212
		if (!format)
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   213
			scr_log_print (LPRINT_NORMAL,
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   214
				       "You must specify action to do with marked JIDs");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   215
		else {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   216
			char     *pos   = format;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   217
			gboolean  found = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   218
			gboolean  error = FALSE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   219
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   220
			for (pos = strchr (pos, '%'); pos; pos = strchr (pos, '%')) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   221
				if (*(pos + 1) == 's')
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   222
					found = TRUE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   223
				else if (*(pos + 1) == '%')
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   224
					++pos;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   225
				else {
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   226
					scr_log_print (LPRINT_NORMAL,
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   227
						       "Action string must not contain any other %%-sequences!");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   228
					error = TRUE;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   229
					break;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   230
				}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   231
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   232
				++pos;
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
			if (!found)
27
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   236
				scr_log_print (LPRINT_NORMAL,
b51de2faa028 Cosmetic changes, copyright update
Mikael Berthe <mikael@lilotux.net>
parents: 26
diff changeset
   237
					       "Action string must contain one %%s!");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   238
			else if (!error) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   239
				GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   240
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   241
				for (mel = marked_jids; mel; mel = mel->next) {
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   242
					char *jid     = (char *) mel->data;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   243
					char *command = g_strdup_printf (format, jid);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   244
					process_command (command, TRUE);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   245
					g_free (command);
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
		}
31
55395c6ef7ea Add some verbosity
Mikael Berthe <mikael@lilotux.net>
parents: 30
diff changeset
   249
	} else
55395c6ef7ea Add some verbosity
Mikael Berthe <mikael@lilotux.net>
parents: 30
diff changeset
   250
		scr_log_print (LPRINT_NORMAL, "Unknown subcommand.");
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   251
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   252
	free_arg_lst (args);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   253
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   254
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   255
void marking_init (void)
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   256
{
34
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
   257
#ifndef HAVE_MCABBER_CMD_ID
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   258
	cmd_add ("mark",   "", 0, COMPL_JID, do_mark,   NULL);
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   259
	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
   260
#else
30
48213f7bb577 Minor style changes
Myhailo Danylenko <isbear@ukrpost.net>
parents: 29
diff changeset
   261
	mark_cmid   = cmd_add ("mark",   "", 0, COMPL_JID, do_mark,   NULL);
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   262
	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
   263
#endif
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   264
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   265
19
c7e7218be611 Update versions and add AVV description
Myhailo Danylenko <isbear@ukrpost.net>
parents: 16
diff changeset
   266
void marking_uninit (void)
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   267
{
34
1820e2dc90ef [avv] Update avv dependencies
Myhailo Danylenko <isbear@ukrpost.net>
parents: 31
diff changeset
   268
#ifndef HAVE_MCABBER_CMD_ID
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   269
	cmd_del ("mark");
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   270
	cmd_del ("marked");
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   271
#else
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   272
	if (mark_cmid)
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   273
		cmd_del (mark_cmid);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   274
	if (marked_cmid)
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   275
		cmd_del (marked_cmid);
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   276
#endif
0
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   277
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   278
	{
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   279
		GSList *mel;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   280
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   281
		for (mel = marked_jids; mel; mel = mel->next)
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   282
			g_free (mel->data);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   283
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   284
		g_slist_free (marked_jids);
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   285
		marked_jids = NULL;
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   286
	}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   287
}
aad5201e3413 Initial commit
Myhailo Danylenko <isbear@ukrpost.net>
parents:
diff changeset
   288
15
522a4193ef2f Use id to delete commands
Myhailo Danylenko <isbear@ukrpost.net>
parents: 14
diff changeset
   289
/* vim: se ts=4 sw=4: */