X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-text-utils.c;h=d1cc2f66905a68696325a971a43b0c578d394cf5;hb=d2766e0125d45ae66dbe70b51eb90e3b0e493982;hp=60ee401f971c181bb526b4047ff610c3fd21ed4b;hpb=84c2681caafc791433135f704227111272e45203;p=modest diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index 60ee401..d1cc2f6 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -105,6 +105,7 @@ static gchar* modest_text_utils_quote_plain_text (const gchar *text, static gchar* modest_text_utils_quote_html (const gchar *text, const gchar *cite, int limit); +static gchar* get_email_from_address (const gchar *address); /* ******************************************************************* */ @@ -206,7 +207,7 @@ modest_text_utils_inline (const gchar *text, if (!strcmp (content_type, "text/html")) { formatted_signature = g_strconcat (signature, "
", NULL); } else { - formatted_signature = g_strconcat (signature, "\n"); + formatted_signature = g_strconcat (signature, "\n", NULL); } } else { formatted_signature = ""; @@ -262,15 +263,20 @@ modest_text_utils_remove_address (const gchar *address_list, const gchar *addres { gchar *dup, *token, *ptr, *result; GString *filtered_emails; + gchar *email_address; g_return_val_if_fail (address_list, NULL); if (!address) return g_strdup (address_list); + + email_address = get_email_from_address (address); /* search for substring */ - if (!strstr ((const char *) address_list, (const char *) address)) + if (!strstr ((const char *) address_list, (const char *) email_address)) { + g_free (email_address); return g_strdup (address_list); + } dup = g_strdup (address_list); filtered_emails = g_string_new (NULL); @@ -279,7 +285,7 @@ modest_text_utils_remove_address (const gchar *address_list, const gchar *addres while (token != NULL) { /* Add to list if not found */ - if (!strstr ((const char *) token, (const char *) address)) { + if (!strstr ((const char *) token, (const char *) email_address)) { if (filtered_emails->len == 0) g_string_append_printf (filtered_emails, "%s", g_strstrip (token)); else @@ -290,6 +296,7 @@ modest_text_utils_remove_address (const gchar *address_list, const gchar *addres result = filtered_emails->str; /* Clean */ + g_free (email_address); g_free (dup); g_string_free (filtered_emails, FALSE); @@ -381,6 +388,63 @@ modest_text_utils_convert_to_html_body (const gchar *data) return g_string_free (html, FALSE); } +void +modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes) +{ + gchar *current, *start, *last_blank; + gint start_offset = 0, current_offset = 0; + + g_return_if_fail (start_indexes != NULL); + g_return_if_fail (end_indexes != NULL); + + start = (gchar *) addresses; + current = start; + last_blank = start; + + while (*current != '\0') { + if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) { + start = g_utf8_next_char (start); + start_offset++; + last_blank = current; + } else if ((*current == ',')||(*current == ';')) { + gint *start_index, *end_index; + start_index = g_new0(gint, 1); + end_index = g_new0(gint, 1); + *start_index = start_offset; + *end_index = current_offset; + *start_indexes = g_slist_prepend (*start_indexes, start_index); + *end_indexes = g_slist_prepend (*end_indexes, end_index); + start = g_utf8_next_char (current); + start_offset = current_offset + 1; + last_blank = start; + } else if (*current == '"') { + current = g_utf8_next_char (current); + current_offset ++; + while ((*current != '"')&&(*current != '\0')) { + current = g_utf8_next_char (current); + current_offset ++; + } + } + + current = g_utf8_next_char (current); + current_offset ++; + } + + if (start != current) { + gint *start_index, *end_index; + start_index = g_new0(gint, 1); + end_index = g_new0(gint, 1); + *start_index = start_offset; + *end_index = current_offset; + *start_indexes = g_slist_prepend (*start_indexes, start_index); + *end_indexes = g_slist_prepend (*end_indexes, end_index); + } + + *start_indexes = g_slist_reverse (*start_indexes); + *end_indexes = g_slist_reverse (*end_indexes); + + return; +} GSList * modest_text_utils_split_addresses_list (const gchar *addresses) @@ -393,25 +457,25 @@ modest_text_utils_split_addresses_list (const gchar *addresses) last_blank = start; while (*current != '\0') { - if ((start == current)&&((*current == ' ')||(*current == ','))) { - start++; + if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) { + start = g_utf8_next_char (start); last_blank = current; - } else if (*current == ',') { + } else if ((*current == ',')||(*current == ';')) { gchar *new_address = NULL; new_address = g_strndup (start, current - last_blank); result = g_slist_prepend (result, new_address); - start = current + 1; + start = g_utf8_next_char (current); last_blank = start; } else if (*current == '\"') { if (current == start) { - current++; - start++; + current = g_utf8_next_char (current); + start = g_utf8_next_char (start); } while ((*current != '\"')&&(*current != '\0')) - current++; + current = g_utf8_next_char (current); } - current++; + current = g_utf8_next_char (current); } if (start != current) { @@ -819,9 +883,9 @@ modest_text_utils_get_display_address (gchar *address) if (!address) return NULL; - + g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL); - + g_strchug (address); /* remove leading whitespace */ /* from display name */ @@ -976,25 +1040,113 @@ modest_text_utils_validate_email_address (const gchar *email_address) return (count >= 1) ? TRUE : FALSE; } +gboolean +modest_text_utils_validate_recipient (const gchar *recipient) +{ + gchar *stripped, *current; + gchar *right_part; + gboolean has_error = FALSE; + + if (modest_text_utils_validate_email_address (recipient)) + return TRUE; + stripped = g_strdup (recipient); + stripped = g_strstrip (stripped); + current = stripped; + + if (*current == '\0') { + g_free (stripped); + return FALSE; + } + + /* quoted string */ + if (*current == '\"') { + current = g_utf8_next_char (current); + has_error = TRUE; + for (; *current != '\0'; current = g_utf8_next_char (current)) { + if (*current == '\\') { + /* TODO: This causes a warning, which breaks the build, + * because a gchar cannot be < 0. + * murrayc. + if (current[1] <0) { + has_error = TRUE; + break; + } + */ + } else if (*current == '\"') { + has_error = FALSE; + current = g_utf8_next_char (current); + break; + } + } + } else { + has_error = TRUE; + for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) { + if (*current == '<') { + has_error = FALSE; + break; + } + } + } + + if (has_error) { + g_free (stripped); + return FALSE; + } + right_part = g_strdup (current); + g_free (stripped); + right_part = g_strstrip (right_part); + + if (g_str_has_prefix (right_part, "<") && + g_str_has_suffix (right_part, ">")) { + gchar *address; + gboolean valid; + + address = g_strndup (right_part+1, strlen (right_part) - 2); + g_free (right_part); + valid = modest_text_utils_validate_email_address (address); + g_free (address); + return valid; + } else { + g_free (right_part); + return FALSE; + } +} gchar * -modest_text_utils_get_display_size (guint size) +modest_text_utils_get_display_size (guint64 size) { const guint KB=1024; const guint MB=1024 * KB; const guint GB=1024 * MB; - const guint TB=1024 * GB; - - if (size < KB) - return g_strdup_printf (_("%0.1f Kb"), (double)size / KB); - else if (size < MB) - return g_strdup_printf (_("%d Kb"), size / KB); - else if (size < GB) - return g_strdup_printf (_("%d Mb"), size / MB); - else if (size < TB) - return g_strdup_printf (_("%d Gb"), size/ GB); + + if (size == 0) + return g_strdup_printf(_FM("sfil_li_size_kb"), 0); + if (0 < size && size < KB) + return g_strdup_printf (_FM("sfil_li_size_kb"), 1); + else if (KB <= size && size < 100 * KB) + return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB); + else if (100*KB <= size && size < MB) + return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (float) size / MB); + else if (MB <= size && size < 10*MB) + return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB); + else if (10*MB <= size && size < GB) + return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB); + else + return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB); +} + +static gchar * +get_email_from_address (const gchar * address) +{ + gchar *left_limit, *right_limit; + + left_limit = strstr (address, "<"); + right_limit = g_strrstr (address, ">"); + + if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit)) + return g_strdup (address); else - return g_strdup_printf (_("Very big")); + return g_strndup (left_limit + 1, (right_limit - left_limit) - 1); }