mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
cli: add user address matching helpers for notmuch reply
Add a multi-purpose address_match() function for matching strings against user's configured primary and other email addresses. Add thin wrappers user_address_in_string() and string_in_user_address() for ease of use, and also convert existing address_is_users() to wrapper for the same. No functional changes. Signed-off-by: Jani Nikula <jani@nikula.org>
This commit is contained in:
parent
8c123d0da6
commit
e03ed64c8f
1 changed files with 62 additions and 10 deletions
|
@ -98,25 +98,77 @@ format_part_reply (mime_node_t *node)
|
||||||
format_part_reply (mime_node_child (node, i));
|
format_part_reply (mime_node_child (node, i));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Is the given address configured as one of the user's "personal" or
|
typedef enum {
|
||||||
* "other" addresses. */
|
USER_ADDRESS_IN_STRING,
|
||||||
static int
|
STRING_IN_USER_ADDRESS,
|
||||||
address_is_users (const char *address, notmuch_config_t *config)
|
STRING_IS_USER_ADDRESS,
|
||||||
|
} address_match_t;
|
||||||
|
|
||||||
|
/* Match given string against given address according to mode. */
|
||||||
|
static notmuch_bool_t
|
||||||
|
match_address (const char *str, const char *address, address_match_t mode)
|
||||||
|
{
|
||||||
|
switch (mode) {
|
||||||
|
case USER_ADDRESS_IN_STRING:
|
||||||
|
return strcasestr (str, address) != NULL;
|
||||||
|
case STRING_IN_USER_ADDRESS:
|
||||||
|
return strcasestr (address, str) != NULL;
|
||||||
|
case STRING_IS_USER_ADDRESS:
|
||||||
|
return strcasecmp (address, str) == 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Match given string against user's configured "primary" and "other"
|
||||||
|
* addresses according to mode. */
|
||||||
|
static const char *
|
||||||
|
address_match (const char *str, notmuch_config_t *config, address_match_t mode)
|
||||||
{
|
{
|
||||||
const char *primary;
|
const char *primary;
|
||||||
const char **other;
|
const char **other;
|
||||||
size_t i, other_len;
|
size_t i, other_len;
|
||||||
|
|
||||||
|
if (!str || *str == '\0')
|
||||||
|
return NULL;
|
||||||
|
|
||||||
primary = notmuch_config_get_user_primary_email (config);
|
primary = notmuch_config_get_user_primary_email (config);
|
||||||
if (strcasecmp (primary, address) == 0)
|
if (match_address (str, primary, mode))
|
||||||
return 1;
|
return primary;
|
||||||
|
|
||||||
other = notmuch_config_get_user_other_email (config, &other_len);
|
other = notmuch_config_get_user_other_email (config, &other_len);
|
||||||
for (i = 0; i < other_len; i++)
|
for (i = 0; i < other_len; i++) {
|
||||||
if (strcasecmp (other[i], address) == 0)
|
if (match_address (str, other[i], mode))
|
||||||
return 1;
|
return other[i];
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Does the given string contain an address configured as one of the
|
||||||
|
* user's "primary" or "other" addresses. If so, return the matching
|
||||||
|
* address, NULL otherwise. */
|
||||||
|
static const char *
|
||||||
|
user_address_in_string (const char *str, notmuch_config_t *config)
|
||||||
|
{
|
||||||
|
return address_match (str, config, USER_ADDRESS_IN_STRING);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Do any of the addresses configured as one of the user's "primary"
|
||||||
|
* or "other" addresses contain the given string. If so, return the
|
||||||
|
* matching address, NULL otherwise. */
|
||||||
|
static const char *
|
||||||
|
string_in_user_address (const char *str, notmuch_config_t *config)
|
||||||
|
{
|
||||||
|
return address_match (str, config, STRING_IN_USER_ADDRESS);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Is the given address configured as one of the user's "primary" or
|
||||||
|
* "other" addresses. */
|
||||||
|
static notmuch_bool_t
|
||||||
|
address_is_users (const char *address, notmuch_config_t *config)
|
||||||
|
{
|
||||||
|
return address_match (address, config, STRING_IS_USER_ADDRESS) != NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Scan addresses in 'list'.
|
/* Scan addresses in 'list'.
|
||||||
|
|
Loading…
Reference in a new issue