* src/modest-tny-msg.c:
[modest] / src / modest-text-utils.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30
31
32 #ifndef _GNU_SOURCE
33 #define _GNU_SOURCE
34 #endif /*_GNU_SOURCE*/
35 #include <string.h> /* for strcasestr */
36
37
38 #include <glib.h>
39 #include <stdlib.h>
40 #include <glib/gi18n.h>
41 #include <regex.h>
42 #include <modest-tny-platform-factory.h>
43 #include <modest-text-utils.h>
44 #include <modest-runtime.h>
45 #include <ctype.h>
46
47 #ifdef HAVE_CONFIG_H
48 #include <config.h>
49 #endif /*HAVE_CONFIG_H */
50
51 /* defines */
52 #define FORWARD_STRING _("mcen_ia_editor_original_message")
53 #define FROM_STRING _("mail_va_from")
54 #define SENT_STRING _("mcen_fi_message_properties_sent")
55 #define TO_STRING _("mail_va_to")
56 #define SUBJECT_STRING _("mail_va_subject")
57 #define EMPTY_STRING ""
58
59 /*
60  * do the hyperlinkification only for texts < 50 Kb,
61  * as it's quite slow. Without this, e.g. mail with
62  * an uuencoded part (which is not recognized as attachment,
63  * will hang modest
64  */
65 #define HYPERLINKIFY_MAX_LENGTH (1024*50)
66
67
68
69 /*
70  * we need these regexps to find URLs in plain text e-mails
71  */
72 typedef struct _url_match_pattern_t url_match_pattern_t;
73 struct _url_match_pattern_t {
74         gchar   *regex;
75         regex_t *preg;
76         gchar   *prefix;
77 };
78
79 typedef struct _url_match_t url_match_t;
80 struct _url_match_t {
81         guint offset;
82         guint len;
83         const gchar* prefix;
84 };
85
86
87 /*
88  * we mark the ampersand with \007 when converting text->html
89  * because after text->html we do hyperlink detecting, which
90  * could be screwed up by the ampersand.
91  * ie. 1<3 ==> 1\007lt;3
92  */
93 #define MARK_AMP '\007'
94 #define MARK_AMP_STR "\007"
95
96 /* mark &amp; separately, because they are parts of urls.
97  * ie. a&b => a\006amp;b, but a>b => a\007gt;b
98  *
99  * we need to handle '&' separately, because it can be part of URIs
100  * (as in href="http://foo.bar?a=1&b=1"), so inside those URIs
101  * we need to re-replace \006amp; with '&' again, while outside uri's
102  * it will be '&amp;'
103  * 
104  * yes, it's messy, but a consequence of doing text->html first, then hyperlinkify
105  */
106 #define MARK_AMP_URI '\006'
107 #define MARK_AMP_URI_STR "\006"
108
109
110 /* note: match MARK_AMP_URI_STR as well, because after txt->html, a '&' will look like $(MARK_AMP_URI_STR)"amp;" */
111 #define MAIL_VIEWER_URL_MATCH_PATTERNS  {                               \
112         { "(file|rtsp|http|ftp|https|mms|mmsh|rtsp|rdp|lastfm)://[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR \
113                         "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]",      \
114           NULL, NULL },\
115         { "www\\.[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]",\
116                         NULL, "http://" },                              \
117         { "ftp\\.[-a-z0-9_$.+!*(),;:@%=?/~#" MARK_AMP_URI_STR "]+[-a-z0-9_$%" MARK_AMP_URI_STR "=?/~#]",\
118           NULL, "ftp://" },\
119         { "(jabberto|voipto|sipto|sip|chatto|xmpp):[-_a-z@0-9.+]+", \
120            NULL, NULL},                                             \
121         { "mailto:[-_a-z0-9.\\+]+@[-_a-z0-9.]+",                    \
122           NULL, NULL},\
123         { "[-_a-z0-9.\\+]+@[-_a-z0-9.]+",\
124           NULL, "mailto:"}\
125         }
126
127 const gchar account_title_forbidden_chars[] = {
128         '\\', '/', ':', '*', '?', '\'', '<', '>', '|', '^'
129 };
130 const gchar folder_name_forbidden_chars[] = {
131         '<', '>', ':', '\'', '/', '\\', '|', '?', '*', '^', '%', '$', '#', '&'
132 };
133 const gchar user_name_forbidden_chars[] = {
134         '<', '>'
135 };
136 const guint ACCOUNT_TITLE_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (account_title_forbidden_chars);
137 const guint FOLDER_NAME_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (folder_name_forbidden_chars);
138 const guint USER_NAME_FORBIDDEN_CHARS_LENGTH = G_N_ELEMENTS (user_name_forbidden_chars);
139
140 /* private */
141 static gchar*   cite                    (const time_t sent_date, const gchar *from);
142 static void     hyperlinkify_plain_text (GString *txt);
143 static gint     cmp_offsets_reverse     (const url_match_t *match1, const url_match_t *match2);
144 static GSList*  get_url_matches         (GString *txt);
145
146 static GString* get_next_line           (const char *b, const gsize blen, const gchar * iter);
147 static int      get_indent_level        (const char *l);
148 static void     unquote_line            (GString * l);
149 static void     append_quoted           (GString * buf, const int indent, const GString * str, 
150                                          const int cutpoint);
151 static int      get_breakpoint_utf8     (const gchar * s, const gint indent, const gint limit);
152 static int      get_breakpoint_ascii    (const gchar * s, const gint indent, const gint limit);
153 static int      get_breakpoint          (const gchar * s, const gint indent, const gint limit);
154
155 static gchar*   modest_text_utils_quote_plain_text (const gchar *text, 
156                                                     const gchar *cite, 
157                                                     const gchar *signature,
158                                                     GList *attachments, 
159                                                     int limit);
160
161 static gchar*   modest_text_utils_quote_html       (const gchar *text, 
162                                                     const gchar *cite,
163                                                     const gchar *signature,
164                                                     GList *attachments,
165                                                     int limit);
166 static gchar*   get_email_from_address (const gchar *address);
167
168
169 /* ******************************************************************* */
170 /* ************************* PUBLIC FUNCTIONS ************************ */
171 /* ******************************************************************* */
172
173 gchar *
174 modest_text_utils_quote (const gchar *text, 
175                          const gchar *content_type,
176                          const gchar *signature,
177                          const gchar *from,
178                          const time_t sent_date, 
179                          GList *attachments,
180                          int limit)
181 {
182         gchar *retval, *cited;
183
184         g_return_val_if_fail (text, NULL);
185         g_return_val_if_fail (content_type, NULL);
186
187         cited = cite (sent_date, from);
188         
189         if (content_type && strcmp (content_type, "text/html") == 0)
190                 /* TODO: extract the <body> of the HTML and pass it to
191                    the function */
192                 retval = modest_text_utils_quote_html (text, cited, signature, attachments, limit);
193         else
194                 retval = modest_text_utils_quote_plain_text (text, cited, signature, attachments, limit);
195         
196         g_free (cited);
197         
198         return retval;
199 }
200
201
202 gchar *
203 modest_text_utils_cite (const gchar *text,
204                         const gchar *content_type,
205                         const gchar *signature,
206                         const gchar *from,
207                         time_t sent_date)
208 {
209         gchar *retval;
210         gchar *tmp_sig;
211         
212         g_return_val_if_fail (text, NULL);
213         g_return_val_if_fail (content_type, NULL);
214         
215         if (!signature)
216                 retval = g_strdup ("");
217         else if (strcmp(content_type, "text/html") == 0) {
218                 tmp_sig = g_strconcat ("\n", signature, NULL);
219                 retval = modest_text_utils_convert_to_html_body(tmp_sig, -1, TRUE);
220                 g_free (tmp_sig);
221         } else {
222                 retval = g_strconcat (text, "\n", signature, NULL);
223         }
224
225         return retval;
226 }
227
228 static gchar *
229 forward_cite (const gchar *from,
230               const gchar *sent,
231               const gchar *to,
232               const gchar *subject)
233 {
234         g_return_val_if_fail (sent, NULL);
235         
236         return g_strdup_printf ("%s\n%s %s\n%s %s\n%s %s\n%s %s\n", 
237                                 FORWARD_STRING, 
238                                 FROM_STRING, (from)?from:"",
239                                 SENT_STRING, sent,
240                                 TO_STRING, (to)?to:"",
241                                 SUBJECT_STRING, (subject)?subject:"");
242 }
243
244 gchar * 
245 modest_text_utils_inline (const gchar *text,
246                           const gchar *content_type,
247                           const gchar *signature,
248                           const gchar *from,
249                           time_t sent_date,
250                           const gchar *to,
251                           const gchar *subject)
252 {
253         gchar sent_str[101];
254         gchar *cited;
255         gchar *retval;
256         
257         g_return_val_if_fail (text, NULL);
258         g_return_val_if_fail (content_type, NULL);
259         
260         modest_text_utils_strftime (sent_str, 100, "%c", sent_date);
261
262         cited = forward_cite (from, sent_str, to, subject);
263         
264         if (content_type && strcmp (content_type, "text/html") == 0)
265                 retval = modest_text_utils_quote_html (text, cited, signature, NULL, 80);
266         else
267                 retval = modest_text_utils_quote_plain_text (text, cited, signature, NULL, 80);
268         
269         g_free (cited);
270         return retval;
271 }
272
273 /* just to prevent warnings:
274  * warning: `%x' yields only last 2 digits of year in some locales
275  */
276 gsize
277 modest_text_utils_strftime(char *s, gsize max, const char *fmt, time_t timet)
278 {
279         struct tm tm;
280
281         /* does not work on old maemo glib: 
282          *   g_date_set_time_t (&date, timet);
283          */
284         localtime_r (&timet, &tm);
285         return strftime(s, max, fmt, &tm);
286 }
287
288 gchar *
289 modest_text_utils_derived_subject (const gchar *subject, const gchar *prefix)
290 {
291         gchar *tmp;
292
293         g_return_val_if_fail (prefix, NULL);
294
295         if (!subject || subject[0] == '\0')
296                 subject = _("mail_va_no_subject");
297
298         tmp = g_strchug (g_strdup (subject));
299
300         if (!strncmp (tmp, prefix, strlen (prefix))) {
301                 return tmp;
302         } else {
303                 g_free (tmp);
304                 return g_strdup_printf ("%s %s", prefix, subject);
305         }
306 }
307
308 gchar*
309 modest_text_utils_remove_address (const gchar *address_list, const gchar *address)
310 {
311         gchar *dup, *token, *ptr = NULL, *result;
312         GString *filtered_emails;
313         gchar *email_address;
314
315         g_return_val_if_fail (address_list, NULL);
316         
317         if (!address)
318                 return g_strdup (address_list);
319
320         email_address = get_email_from_address (address);
321         
322         /* search for substring */
323         if (!strstr ((const char *) address_list, (const char *) email_address)) {
324                 g_free (email_address);
325                 return g_strdup (address_list);
326         }
327
328         dup = g_strdup (address_list);
329         filtered_emails = g_string_new (NULL);
330         
331         token = strtok_r (dup, ",", &ptr);
332
333         while (token != NULL) {
334                 /* Add to list if not found */
335                 if (!strstr ((const char *) token, (const char *) email_address)) {
336                         if (filtered_emails->len == 0)
337                                 g_string_append_printf (filtered_emails, "%s", g_strstrip (token));
338                         else
339                                 g_string_append_printf (filtered_emails, ",%s", g_strstrip (token));
340                 }
341                 token = strtok_r (NULL, ",", &ptr);
342         }
343         result = filtered_emails->str;
344
345         /* Clean */
346         g_free (email_address);
347         g_free (dup);
348         g_string_free (filtered_emails, FALSE);
349
350         return result;
351 }
352
353
354 gchar*
355 modest_text_utils_remove_duplicate_addresses (const gchar *address_list)
356 {
357         GSList *addresses, *cursor;
358         GHashTable *table;
359         gchar *new_list;
360         
361         g_return_val_if_fail (address_list, NULL);
362
363         table = g_hash_table_new (g_str_hash, g_str_equal);
364         addresses = modest_text_utils_split_addresses_list (address_list);
365
366         new_list = g_strdup("");
367         cursor = addresses;
368         while (cursor) {
369                 const gchar* address = (const gchar*)cursor->data;
370
371                 /* ignore the address if already seen */
372                 if (g_hash_table_lookup (table, address) == 0) {
373                 
374                         gchar *tmp = g_strjoin (",", new_list, address, NULL);
375                         g_free (new_list);
376                         new_list = tmp;
377                         
378                         g_hash_table_insert (table, (gchar*)address, GINT_TO_POINTER(1));
379                 }
380                 cursor = g_slist_next (cursor);
381         }
382
383         g_hash_table_destroy (table);
384         g_slist_foreach (addresses, (GFunc)g_free, NULL);
385         g_slist_free (addresses);
386
387         return new_list;
388 }
389
390
391 static void
392 modest_text_utils_convert_buffer_to_html_start (GString *html, const gchar *data, gssize n)
393 {
394         guint           i;
395         gboolean        space_seen = FALSE;
396         guint           break_dist = 0; /* distance since last break point */
397
398         if (n == -1)
399                 n = strlen (data);
400
401         /* replace with special html chars where needed*/
402         for (i = 0; i != n; ++i)  {
403                 guchar kar = data[i];
404                 
405                 if (space_seen && kar != ' ') {
406                         g_string_append_c (html, ' ');
407                         space_seen = FALSE;
408                 }
409                 
410                 /* we artificially insert a breakpoint (newline)
411                  * after 256, to make sure our lines are not so long
412                  * they will DOS the regexping later
413                  * Also, check that kar is ASCII to make sure that we
414                  * don't break a UTF8 char in two
415                  */
416                 if (++break_dist >= 256 && kar < 127) {
417                         g_string_append_c (html, '\n');
418                         break_dist = 0;
419                 }
420                 
421                 switch (kar) {
422                 case 0:
423                 case MARK_AMP:
424                 case MARK_AMP_URI:      
425                         /* this is a temp place holder for '&'; we can only
426                                 * set the real '&' after hyperlink translation, otherwise
427                                 * we might screw that up */
428                         break; /* ignore embedded \0s and MARK_AMP */   
429                 case '<'  : g_string_append (html, MARK_AMP_STR "lt;");   break;
430                 case '>'  : g_string_append (html, MARK_AMP_STR "gt;");   break;
431                 case '&'  : g_string_append (html, MARK_AMP_URI_STR "amp;");  break; /* special case */
432                 case '"'  : g_string_append (html, MARK_AMP_STR "quot;");  break;
433
434                 /* don't convert &apos; --> wpeditor will try to re-convert it... */    
435                 //case '\'' : g_string_append (html, "&apos;"); break;
436                 case '\n' : g_string_append (html, "<br>\n");break_dist= 0; break;
437                 case '\t' : g_string_append (html, MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp; ");
438                         break_dist=0; break; /* note the space at the end*/
439                 case ' ':
440                         break_dist = 0;
441                         if (space_seen) { /* second space in a row */
442                                 g_string_append (html, "&nbsp; ");
443                                 space_seen = FALSE;
444                         } else
445                                 space_seen = TRUE;
446                         break;
447                 default:
448                         g_string_append_c (html, kar);
449                 }
450         }
451 }
452
453
454 static void
455 modest_text_utils_convert_buffer_to_html_finish (GString *html)
456 {
457         int i;
458         /* replace all our MARK_AMPs with real ones */
459         for (i = 0; i != html->len; ++i)
460                 if ((html->str)[i] == MARK_AMP || (html->str)[i] == MARK_AMP_URI)
461                         (html->str)[i] = '&';
462 }
463
464
465 gchar*
466 modest_text_utils_convert_to_html (const gchar *data)
467 {
468         GString         *html;      
469         gsize           len;
470
471         g_return_val_if_fail (data, NULL);
472         
473         if (!data)
474                 return NULL;
475
476         len = strlen (data);
477         html = g_string_sized_new (1.5 * len);  /* just a  guess... */
478
479         g_string_append_printf (html,
480                                 "<html><head>"
481                                 "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf8\">"
482                                 "</head>"
483                                 "<body>");
484
485         modest_text_utils_convert_buffer_to_html_start (html, data, -1);
486         
487         g_string_append (html, "</body></html>");
488
489         if (len <= HYPERLINKIFY_MAX_LENGTH)
490                 hyperlinkify_plain_text (html);
491
492         modest_text_utils_convert_buffer_to_html_finish (html);
493         
494         return g_string_free (html, FALSE);
495 }
496
497 gchar *
498 modest_text_utils_convert_to_html_body (const gchar *data, gssize n, gboolean hyperlinkify)
499 {
500         GString         *html;      
501
502         g_return_val_if_fail (data, NULL);
503
504         if (!data)
505                 return NULL;
506
507         if (n == -1) 
508                 n = strlen (data);
509         html = g_string_sized_new (1.5 * n);    /* just a  guess... */
510
511         modest_text_utils_convert_buffer_to_html_start (html, data, n);
512
513         if (hyperlinkify && (n < HYPERLINKIFY_MAX_LENGTH))
514                 hyperlinkify_plain_text (html);
515
516         modest_text_utils_convert_buffer_to_html_finish (html);
517         
518         return g_string_free (html, FALSE);
519 }
520
521 void
522 modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes)
523 {
524         gchar *current, *start, *last_blank;
525         gint start_offset = 0, current_offset = 0;
526
527         g_return_if_fail (start_indexes != NULL);
528         g_return_if_fail (end_indexes != NULL);
529
530         start = (gchar *) addresses;
531         current = start;
532         last_blank = start;
533
534         while (*current != '\0') {
535                 if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) {
536                         start = g_utf8_next_char (start);
537                         start_offset++;
538                         last_blank = current;
539                 } else if ((*current == ',')||(*current == ';')) {
540                         gint *start_index, *end_index;
541                         start_index = g_new0(gint, 1);
542                         end_index = g_new0(gint, 1);
543                         *start_index = start_offset;
544                         *end_index = current_offset;
545                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
546                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
547                         start = g_utf8_next_char (current);
548                         start_offset = current_offset + 1;
549                         last_blank = start;
550                 } else if (*current == '"') {
551                         current = g_utf8_next_char (current);
552                         current_offset ++;
553                         while ((*current != '"')&&(*current != '\0')) {
554                                 current = g_utf8_next_char (current);
555                                 current_offset ++;
556                         }
557                 }
558                                 
559                 current = g_utf8_next_char (current);
560                 current_offset ++;
561         }
562
563         if (start != current) {
564                         gint *start_index, *end_index;
565                         start_index = g_new0(gint, 1);
566                         end_index = g_new0(gint, 1);
567                         *start_index = start_offset;
568                         *end_index = current_offset;
569                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
570                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
571         }
572         
573         *start_indexes = g_slist_reverse (*start_indexes);
574         *end_indexes = g_slist_reverse (*end_indexes);
575
576         return;
577 }
578
579
580 GSList *
581 modest_text_utils_split_addresses_list (const gchar *addresses)
582 {
583         GSList *head;
584         const gchar *my_addrs = addresses;
585         const gchar *end;
586         gchar *addr;
587
588         g_return_val_if_fail (addresses, NULL);
589         
590         /* skip any space, ',', ';' at the start */
591         while (my_addrs && (my_addrs[0] == ' ' || my_addrs[0] == ',' || my_addrs[0] == ';'))
592                ++my_addrs;
593
594         /* are we at the end of addresses list? */
595         if (!my_addrs[0])
596                 return NULL;
597         
598         /* nope, we are at the start of some address
599          * now, let's find the end of the address */
600         end = my_addrs + 1;
601         while (end[0] && end[0] != ',' && end[0] != ';')
602                 ++end;
603
604         /* we got the address; copy it and remove trailing whitespace */
605         addr = g_strndup (my_addrs, end - my_addrs);
606         g_strchomp (addr);
607
608         head = g_slist_append (NULL, addr);
609         head->next = modest_text_utils_split_addresses_list (end); /* recurse */
610
611         return head;
612 }
613
614
615 void
616 modest_text_utils_address_range_at_position (const gchar *recipients_list,
617                                              guint position,
618                                              guint *start,
619                                              guint *end)
620 {
621         gchar *current = NULL;
622         gint range_start = 0;
623         gint range_end = 0;
624         gint index;
625         gboolean is_quoted = FALSE;
626
627         g_return_if_fail (recipients_list);
628         g_return_if_fail (position < g_utf8_strlen(recipients_list, -1));
629                 
630         index = 0;
631         for (current = (gchar *) recipients_list; *current != '\0';
632              current = g_utf8_find_next_char (current, NULL)) {
633                 gunichar c = g_utf8_get_char (current);
634
635                 if ((c == ',') && (!is_quoted)) {
636                         if (index < position) {
637                                 range_start = index + 1;
638                         } else {
639                                 break;
640                         }
641                 } else if (c == '\"') {
642                         is_quoted = !is_quoted;
643                 } else if ((c == ' ') &&(range_start == index)) {
644                         range_start ++;
645                 }
646                 index ++;
647                 range_end = index;
648         }
649
650         if (start)
651                 *start = range_start;
652         if (end)
653                 *end = range_end;
654 }
655
656
657 /* ******************************************************************* */
658 /* ************************* UTILIY FUNCTIONS ************************ */
659 /* ******************************************************************* */
660
661 static GString *
662 get_next_line (const gchar * b, const gsize blen, const gchar * iter)
663 {
664         GString *gs;
665         const gchar *i0;
666         
667         if (iter > b + blen)
668                 return g_string_new("");
669         
670         i0 = iter;
671         while (iter[0]) {
672                 if (iter[0] == '\n')
673                         break;
674                 iter++;
675         }
676         gs = g_string_new_len (i0, iter - i0);
677         return gs;
678 }
679 static int
680 get_indent_level (const char *l)
681 {
682         int indent = 0;
683
684         while (l[0]) {
685                 if (l[0] == '>') {
686                         indent++;
687                         if (l[1] == ' ') {
688                                 l++;
689                         }
690                 } else {
691                         break;
692                 }
693                 l++;
694
695         }
696
697         /*      if we hit the signature marker "-- ", we return -(indent + 1). This
698          *      stops reformatting.
699          */
700         if (strcmp (l, "-- ") == 0) {
701                 return -1 - indent;
702         } else {
703                 return indent;
704         }
705 }
706
707 static void
708 unquote_line (GString * l)
709 {
710         gchar *p;
711
712         p = l->str;
713         while (p[0]) {
714                 if (p[0] == '>') {
715                         if (p[1] == ' ') {
716                                 p++;
717                         }
718                 } else {
719                         break;
720                 }
721                 p++;
722         }
723         g_string_erase (l, 0, p - l->str);
724 }
725
726 static void
727 append_quoted (GString * buf, int indent, const GString * str,
728                const int cutpoint)
729 {
730         int i;
731
732         indent = indent < 0 ? abs (indent) - 1 : indent;
733         for (i = 0; i <= indent; i++) {
734                 g_string_append (buf, "> ");
735         }
736         if (cutpoint > 0) {
737                 g_string_append_len (buf, str->str, cutpoint);
738         } else {
739                 g_string_append (buf, str->str);
740         }
741         g_string_append (buf, "\n");
742 }
743
744 static int
745 get_breakpoint_utf8 (const gchar * s, gint indent, const gint limit)
746 {
747         gint index = 0;
748         const gchar *pos, *last;
749         gunichar *uni;
750
751         indent = indent < 0 ? abs (indent) - 1 : indent;
752
753         last = NULL;
754         pos = s;
755         uni = g_utf8_to_ucs4_fast (s, -1, NULL);
756         while (pos[0]) {
757                 if ((index + 2 * indent > limit) && last) {
758                         g_free (uni);
759                         return last - s;
760                 }
761                 if (g_unichar_isspace (uni[index])) {
762                         last = pos;
763                 }
764                 pos = g_utf8_next_char (pos);
765                 index++;
766         }
767         g_free (uni);
768         return strlen (s);
769 }
770
771 static int
772 get_breakpoint_ascii (const gchar * s, const gint indent, const gint limit)
773 {
774         gint i, last;
775
776         last = strlen (s);
777         if (last + 2 * indent < limit)
778                 return last;
779
780         for (i = strlen (s); i > 0; i--) {
781                 if (s[i] == ' ') {
782                         if (i + 2 * indent <= limit) {
783                                 return i;
784                         } else {
785                                 last = i;
786                         }
787                 }
788         }
789         return last;
790 }
791
792 static int
793 get_breakpoint (const gchar * s, const gint indent, const gint limit)
794 {
795
796         if (g_utf8_validate (s, -1, NULL)) {
797                 return get_breakpoint_utf8 (s, indent, limit);
798         } else {                /* assume ASCII */
799                 //g_warning("invalid UTF-8 in msg");
800                 return get_breakpoint_ascii (s, indent, limit);
801         }
802 }
803
804 static gchar *
805 cite (const time_t sent_date, const gchar *from)
806 {
807         return g_strdup (_("mcen_ia_editor_original_message"));
808 }
809
810 static gchar *
811 quoted_attachments (GList *attachments)
812 {
813         GList *node = NULL;
814         GString *result = g_string_new ("");
815         for (node = attachments; node != NULL; node = g_list_next (node)) {
816                 gchar *filename = (gchar *) node->data;
817                 g_string_append_printf ( result, "%s %s\n", _("mcen_ia_editor_attach_filename"), filename);
818         }
819
820         return g_string_free (result, FALSE);
821
822 }
823
824 static gchar *
825 modest_text_utils_quote_plain_text (const gchar *text, 
826                                     const gchar *cite, 
827                                     const gchar *signature,
828                                     GList *attachments,
829                                     int limit)
830 {
831         const gchar *iter;
832         gint indent, breakpoint, rem_indent = 0;
833         GString *q, *l, *remaining;
834         gsize len;
835         gchar *attachments_string = NULL;
836
837         q = g_string_new ("\n");
838         if (signature != NULL) {
839                 q = g_string_append (q, signature);
840                 q = g_string_append_c (q, '\n');
841         }
842         q = g_string_append (q, cite);
843         q = g_string_append_c (q, '\n');
844
845         /* remaining will store the rest of the line if we have to break it */
846         remaining = g_string_new ("");
847
848         iter = text;
849         len = strlen(text);
850         do {
851                 l = get_next_line (text, len, iter);
852                 iter = iter + l->len + 1;
853                 indent = get_indent_level (l->str);
854                 unquote_line (l);
855
856                 if (remaining->len) {
857                         if (l->len && indent == rem_indent) {
858                                 g_string_prepend (l, " ");
859                                 g_string_prepend (l, remaining->str);
860                         } else {
861                                 do {
862                                         breakpoint =
863                                                 get_breakpoint (remaining->str,
864                                                                 rem_indent,
865                                                                 limit);
866                                         append_quoted (q, rem_indent,
867                                                        remaining, breakpoint);
868                                         g_string_erase (remaining, 0,
869                                                         breakpoint);
870                                         if (remaining->str[0] == ' ') {
871                                                 g_string_erase (remaining, 0,
872                                                                 1);
873                                         }
874                                 } while (remaining->len);
875                         }
876                 }
877                 g_string_free (remaining, TRUE);
878                 breakpoint = get_breakpoint (l->str, indent, limit);
879                 remaining = g_string_new (l->str + breakpoint);
880                 if (remaining->str[0] == ' ') {
881                         g_string_erase (remaining, 0, 1);
882                 }
883                 rem_indent = indent;
884                 append_quoted (q, indent, l, breakpoint);
885                 g_string_free (l, TRUE);
886         } while ((iter < text + len) || (remaining->str[0]));
887
888         attachments_string = quoted_attachments (attachments);
889         q = g_string_append (q, attachments_string);
890         g_free (attachments_string);
891
892         return g_string_free (q, FALSE);
893 }
894
895 static gchar*
896 modest_text_utils_quote_html (const gchar *text, 
897                               const gchar *cite, 
898                               const gchar *signature,
899                               GList *attachments,
900                               int limit)
901 {
902         gchar *result = NULL;
903         gchar *signature_result = NULL;
904         const gchar *format = \
905                 "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" \
906                 "<html>\n" \
907                 "<body>\n" \
908                 "<br/>%s<br/>" \
909                 "<pre>%s<br/>%s<br/>%s</pre>\n" \
910                 "</body>\n" \
911                 "</html>\n";
912         gchar *attachments_string = NULL;
913         gchar *q_attachments_string = NULL;
914         gchar *q_cite = NULL;
915         gchar *html_text = NULL;
916
917         if (signature == NULL)
918                 signature_result = g_strdup ("");
919         else
920                 signature_result = modest_text_utils_convert_to_html_body (signature, -1, TRUE);
921
922         attachments_string = quoted_attachments (attachments);
923         q_attachments_string = modest_text_utils_convert_to_html_body (attachments_string, -1, TRUE);
924         q_cite = modest_text_utils_convert_to_html_body (cite, -1, TRUE);
925         html_text = modest_text_utils_convert_to_html_body (text, -1, TRUE);
926         result = g_strdup_printf (format, signature_result, q_cite, html_text, q_attachments_string);
927         g_free (q_cite);
928         g_free (html_text);
929         g_free (attachments_string);
930         g_free (q_attachments_string);
931         g_free (signature_result);
932         
933         return result;
934 }
935
936 static gint 
937 cmp_offsets_reverse (const url_match_t *match1, const url_match_t *match2)
938 {
939         return match2->offset - match1->offset;
940 }
941
942 static gboolean url_matches_block = 0;
943 static url_match_pattern_t patterns[] = MAIL_VIEWER_URL_MATCH_PATTERNS;
944
945
946 static gboolean
947 compile_patterns ()
948 {
949         guint i;
950         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
951         for (i = 0; i != pattern_num; ++i) {
952                 patterns[i].preg = g_slice_new0 (regex_t);
953                 
954                 /* this should not happen */
955                 if (regcomp (patterns[i].preg, patterns[i].regex,
956                              REG_ICASE|REG_EXTENDED|REG_NEWLINE) != 0) {
957                         g_warning ("%s: error in regexp:\n%s\n", __FUNCTION__, patterns[i].regex);
958                         return FALSE;
959                 }
960         }
961         return TRUE;
962 }
963
964 static void 
965 free_patterns ()
966 {
967         guint i;
968         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
969         for (i = 0; i != pattern_num; ++i) {
970                 regfree (patterns[i].preg);
971                 g_slice_free  (regex_t, patterns[i].preg);
972         } /* don't free patterns itself -- it's static */
973 }
974
975 void
976 modest_text_utils_hyperlinkify_begin (void)
977 {
978         if (url_matches_block == 0)
979                 compile_patterns ();
980         url_matches_block ++;
981 }
982
983 void
984 modest_text_utils_hyperlinkify_end (void)
985 {
986         url_matches_block--;
987         if (url_matches_block <= 0)
988                 free_patterns ();
989 }
990
991
992 static GSList*
993 get_url_matches (GString *txt)
994 {
995         regmatch_t rm;
996         guint rv, i, offset = 0;
997         GSList *match_list = NULL;
998
999         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1000
1001         /* initalize the regexps */
1002         modest_text_utils_hyperlinkify_begin ();
1003
1004         /* find all the matches */
1005         for (i = 0; i != pattern_num; ++i) {
1006                 offset     = 0; 
1007                 while (1) {
1008                         url_match_t *match;
1009                         gboolean is_submatch;
1010                         GSList *cursor;
1011                         
1012                         if ((rv = regexec (patterns[i].preg, txt->str + offset, 1, &rm, 0)) != 0) {
1013                                 g_return_val_if_fail (rv == REG_NOMATCH, NULL); /* this should not happen */
1014                                 break; /* try next regexp */ 
1015                         }
1016                         if (rm.rm_so == -1)
1017                                 break;
1018                         
1019                         is_submatch = FALSE;
1020                         /* check  old matches to see if this has already been matched */
1021                         cursor = match_list;
1022                         while (cursor && !is_submatch) {
1023                                 const url_match_t *old_match =
1024                                         (const url_match_t *) cursor->data;
1025                                 guint new_offset = offset + rm.rm_so;
1026                                 is_submatch = (new_offset >  old_match->offset &&
1027                                                new_offset <  old_match->offset + old_match->len);
1028                                 cursor = g_slist_next (cursor);
1029                         }
1030
1031                         if (!is_submatch) {
1032                                 /* make a list of our matches (<offset, len, prefix> tupels)*/
1033                                 match = g_slice_new (url_match_t);
1034                                 match->offset = offset + rm.rm_so;
1035                                 match->len    = rm.rm_eo - rm.rm_so;
1036                                 match->prefix = patterns[i].prefix;
1037                                 match_list = g_slist_prepend (match_list, match);
1038                         }               
1039                         offset += rm.rm_eo;
1040                 }
1041         }
1042
1043         modest_text_utils_hyperlinkify_end ();
1044         
1045         /* now sort the list, so the matches are in reverse order of occurence.
1046          * that way, we can do the replacements starting from the end, so we don't need
1047          * to recalculate the offsets
1048          */
1049         match_list = g_slist_sort (match_list,
1050                                    (GCompareFunc)cmp_offsets_reverse); 
1051         return match_list;      
1052 }
1053
1054
1055
1056 /* replace all occurences of needle in haystack with repl*/
1057 static gchar*
1058 replace_string (const gchar *haystack, const gchar *needle, gchar repl)
1059 {
1060         gchar *str, *cursor;
1061
1062         if (!haystack || !needle || strlen(needle) == 0)
1063                 return haystack ? g_strdup(haystack) : NULL;
1064         
1065         str = g_strdup (haystack);
1066
1067         for (cursor = str; cursor && *cursor; ++cursor) {
1068                 if (g_str_has_prefix (cursor, needle)) {
1069                         cursor[0] = repl;
1070                         memmove (cursor + 1,
1071                                  cursor + strlen (needle),
1072                                  strlen (cursor + strlen (needle)) + 1);
1073                 }
1074         }
1075         
1076         return str;
1077 }
1078
1079 static void
1080 hyperlinkify_plain_text (GString *txt)
1081 {
1082         GSList *cursor;
1083         GSList *match_list = get_url_matches (txt);
1084
1085         /* we will work backwards, so the offsets stay valid */
1086         for (cursor = match_list; cursor; cursor = cursor->next) {
1087
1088                 url_match_t *match = (url_match_t*) cursor->data;
1089                 gchar *url  = g_strndup (txt->str + match->offset, match->len);
1090                 gchar *repl = NULL; /* replacement  */
1091
1092                 /* the string still contains $(MARK_AMP_URI_STR)"amp;" for each
1093                  * '&' in the original, because of the text->html conversion.
1094                  * in the href-URL (and only there), we must convert that back to
1095                  * '&'
1096                  */
1097                 gchar *href_url = replace_string (url, MARK_AMP_URI_STR "amp;", '&');
1098                 
1099                 /* the prefix is NULL: use the one that is already there */
1100                 repl = g_strdup_printf ("<a href=\"%s%s\">%s</a>",
1101                                         match->prefix ? match->prefix : EMPTY_STRING, 
1102                                         href_url, url);
1103
1104                 /* replace the old thing with our hyperlink
1105                  * replacement thing */
1106                 g_string_erase  (txt, match->offset, match->len);
1107                 g_string_insert (txt, match->offset, repl);
1108                 
1109                 g_free (url);
1110                 g_free (repl);
1111                 g_free (href_url);
1112
1113                 g_slice_free (url_match_t, match);      
1114         }
1115         
1116         g_slist_free (match_list);
1117 }
1118
1119
1120 /* for optimization reasons, we change the string in-place */
1121 void
1122 modest_text_utils_get_display_address (gchar *address)
1123 {
1124         int i;
1125
1126         g_return_if_fail (address);
1127         
1128         if (!address)
1129                 return;
1130         
1131         /* should not be needed, and otherwise, we probably won't screw up the address
1132          * more than it already is :) 
1133          * g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL);
1134          * */
1135         
1136         /* remove leading whitespace */
1137         if (address[0] == ' ')
1138                 g_strchug (address);
1139                 
1140         for (i = 0; address[i]; ++i) {
1141                 if (address[i] == '<') {
1142                         if (G_UNLIKELY(i == 0))
1143                                 return; /* there's nothing else, leave it */
1144                         else {
1145                                 address[i] = '\0'; /* terminate the string here */
1146                                 return;
1147                         }
1148                 }
1149         }
1150 }
1151
1152
1153
1154
1155
1156 gchar *
1157 modest_text_utils_get_email_address (const gchar *full_address)
1158 {
1159         const gchar *left, *right;
1160
1161         g_return_val_if_fail (full_address, NULL);
1162         
1163         if (!full_address)
1164                 return NULL;
1165         
1166         g_return_val_if_fail (g_utf8_validate (full_address, -1, NULL), NULL);
1167         
1168         left = g_strrstr_len (full_address, strlen(full_address), "<");
1169         if (left == NULL)
1170                 return g_strdup (full_address);
1171
1172         right = g_strstr_len (left, strlen(left), ">");
1173         if (right == NULL)
1174                 return g_strdup (full_address);
1175
1176         return g_strndup (left + 1, right - left - 1);
1177 }
1178
1179 gint 
1180 modest_text_utils_get_subject_prefix_len (const gchar *sub)
1181 {
1182         gint prefix_len = 0;    
1183
1184         g_return_val_if_fail (sub, 0);
1185
1186         if (!sub)
1187                 return 0;
1188         
1189         /* optimization: "Re", "RE", "re","Fwd", "FWD", "fwd","FW","Fw", "fw" */
1190         if (sub[0] != 'R' && sub[0] != 'F' && sub[0] != 'r' && sub[0] != 'f')
1191                 return 0;
1192         else if (sub[0] && sub[1] != 'e' && sub[1] != 'E' && sub[1] != 'w' && sub[1] != 'W')
1193                 return 0;
1194
1195         prefix_len = 2;
1196         if (sub[2] == 'd')
1197                 ++prefix_len;
1198
1199         /* skip over a [...] block */
1200         if (sub[prefix_len] == '[') {
1201                 int c = prefix_len + 1;
1202                 while (sub[c] && sub[c] != ']')
1203                         ++c;
1204                 if (sub[c])
1205                         return 0; /* no end to the ']' found */
1206                 else
1207                         prefix_len = c + 1;
1208         }
1209
1210         /* did we find the ':' ? */
1211         if (sub[prefix_len] == ':') {
1212                 ++prefix_len;
1213                 if (sub[prefix_len] == ' ')
1214                         ++prefix_len;
1215                 prefix_len += modest_text_utils_get_subject_prefix_len (sub + prefix_len);
1216 /*              g_warning ("['%s','%s']", sub, (char*) sub + prefix_len); */
1217                 return prefix_len;
1218         } else
1219                 return 0;
1220 }
1221
1222
1223 gint
1224 modest_text_utils_utf8_strcmp (const gchar* s1, const gchar *s2, gboolean insensitive)
1225 {
1226
1227 /* work even when s1 and/or s2 == NULL */
1228         if (G_UNLIKELY(s1 == s2))
1229                 return 0;
1230         if (G_UNLIKELY(!s1))
1231                 return -1;
1232         if (G_UNLIKELY(!s2))
1233                 return 1;
1234         
1235         /* if it's not case sensitive */
1236         if (!insensitive) {
1237
1238                 /* optimization: shortcut if first char is ascii */ 
1239                 if (((s1[0] & 0xf0)== 0) && ((s2[0] & 0xf0) == 0)) 
1240                         return s1[0] - s2[0];
1241                 
1242                 return g_utf8_collate (s1, s2);
1243
1244         } else {
1245                 gint result;
1246                 gchar *n1, *n2;
1247
1248                 /* optimization: short cut iif first char is ascii */ 
1249                 if (((s1[0] & 0xf0) == 0) && ((s2[0] & 0xf0) == 0)) 
1250                         return tolower(s1[0]) - tolower(s2[0]);
1251                 
1252                 n1 = g_utf8_strdown (s1, -1);
1253                 n2 = g_utf8_strdown (s2, -1);
1254                 
1255                 result = g_utf8_collate (n1, n2);
1256                 
1257                 g_free (n1);
1258                 g_free (n2);
1259         
1260                 return result;
1261         }
1262 }
1263
1264
1265 const gchar*
1266 modest_text_utils_get_display_date (time_t date)
1267 {
1268 #define DATE_BUF_SIZE 64 
1269         static gchar date_buf[DATE_BUF_SIZE];
1270         
1271         /* calculate the # of days since epoch for 
1272          * for today and for the date provided 
1273          * based on idea from pvanhoof */
1274         int day      = time(NULL) / (24 * 60 * 60);
1275         int date_day = date       / (24 * 60 * 60);
1276
1277         /* if it's today, show the time, if it's not today, show the date instead */
1278
1279         if (day == date_day) /* is the date today? */
1280                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%X", date);
1281         else 
1282                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%x", date); 
1283
1284         return date_buf; /* this is a static buffer, don't free! */
1285 }
1286
1287
1288
1289 gboolean
1290 modest_text_utils_validate_folder_name (const gchar *folder_name)
1291 {
1292         /* based on http://msdn2.microsoft.com/en-us/library/aa365247.aspx,
1293          * with some extras */
1294         
1295         guint len;
1296         gint i;
1297         const gchar **cursor = NULL;
1298         const gchar *forbidden_names[] = { /* windows does not like these */
1299                 "CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6",
1300                 "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9",
1301                 ".", "..", NULL
1302         };
1303         
1304         /* cannot be NULL */
1305         if (!folder_name) 
1306                 return FALSE;
1307
1308         /* cannot be empty */
1309         len = strlen(folder_name);
1310         if (len == 0)
1311                 return FALSE;
1312         
1313         /* cannot start or end with a space */
1314         if (g_ascii_isspace(folder_name[0]) || g_ascii_isspace(folder_name[len - 1]))
1315                 return FALSE; 
1316
1317         /* cannot contain a forbidden char */   
1318         for (i = 0; i < len; i++)
1319                 if (modest_text_utils_is_forbidden_char (folder_name[i], FOLDER_NAME_FORBIDDEN_CHARS))
1320                         return FALSE;
1321         
1322         /* cannot contain a forbidden word */
1323         if (len <= 4) {
1324                 for (cursor = forbidden_names; cursor && *cursor; ++cursor) {
1325                         if (g_ascii_strcasecmp (folder_name, *cursor) == 0)
1326                                 return FALSE;
1327                 }
1328         }
1329
1330         return TRUE; /* it's valid! */
1331 }
1332
1333
1334
1335 gboolean
1336 modest_text_utils_validate_domain_name (const gchar *domain)
1337 {
1338         gboolean valid = FALSE;
1339         regex_t rx;
1340         const gchar* domain_regex = "^([a-z0-9-]*[a-z0-9]\\.)+[a-z0-9-]*[a-z0-9]$";
1341
1342         g_return_val_if_fail (domain, FALSE);
1343         
1344         if (!domain)
1345                 return FALSE;
1346         
1347         memset (&rx, 0, sizeof(regex_t)); /* coverity wants this... */
1348                 
1349         /* domain name: all alphanum or '-' or '.',
1350          * but beginning/ending in alphanum */  
1351         if (regcomp (&rx, domain_regex, REG_ICASE|REG_EXTENDED|REG_NOSUB)) {
1352                 g_warning ("BUG: error in regexp");
1353                 return FALSE;
1354         }
1355         
1356         valid = (regexec (&rx, domain, 1, NULL, 0) == 0);
1357         regfree (&rx);
1358                 
1359         return valid;
1360 }
1361
1362
1363
1364 gboolean
1365 modest_text_utils_validate_email_address (const gchar *email_address,
1366                                           const gchar **invalid_char_position)
1367 {
1368         int count = 0;
1369         const gchar *c = NULL, *domain = NULL;
1370         static gchar *rfc822_specials = "()<>@,;:\\\"[]&";
1371         
1372         if (invalid_char_position)
1373                 *invalid_char_position = NULL;
1374         
1375         g_return_val_if_fail (email_address, FALSE);
1376         
1377         /* check that the email adress contains exactly one @ */
1378         if (!strstr(email_address, "@") || 
1379                         (strstr(email_address, "@") != g_strrstr(email_address, "@"))) 
1380                 return FALSE;
1381         
1382         /* first we validate the name portion (name@domain) */
1383         for (c = email_address;  *c;  c++) {
1384                 if (*c == '\"' && 
1385                     (c == email_address || 
1386                      *(c - 1) == '.' || 
1387                      *(c - 1) == '\"')) {
1388                         while (*++c) {
1389                                 if (*c == '\"') 
1390                                         break;
1391                                 if (*c == '\\' && (*++c == ' ')) 
1392                                         continue;
1393                                 if (*c <= ' ' || *c >= 127) 
1394                                         return FALSE;
1395                         }
1396                         if (!*c++) 
1397                                 return FALSE;
1398                         if (*c == '@') 
1399                                 break;
1400                         if (*c != '.') 
1401                                 return FALSE;
1402                         continue;
1403                 }
1404                 if (*c == '@') 
1405                         break;
1406                 if (*c <= ' ' || *c >= 127) 
1407                         return FALSE;
1408                 if (strchr(rfc822_specials, *c)) {
1409                         if (invalid_char_position)
1410                                 *invalid_char_position = c;
1411                         return FALSE;
1412                 }
1413         }
1414         if (c == email_address || *(c - 1) == '.') 
1415                 return FALSE;
1416
1417         /* next we validate the domain portion (name@domain) */
1418         if (!*(domain = ++c)) 
1419                 return FALSE;
1420         do {
1421                 if (*c == '.') {
1422                         if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') 
1423                                 return FALSE;
1424                         count++;
1425                 }
1426                 if (*c <= ' ' || *c >= 127) 
1427                         return FALSE;
1428                 if (strchr(rfc822_specials, *c)) {
1429                         if (invalid_char_position)
1430                                 *invalid_char_position = c;
1431                         return FALSE;
1432                 }
1433         } while (*++c);
1434
1435         return (count >= 1) ? TRUE : FALSE;
1436 }
1437
1438 gboolean 
1439 modest_text_utils_validate_recipient (const gchar *recipient, const gchar **invalid_char_position)
1440 {
1441         gchar *stripped, *current;
1442         gchar *right_part;
1443         gboolean has_error = FALSE;
1444
1445         if (invalid_char_position)
1446                 *invalid_char_position = NULL;
1447         
1448         g_return_val_if_fail (recipient, FALSE);
1449         
1450         if (modest_text_utils_validate_email_address (recipient, invalid_char_position))
1451                 return TRUE;
1452
1453         stripped = g_strdup (recipient);
1454         stripped = g_strstrip (stripped);
1455         current = stripped;
1456
1457         if (*current == '\0') {
1458                 g_free (stripped);
1459                 return FALSE;
1460         }
1461
1462         /* quoted string */
1463         if (*current == '\"') {
1464                 current = g_utf8_next_char (current);
1465                 has_error = TRUE;
1466                 for (; *current != '\0'; current = g_utf8_next_char (current)) {
1467                         if (*current == '\\') {
1468                                 /* TODO: This causes a warning, which breaks the build, 
1469                                  * because a gchar cannot be < 0.
1470                                  * murrayc. 
1471                                 if (current[1] <0) {
1472                                         has_error = TRUE;
1473                                         break;
1474                                 }
1475                                 */
1476                         } else if (*current == '\"') {
1477                                 has_error = FALSE;
1478                                 current = g_utf8_next_char (current);
1479                                 break;
1480                         }
1481                 }
1482         } else {
1483                 has_error = TRUE;
1484                 for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) {
1485                         if (*current == '<') {
1486                                 has_error = FALSE;
1487                                 break;
1488                         }
1489                 }
1490         }
1491                 
1492         if (has_error) {
1493                 g_free (stripped);
1494                 return FALSE;
1495         }
1496
1497         right_part = g_strdup (current);
1498         g_free (stripped);
1499         right_part = g_strstrip (right_part);
1500
1501         if (g_str_has_prefix (right_part, "<") &&
1502             g_str_has_suffix (right_part, ">")) {
1503                 gchar *address;
1504                 gboolean valid;
1505
1506                 address = g_strndup (right_part+1, strlen (right_part) - 2);
1507                 g_free (right_part);
1508                 valid = modest_text_utils_validate_email_address (address, invalid_char_position);
1509                 g_free (address);
1510                 return valid;
1511         } else {
1512                 g_free (right_part);
1513                 return FALSE;
1514         }
1515 }
1516
1517
1518 gchar *
1519 modest_text_utils_get_display_size (guint64 size)
1520 {
1521         const guint KB=1024;
1522         const guint MB=1024 * KB;
1523         const guint GB=1024 * MB;
1524
1525         if (size == 0)
1526                 return g_strdup_printf(_FM("sfil_li_size_kb"), 0);
1527         if (0 < size && size < KB)
1528                 return g_strdup_printf (_FM("sfil_li_size_kb"), 1);
1529         else if (KB <= size && size < 100 * KB)
1530                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB);
1531         else if (100*KB <= size && size < MB)
1532                 return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (float) size / MB);
1533         else if (MB <= size && size < 10*MB)
1534                 return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB);
1535         else if (10*MB <= size && size < GB)
1536                 return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB);
1537         else
1538                 return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB); 
1539 }
1540
1541 static gchar *
1542 get_email_from_address (const gchar * address)
1543 {
1544         gchar *left_limit, *right_limit;
1545
1546         left_limit = strstr (address, "<");
1547         right_limit = g_strrstr (address, ">");
1548
1549         if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit))
1550                 return g_strdup (address);
1551         else
1552                 return g_strndup (left_limit + 1, (right_limit - left_limit) - 1);
1553 }
1554
1555 gchar *      
1556 modest_text_utils_get_color_string (GdkColor *color)
1557 {
1558         g_return_val_if_fail (color, NULL);
1559         
1560         return g_strdup_printf ("#%x%x%x%x%x%x%x%x%x%x%x%x",
1561                                 (color->red >> 12)   & 0xf, (color->red >> 8)   & 0xf,
1562                                 (color->red >>  4)   & 0xf, (color->red)        & 0xf,
1563                                 (color->green >> 12) & 0xf, (color->green >> 8) & 0xf,
1564                                 (color->green >>  4) & 0xf, (color->green)      & 0xf,
1565                                 (color->blue >> 12)  & 0xf, (color->blue >> 8)  & 0xf,
1566                                 (color->blue >>  4)  & 0xf, (color->blue)       & 0xf);
1567 }
1568
1569 gchar *
1570 modest_text_utils_text_buffer_get_text (GtkTextBuffer *buffer)
1571 {
1572         GtkTextIter start, end;
1573         gchar *slice, *current;
1574         GString *result = g_string_new ("");
1575
1576         g_return_val_if_fail (buffer && GTK_IS_TEXT_BUFFER (buffer), NULL);
1577         
1578         gtk_text_buffer_get_start_iter (buffer, &start);
1579         gtk_text_buffer_get_end_iter (buffer, &end);
1580
1581         slice = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
1582         current = slice;
1583
1584         while (current && current != '\0') {
1585                 if (g_utf8_get_char (current) == 0xFFFC) {
1586                         result = g_string_append_c (result, ' ');
1587                         current = g_utf8_next_char (current);
1588                 } else {
1589                         gchar *next = g_utf8_strchr (current, -1, 0xFFFC);
1590                         if (next == NULL) {
1591                                 result = g_string_append (result, current);
1592                         } else {
1593                                 result = g_string_append_len (result, current, next - current);
1594                         }
1595                         current = next;
1596                 }
1597         }
1598         g_free (slice);
1599
1600         return g_string_free (result, FALSE);
1601         
1602 }
1603
1604 gboolean
1605 modest_text_utils_is_forbidden_char (const gchar character,
1606                                      ModestTextUtilsForbiddenCharType type)
1607 {
1608         gint i, len;
1609         const gchar *forbidden_chars = NULL;
1610         
1611         /* We need to get the length in the switch because the
1612            compiler needs to know the size at compile time */
1613         switch (type) {
1614         case ACCOUNT_TITLE_FORBIDDEN_CHARS:
1615                 forbidden_chars = account_title_forbidden_chars;
1616                 len = G_N_ELEMENTS (account_title_forbidden_chars);
1617                 break;
1618         case FOLDER_NAME_FORBIDDEN_CHARS:
1619                 forbidden_chars = folder_name_forbidden_chars;
1620                 len = G_N_ELEMENTS (folder_name_forbidden_chars);
1621                 break;
1622         case USER_NAME_FORBIDDEN_NAMES:
1623                 forbidden_chars = user_name_forbidden_chars;
1624                 len = G_N_ELEMENTS (user_name_forbidden_chars);
1625                 break;
1626         default:
1627                 g_return_val_if_reached (TRUE);
1628         }
1629
1630         for (i = 0; i < len ; i++)
1631                 if (forbidden_chars[i] == character)
1632                         return TRUE;
1633
1634         return FALSE; /* it's valid! */
1635 }
1636
1637 gchar *      
1638 modest_text_utils_label_get_selection (GtkLabel *label)
1639 {
1640         gint start, end;
1641         gchar *selection;
1642
1643         if (gtk_label_get_selection_bounds (GTK_LABEL (label), &start, &end)) {
1644                 const gchar *start_offset;
1645                 const gchar *end_offset;
1646                 start_offset = gtk_label_get_text (GTK_LABEL (label));
1647                 start_offset = g_utf8_offset_to_pointer (start_offset, start);
1648                 end_offset = gtk_label_get_text (GTK_LABEL (label));
1649                 end_offset = g_utf8_offset_to_pointer (end_offset, end);
1650                 selection = g_strndup (start_offset, end_offset - start_offset);
1651                 return selection;
1652         } else {
1653                 return g_strdup ("");
1654         }
1655 }
1656
1657 static gboolean
1658 _forward_search_image_char (gunichar ch,
1659                             gpointer userdata)
1660 {
1661         return (ch == 0xFFFC);
1662 }
1663
1664 gboolean
1665 modest_text_utils_buffer_selection_is_valid (GtkTextBuffer *buffer)
1666 {
1667         gboolean result;
1668         GtkTextIter start, end;
1669
1670         g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), FALSE);
1671
1672         result = gtk_text_buffer_get_has_selection (GTK_TEXT_BUFFER (buffer));
1673
1674         /* check there are no images in selection */
1675         if (result) {
1676                 gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
1677                 if (gtk_text_iter_get_char (&start)== 0xFFFC)
1678                         result = FALSE;
1679                 else {
1680                         gtk_text_iter_backward_char (&end);
1681                         if (gtk_text_iter_forward_find_char (&start, _forward_search_image_char,
1682                                                              NULL, &end))
1683                                 result = FALSE;
1684                 }
1685                                     
1686         }
1687
1688         return result;
1689 }
1690
1691 gchar *
1692 modest_text_utils_escape_mnemonics (const gchar *text)
1693 {
1694         const gchar *p;
1695         GString *result = NULL;
1696
1697         if (text == NULL)
1698                 return NULL;
1699
1700         result = g_string_new ("");
1701         for (p = text; *p != '\0'; p++) {
1702                 if (*p == '_')
1703                         result = g_string_append (result, "__");
1704                 else
1705                         result = g_string_append_c (result, *p);
1706         }
1707         
1708         return g_string_free (result, FALSE);
1709 }