forked from neomutt/neomutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addrbook.c
308 lines (276 loc) · 7.84 KB
/
addrbook.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
/**
* @file
* Address book handling aliases
*
* @authors
* Copyright (C) 1996-2000,2007 Michael R. Elkins <[email protected]>
*
* @copyright
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 2 of the License, or (at your option) any later
* version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @page addrbook Address book handling aliases
*
* Address book handling aliases
*/
#include "config.h"
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include "mutt/mutt.h"
#include "config/lib.h"
#include "email/lib.h"
#include "mutt.h"
#include "alias.h"
#include "curs_lib.h"
#include "format_flags.h"
#include "globals.h"
#include "keymap.h"
#include "mutt_menu.h"
#include "mutt_window.h"
#include "muttlib.h"
#include "opcodes.h"
#include "sort.h"
/* These Config Variables are only used in addrbook.c */
char *C_AliasFormat; ///< Config: printf-like format string for the alias menu
short C_SortAlias; ///< Config: Sort method for the alias menu
#define RSORT(num) ((C_SortAlias & SORT_REVERSE) ? -num : num)
static const struct Mapping AliasHelp[] = {
{ N_("Exit"), OP_EXIT }, { N_("Del"), OP_DELETE },
{ N_("Undel"), OP_UNDELETE }, { N_("Select"), OP_GENERIC_SELECT_ENTRY },
{ N_("Help"), OP_HELP }, { NULL, 0 },
};
/**
* alias_format_str - Format a string for the alias list - Implements ::format_t
*
* | Expando | Description
* |:--------|:--------------------------------------------------------
* | \%a | Alias name
* | \%f | Flags - currently, a 'd' for an alias marked for deletion
* | \%n | Index number
* | \%r | Address which alias expands to
* | \%t | Character which indicates if the alias is tagged for inclusion
*/
static const char *alias_format_str(char *buf, size_t buflen, size_t col, int cols,
char op, const char *src, const char *prec,
const char *if_str, const char *else_str,
unsigned long data, MuttFormatFlags flags)
{
char fmt[128], addr[128];
struct Alias *alias = (struct Alias *) data;
switch (op)
{
case 'a':
mutt_format_s(buf, buflen, prec, alias->name);
break;
case 'f':
snprintf(fmt, sizeof(fmt), "%%%ss", prec);
snprintf(buf, buflen, fmt, alias->del ? "D" : " ");
break;
case 'n':
snprintf(fmt, sizeof(fmt), "%%%sd", prec);
snprintf(buf, buflen, fmt, alias->num + 1);
break;
case 'r':
addr[0] = '\0';
mutt_addr_write(addr, sizeof(addr), alias->addr, true);
snprintf(fmt, sizeof(fmt), "%%%ss", prec);
snprintf(buf, buflen, fmt, addr);
break;
case 't':
buf[0] = alias->tagged ? '*' : ' ';
buf[1] = '\0';
break;
}
return src;
}
/**
* alias_make_entry - Format a menu item for the alias list - Implements Menu::menu_make_entry()
*/
static void alias_make_entry(char *buf, size_t buflen, struct Menu *menu, int line)
{
mutt_expando_format(buf, buflen, 0, MuttIndexWindow->cols,
NONULL(C_AliasFormat), alias_format_str,
(unsigned long) ((struct Alias **) menu->data)[line],
MUTT_FORMAT_ARROWCURSOR);
}
/**
* alias_tag - Tag some aliases - Implements Menu::menu_tag()
*/
static int alias_tag(struct Menu *menu, int sel, int act)
{
struct Alias *cur = ((struct Alias **) menu->data)[sel];
bool ot = cur->tagged;
cur->tagged = ((act >= 0) ? act : !cur->tagged);
return cur->tagged - ot;
}
/**
* alias_sort_alias - Compare two Aliases
* @param a First Alias to compare
* @param b Second Alias to compare
* @retval -1 a precedes b
* @retval 0 a and b are identical
* @retval 1 b precedes a
*/
static int alias_sort_alias(const void *a, const void *b)
{
struct Alias *pa = *(struct Alias **) a;
struct Alias *pb = *(struct Alias **) b;
int r = mutt_str_strcasecmp(pa->name, pb->name);
return RSORT(r);
}
/**
* alias_sort_address - Compare two Addresses
* @param a First Address to compare
* @param b Second Address to compare
* @retval -1 a precedes b
* @retval 0 a and b are identical
* @retval 1 b precedes a
*/
static int alias_sort_address(const void *a, const void *b)
{
struct Address *pa = (*(struct Alias **) a)->addr;
struct Address *pb = (*(struct Alias **) b)->addr;
int r;
if (pa == pb)
r = 0;
else if (!pa)
r = -1;
else if (!pb)
r = 1;
else if (pa->personal)
{
if (pb->personal)
r = mutt_str_strcasecmp(pa->personal, pb->personal);
else
r = 1;
}
else if (pb->personal)
r = -1;
else
r = mutt_str_strcasecmp(pa->mailbox, pb->mailbox);
return RSORT(r);
}
/**
* mutt_alias_menu - Display a menu of Aliases
* @param buf Buffer for expanded aliases
* @param buflen Length of buffer
* @param aliases Alias List
*/
void mutt_alias_menu(char *buf, size_t buflen, struct AliasList *aliases)
{
struct Alias *a = NULL, *last = NULL;
struct Menu *menu = NULL;
struct Alias **alias_table = NULL;
int t = -1;
int i;
bool done = false;
char helpstr[1024];
int omax;
if (TAILQ_EMPTY(aliases))
{
mutt_error(_("You have no aliases"));
return;
}
menu = mutt_menu_new(MENU_ALIAS);
menu->menu_make_entry = alias_make_entry;
menu->menu_tag = alias_tag;
menu->title = _("Aliases");
menu->help = mutt_compile_help(helpstr, sizeof(helpstr), MENU_ALIAS, AliasHelp);
mutt_menu_push_current(menu);
new_aliases:
omax = menu->max;
/* count the number of aliases */
TAILQ_FOREACH_FROM(a, aliases, entries)
{
a->del = false;
a->tagged = false;
menu->max++;
}
mutt_mem_realloc(&alias_table, menu->max * sizeof(struct Alias *));
menu->data = alias_table;
if (!alias_table)
return;
if (last)
a = TAILQ_NEXT(last, entries);
i = omax;
TAILQ_FOREACH_FROM(a, aliases, entries)
{
alias_table[i] = a;
i++;
}
if ((C_SortAlias & SORT_MASK) != SORT_ORDER)
{
qsort(alias_table, menu->max, sizeof(struct Alias *),
((C_SortAlias & SORT_MASK) == SORT_ADDRESS) ? alias_sort_address : alias_sort_alias);
}
for (i = 0; i < menu->max; i++)
alias_table[i]->num = i;
last = TAILQ_LAST(aliases, AliasList);
while (!done)
{
int op;
if (TAILQ_NEXT(last, entries))
{
menu->redraw |= REDRAW_FULL;
a = TAILQ_NEXT(last, entries);
goto new_aliases;
}
switch ((op = mutt_menu_loop(menu)))
{
case OP_DELETE:
case OP_UNDELETE:
if (menu->tagprefix)
{
for (i = 0; i < menu->max; i++)
if (alias_table[i]->tagged)
alias_table[i]->del = (op == OP_DELETE);
menu->redraw |= REDRAW_INDEX;
}
else
{
alias_table[menu->current]->del = (op == OP_DELETE);
menu->redraw |= REDRAW_CURRENT;
if (C_Resolve && (menu->current < menu->max - 1))
{
menu->current++;
menu->redraw |= REDRAW_INDEX;
}
}
break;
case OP_GENERIC_SELECT_ENTRY:
t = menu->current;
done = true;
break;
case OP_EXIT:
done = true;
break;
}
}
for (i = 0; i < menu->max; i++)
{
if (alias_table[i]->tagged)
{
mutt_addr_write(buf, buflen, alias_table[i]->addr, true);
t = -1;
}
}
if (t != -1)
{
mutt_addr_write(buf, buflen, alias_table[t]->addr, true);
}
mutt_menu_pop_current(menu);
mutt_menu_destroy(&menu);
FREE(&alias_table);
}