Don't pass the header_list in GetMsgInfo, it's not needed
[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                 char 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                  */
414                 if (++break_dist == 256) {
415                         g_string_append_c (html, '\n');
416                         break_dist = 0;
417                 }
418                 
419                 switch (kar) {
420                 case 0:
421                 case MARK_AMP:
422                 case MARK_AMP_URI:      
423                         /* this is a temp place holder for '&'; we can only
424                                 * set the real '&' after hyperlink translation, otherwise
425                                 * we might screw that up */
426                         break; /* ignore embedded \0s and MARK_AMP */   
427                 case '<'  : g_string_append (html, MARK_AMP_STR "lt;");   break;
428                 case '>'  : g_string_append (html, MARK_AMP_STR "gt;");   break;
429                 case '&'  : g_string_append (html, MARK_AMP_URI_STR "amp;");  break; /* special case */
430                 case '"'  : g_string_append (html, MARK_AMP_STR "quot;");  break;
431
432                 /* don't convert &apos; --> wpeditor will try to re-convert it... */    
433                 //case '\'' : g_string_append (html, "&apos;"); break;
434                 case '\n' : g_string_append (html, "<br>\n");break_dist= 0; break;
435                 case '\t' : g_string_append (html, MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp; ");
436                         break_dist=0; break; /* note the space at the end*/
437                 case ' ':
438                         break_dist = 0;
439                         if (space_seen) { /* second space in a row */
440                                 g_string_append (html, "&nbsp; ");
441                                 space_seen = FALSE;
442                         } else
443                                 space_seen = TRUE;
444                         break;
445                 default:
446                         g_string_append_c (html, kar);
447                 }
448         }
449 }
450
451
452 static void
453 modest_text_utils_convert_buffer_to_html_finish (GString *html)
454 {
455         int i;
456         /* replace all our MARK_AMPs with real ones */
457         for (i = 0; i != html->len; ++i)
458                 if ((html->str)[i] == MARK_AMP || (html->str)[i] == MARK_AMP_URI)
459                         (html->str)[i] = '&';
460 }
461
462
463 gchar*
464 modest_text_utils_convert_to_html (const gchar *data)
465 {
466         GString         *html;      
467         gsize           len;
468
469         g_return_val_if_fail (data, NULL);
470         
471         if (!data)
472                 return NULL;
473
474         len = strlen (data);
475         html = g_string_sized_new (1.5 * len);  /* just a  guess... */
476
477         g_string_append_printf (html,
478                                 "<html><head>"
479                                 "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf8\">"
480                                 "</head>"
481                                 "<body>");
482
483         modest_text_utils_convert_buffer_to_html_start (html, data, -1);
484         
485         g_string_append (html, "</body></html>");
486
487         if (len <= HYPERLINKIFY_MAX_LENGTH)
488                 hyperlinkify_plain_text (html);
489
490         modest_text_utils_convert_buffer_to_html_finish (html);
491         
492         return g_string_free (html, FALSE);
493 }
494
495 gchar *
496 modest_text_utils_convert_to_html_body (const gchar *data, gssize n, gboolean hyperlinkify)
497 {
498         GString         *html;      
499
500         g_return_val_if_fail (data, NULL);
501
502         if (!data)
503                 return NULL;
504
505         if (n == -1) 
506                 n = strlen (data);
507         html = g_string_sized_new (1.5 * n);    /* just a  guess... */
508
509         modest_text_utils_convert_buffer_to_html_start (html, data, n);
510
511         if (hyperlinkify && (n < HYPERLINKIFY_MAX_LENGTH))
512                 hyperlinkify_plain_text (html);
513
514         modest_text_utils_convert_buffer_to_html_finish (html);
515         
516         return g_string_free (html, FALSE);
517 }
518
519 void
520 modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes)
521 {
522         gchar *current, *start, *last_blank;
523         gint start_offset = 0, current_offset = 0;
524
525         g_return_if_fail (start_indexes != NULL);
526         g_return_if_fail (end_indexes != NULL);
527
528         start = (gchar *) addresses;
529         current = start;
530         last_blank = start;
531
532         while (*current != '\0') {
533                 if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) {
534                         start = g_utf8_next_char (start);
535                         start_offset++;
536                         last_blank = current;
537                 } else if ((*current == ',')||(*current == ';')) {
538                         gint *start_index, *end_index;
539                         start_index = g_new0(gint, 1);
540                         end_index = g_new0(gint, 1);
541                         *start_index = start_offset;
542                         *end_index = current_offset;
543                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
544                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
545                         start = g_utf8_next_char (current);
546                         start_offset = current_offset + 1;
547                         last_blank = start;
548                 } else if (*current == '"') {
549                         current = g_utf8_next_char (current);
550                         current_offset ++;
551                         while ((*current != '"')&&(*current != '\0')) {
552                                 current = g_utf8_next_char (current);
553                                 current_offset ++;
554                         }
555                 }
556                                 
557                 current = g_utf8_next_char (current);
558                 current_offset ++;
559         }
560
561         if (start != current) {
562                         gint *start_index, *end_index;
563                         start_index = g_new0(gint, 1);
564                         end_index = g_new0(gint, 1);
565                         *start_index = start_offset;
566                         *end_index = current_offset;
567                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
568                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
569         }
570         
571         *start_indexes = g_slist_reverse (*start_indexes);
572         *end_indexes = g_slist_reverse (*end_indexes);
573
574         return;
575 }
576
577
578 GSList *
579 modest_text_utils_split_addresses_list (const gchar *addresses)
580 {
581         GSList *head;
582         const gchar *my_addrs = addresses;
583         const gchar *end;
584         gchar *addr;
585
586         g_return_val_if_fail (addresses, NULL);
587         
588         /* skip any space, ',', ';' at the start */
589         while (my_addrs && (my_addrs[0] == ' ' || my_addrs[0] == ',' || my_addrs[0] == ';'))
590                ++my_addrs;
591
592         /* are we at the end of addresses list? */
593         if (!my_addrs[0])
594                 return NULL;
595         
596         /* nope, we are at the start of some address
597          * now, let's find the end of the address */
598         end = my_addrs + 1;
599         while (end[0] && end[0] != ',' && end[0] != ';')
600                 ++end;
601
602         /* we got the address; copy it and remove trailing whitespace */
603         addr = g_strndup (my_addrs, end - my_addrs);
604         g_strchomp (addr);
605
606         head = g_slist_append (NULL, addr);
607         head->next = modest_text_utils_split_addresses_list (end); /* recurse */
608
609         return head;
610 }
611
612
613 void
614 modest_text_utils_address_range_at_position (const gchar *recipients_list,
615                                              guint position,
616                                              guint *start,
617                                              guint *end)
618 {
619         gchar *current = NULL;
620         gint range_start = 0;
621         gint range_end = 0;
622         gint index;
623         gboolean is_quoted = FALSE;
624
625         g_return_if_fail (recipients_list);
626         g_return_if_fail (position < g_utf8_strlen(recipients_list, -1));
627                 
628         index = 0;
629         for (current = (gchar *) recipients_list; *current != '\0';
630              current = g_utf8_find_next_char (current, NULL)) {
631                 gunichar c = g_utf8_get_char (current);
632
633                 if ((c == ',') && (!is_quoted)) {
634                         if (index < position) {
635                                 range_start = index + 1;
636                         } else {
637                                 break;
638                         }
639                 } else if (c == '\"') {
640                         is_quoted = !is_quoted;
641                 } else if ((c == ' ') &&(range_start == index)) {
642                         range_start ++;
643                 }
644                 index ++;
645                 range_end = index;
646         }
647
648         if (start)
649                 *start = range_start;
650         if (end)
651                 *end = range_end;
652 }
653
654
655 /* ******************************************************************* */
656 /* ************************* UTILIY FUNCTIONS ************************ */
657 /* ******************************************************************* */
658
659 static GString *
660 get_next_line (const gchar * b, const gsize blen, const gchar * iter)
661 {
662         GString *gs;
663         const gchar *i0;
664         
665         if (iter > b + blen)
666                 return g_string_new("");
667         
668         i0 = iter;
669         while (iter[0]) {
670                 if (iter[0] == '\n')
671                         break;
672                 iter++;
673         }
674         gs = g_string_new_len (i0, iter - i0);
675         return gs;
676 }
677 static int
678 get_indent_level (const char *l)
679 {
680         int indent = 0;
681
682         while (l[0]) {
683                 if (l[0] == '>') {
684                         indent++;
685                         if (l[1] == ' ') {
686                                 l++;
687                         }
688                 } else {
689                         break;
690                 }
691                 l++;
692
693         }
694
695         /*      if we hit the signature marker "-- ", we return -(indent + 1). This
696          *      stops reformatting.
697          */
698         if (strcmp (l, "-- ") == 0) {
699                 return -1 - indent;
700         } else {
701                 return indent;
702         }
703 }
704
705 static void
706 unquote_line (GString * l)
707 {
708         gchar *p;
709
710         p = l->str;
711         while (p[0]) {
712                 if (p[0] == '>') {
713                         if (p[1] == ' ') {
714                                 p++;
715                         }
716                 } else {
717                         break;
718                 }
719                 p++;
720         }
721         g_string_erase (l, 0, p - l->str);
722 }
723
724 static void
725 append_quoted (GString * buf, int indent, const GString * str,
726                const int cutpoint)
727 {
728         int i;
729
730         indent = indent < 0 ? abs (indent) - 1 : indent;
731         for (i = 0; i <= indent; i++) {
732                 g_string_append (buf, "> ");
733         }
734         if (cutpoint > 0) {
735                 g_string_append_len (buf, str->str, cutpoint);
736         } else {
737                 g_string_append (buf, str->str);
738         }
739         g_string_append (buf, "\n");
740 }
741
742 static int
743 get_breakpoint_utf8 (const gchar * s, gint indent, const gint limit)
744 {
745         gint index = 0;
746         const gchar *pos, *last;
747         gunichar *uni;
748
749         indent = indent < 0 ? abs (indent) - 1 : indent;
750
751         last = NULL;
752         pos = s;
753         uni = g_utf8_to_ucs4_fast (s, -1, NULL);
754         while (pos[0]) {
755                 if ((index + 2 * indent > limit) && last) {
756                         g_free (uni);
757                         return last - s;
758                 }
759                 if (g_unichar_isspace (uni[index])) {
760                         last = pos;
761                 }
762                 pos = g_utf8_next_char (pos);
763                 index++;
764         }
765         g_free (uni);
766         return strlen (s);
767 }
768
769 static int
770 get_breakpoint_ascii (const gchar * s, const gint indent, const gint limit)
771 {
772         gint i, last;
773
774         last = strlen (s);
775         if (last + 2 * indent < limit)
776                 return last;
777
778         for (i = strlen (s); i > 0; i--) {
779                 if (s[i] == ' ') {
780                         if (i + 2 * indent <= limit) {
781                                 return i;
782                         } else {
783                                 last = i;
784                         }
785                 }
786         }
787         return last;
788 }
789
790 static int
791 get_breakpoint (const gchar * s, const gint indent, const gint limit)
792 {
793
794         if (g_utf8_validate (s, -1, NULL)) {
795                 return get_breakpoint_utf8 (s, indent, limit);
796         } else {                /* assume ASCII */
797                 //g_warning("invalid UTF-8 in msg");
798                 return get_breakpoint_ascii (s, indent, limit);
799         }
800 }
801
802 static gchar *
803 cite (const time_t sent_date, const gchar *from)
804 {
805         return g_strdup (_("mcen_ia_editor_original_message"));
806 }
807
808 static gchar *
809 quoted_attachments (GList *attachments)
810 {
811         GList *node = NULL;
812         GString *result = g_string_new ("");
813         for (node = attachments; node != NULL; node = g_list_next (node)) {
814                 gchar *filename = (gchar *) node->data;
815                 g_string_append_printf ( result, "%s %s\n", _("mcen_ia_editor_attach_filename"), filename);
816         }
817
818         return g_string_free (result, FALSE);
819
820 }
821
822 static gchar *
823 modest_text_utils_quote_plain_text (const gchar *text, 
824                                     const gchar *cite, 
825                                     const gchar *signature,
826                                     GList *attachments,
827                                     int limit)
828 {
829         const gchar *iter;
830         gint indent, breakpoint, rem_indent = 0;
831         GString *q, *l, *remaining;
832         gsize len;
833         gchar *attachments_string = NULL;
834
835         /* remaining will store the rest of the line if we have to break it */
836         q = g_string_new ("\n");
837         q = g_string_append (q, cite);
838         q = g_string_append_c (q, '\n');
839         remaining = g_string_new ("");
840
841         iter = text;
842         len = strlen(text);
843         do {
844                 l = get_next_line (text, len, iter);
845                 iter = iter + l->len + 1;
846                 indent = get_indent_level (l->str);
847                 unquote_line (l);
848
849                 if (remaining->len) {
850                         if (l->len && indent == rem_indent) {
851                                 g_string_prepend (l, " ");
852                                 g_string_prepend (l, remaining->str);
853                         } else {
854                                 do {
855                                         breakpoint =
856                                                 get_breakpoint (remaining->str,
857                                                                 rem_indent,
858                                                                 limit);
859                                         append_quoted (q, rem_indent,
860                                                        remaining, breakpoint);
861                                         g_string_erase (remaining, 0,
862                                                         breakpoint);
863                                         if (remaining->str[0] == ' ') {
864                                                 g_string_erase (remaining, 0,
865                                                                 1);
866                                         }
867                                 } while (remaining->len);
868                         }
869                 }
870                 g_string_free (remaining, TRUE);
871                 breakpoint = get_breakpoint (l->str, indent, limit);
872                 remaining = g_string_new (l->str + breakpoint);
873                 if (remaining->str[0] == ' ') {
874                         g_string_erase (remaining, 0, 1);
875                 }
876                 rem_indent = indent;
877                 append_quoted (q, indent, l, breakpoint);
878                 g_string_free (l, TRUE);
879         } while ((iter < text + len) || (remaining->str[0]));
880
881         attachments_string = quoted_attachments (attachments);
882         q = g_string_append (q, attachments_string);
883         g_free (attachments_string);
884
885         if (signature != NULL) {
886                 q = g_string_append_c (q, '\n');
887                 q = g_string_append (q, signature);
888         }
889
890         return g_string_free (q, FALSE);
891 }
892
893 static gchar*
894 modest_text_utils_quote_html (const gchar *text, 
895                               const gchar *cite, 
896                               const gchar *signature,
897                               GList *attachments,
898                               int limit)
899 {
900         gchar *result = NULL;
901         gchar *signature_result = NULL;
902         const gchar *format = \
903                 "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" \
904                 "<html>\n" \
905                 "<body>\n" \
906                 "<br/>%s<br/>" \
907                 "<pre>%s<br/>%s<br/>%s</pre>\n" \
908                 "</body>\n" \
909                 "</html>\n";
910         gchar *attachments_string = NULL;
911         gchar *q_attachments_string = NULL;
912         gchar *q_cite = NULL;
913         gchar *html_text = NULL;
914
915         if (signature == NULL)
916                 signature_result = g_strdup ("");
917         else
918                 signature_result = modest_text_utils_convert_to_html_body (signature, -1, TRUE);
919
920         attachments_string = quoted_attachments (attachments);
921         q_attachments_string = modest_text_utils_convert_to_html_body (attachments_string, -1, TRUE);
922         q_cite = modest_text_utils_convert_to_html_body (cite, -1, TRUE);
923         html_text = modest_text_utils_convert_to_html_body (text, -1, TRUE);
924         result = g_strdup_printf (format, signature_result, q_cite, html_text, q_attachments_string);
925         g_free (q_cite);
926         g_free (html_text);
927         g_free (attachments_string);
928         g_free (q_attachments_string);
929         g_free (signature_result);
930         
931         return result;
932 }
933
934 static gint 
935 cmp_offsets_reverse (const url_match_t *match1, const url_match_t *match2)
936 {
937         return match2->offset - match1->offset;
938 }
939
940 static gboolean url_matches_block = 0;
941 static url_match_pattern_t patterns[] = MAIL_VIEWER_URL_MATCH_PATTERNS;
942
943
944 static gboolean
945 compile_patterns ()
946 {
947         guint i;
948         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
949         for (i = 0; i != pattern_num; ++i) {
950                 patterns[i].preg = g_slice_new0 (regex_t);
951                 
952                 /* this should not happen */
953                 if (regcomp (patterns[i].preg, patterns[i].regex,
954                              REG_ICASE|REG_EXTENDED|REG_NEWLINE) != 0) {
955                         g_warning ("%s: error in regexp:\n%s\n", __FUNCTION__, patterns[i].regex);
956                         return FALSE;
957                 }
958         }
959         return TRUE;
960 }
961
962 static void 
963 free_patterns ()
964 {
965         guint i;
966         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
967         for (i = 0; i != pattern_num; ++i) {
968                 regfree (patterns[i].preg);
969                 g_slice_free  (regex_t, patterns[i].preg);
970         } /* don't free patterns itself -- it's static */
971 }
972
973 void
974 modest_text_utils_hyperlinkify_begin (void)
975 {
976         if (url_matches_block == 0)
977                 compile_patterns ();
978         url_matches_block ++;
979 }
980
981 void
982 modest_text_utils_hyperlinkify_end (void)
983 {
984         url_matches_block--;
985         if (url_matches_block <= 0)
986                 free_patterns ();
987 }
988
989
990 static GSList*
991 get_url_matches (GString *txt)
992 {
993         regmatch_t rm;
994         guint rv, i, offset = 0;
995         GSList *match_list = NULL;
996
997         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
998
999         /* initalize the regexps */
1000         modest_text_utils_hyperlinkify_begin ();
1001
1002         /* find all the matches */
1003         for (i = 0; i != pattern_num; ++i) {
1004                 offset     = 0; 
1005                 while (1) {
1006                         url_match_t *match;
1007                         gboolean is_submatch;
1008                         GSList *cursor;
1009                         
1010                         if ((rv = regexec (patterns[i].preg, txt->str + offset, 1, &rm, 0)) != 0) {
1011                                 g_return_val_if_fail (rv == REG_NOMATCH, NULL); /* this should not happen */
1012                                 break; /* try next regexp */ 
1013                         }
1014                         if (rm.rm_so == -1)
1015                                 break;
1016                         
1017                         is_submatch = FALSE;
1018                         /* check  old matches to see if this has already been matched */
1019                         cursor = match_list;
1020                         while (cursor && !is_submatch) {
1021                                 const url_match_t *old_match =
1022                                         (const url_match_t *) cursor->data;
1023                                 guint new_offset = offset + rm.rm_so;
1024                                 is_submatch = (new_offset >  old_match->offset &&
1025                                                new_offset <  old_match->offset + old_match->len);
1026                                 cursor = g_slist_next (cursor);
1027                         }
1028
1029                         if (!is_submatch) {
1030                                 /* make a list of our matches (<offset, len, prefix> tupels)*/
1031                                 match = g_slice_new (url_match_t);
1032                                 match->offset = offset + rm.rm_so;
1033                                 match->len    = rm.rm_eo - rm.rm_so;
1034                                 match->prefix = patterns[i].prefix;
1035                                 match_list = g_slist_prepend (match_list, match);
1036                         }               
1037                         offset += rm.rm_eo;
1038                 }
1039         }
1040
1041         modest_text_utils_hyperlinkify_end ();
1042         
1043         /* now sort the list, so the matches are in reverse order of occurence.
1044          * that way, we can do the replacements starting from the end, so we don't need
1045          * to recalculate the offsets
1046          */
1047         match_list = g_slist_sort (match_list,
1048                                    (GCompareFunc)cmp_offsets_reverse); 
1049         return match_list;      
1050 }
1051
1052
1053
1054 /* replace all occurences of needle in haystack with repl*/
1055 static gchar*
1056 replace_string (const gchar *haystack, const gchar *needle, gchar repl)
1057 {
1058         gchar *str, *cursor;
1059
1060         if (!haystack || !needle || strlen(needle) == 0)
1061                 return haystack ? g_strdup(haystack) : NULL;
1062         
1063         str = g_strdup (haystack);
1064
1065         for (cursor = str; cursor && *cursor; ++cursor) {
1066                 if (g_str_has_prefix (cursor, needle)) {
1067                         cursor[0] = repl;
1068                         memmove (cursor + 1,
1069                                  cursor + strlen (needle),
1070                                  strlen (cursor + strlen (needle)) + 1);
1071                 }
1072         }
1073         
1074         return str;
1075 }
1076
1077 static void
1078 hyperlinkify_plain_text (GString *txt)
1079 {
1080         GSList *cursor;
1081         GSList *match_list = get_url_matches (txt);
1082
1083         /* we will work backwards, so the offsets stay valid */
1084         for (cursor = match_list; cursor; cursor = cursor->next) {
1085
1086                 url_match_t *match = (url_match_t*) cursor->data;
1087                 gchar *url  = g_strndup (txt->str + match->offset, match->len);
1088                 gchar *repl = NULL; /* replacement  */
1089
1090                 /* the string still contains $(MARK_AMP_URI_STR)"amp;" for each
1091                  * '&' in the original, because of the text->html conversion.
1092                  * in the href-URL (and only there), we must convert that back to
1093                  * '&'
1094                  */
1095                 gchar *href_url = replace_string (url, MARK_AMP_URI_STR "amp;", '&');
1096                 
1097                 /* the prefix is NULL: use the one that is already there */
1098                 repl = g_strdup_printf ("<a href=\"%s%s\">%s</a>",
1099                                         match->prefix ? match->prefix : EMPTY_STRING, 
1100                                         href_url, url);
1101
1102                 /* replace the old thing with our hyperlink
1103                  * replacement thing */
1104                 g_string_erase  (txt, match->offset, match->len);
1105                 g_string_insert (txt, match->offset, repl);
1106                 
1107                 g_free (url);
1108                 g_free (repl);
1109                 g_free (href_url);
1110
1111                 g_slice_free (url_match_t, match);      
1112         }
1113         
1114         g_slist_free (match_list);
1115 }
1116
1117
1118 /* for optimization reasons, we change the string in-place */
1119 void
1120 modest_text_utils_get_display_address (gchar *address)
1121 {
1122         int i;
1123
1124         g_return_if_fail (address);
1125         
1126         if (!address)
1127                 return;
1128         
1129         /* should not be needed, and otherwise, we probably won't screw up the address
1130          * more than it already is :) 
1131          * g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL);
1132          * */
1133         
1134         /* remove leading whitespace */
1135         if (address[0] == ' ')
1136                 g_strchug (address);
1137                 
1138         for (i = 0; address[i]; ++i) {
1139                 if (address[i] == '<') {
1140                         if (G_UNLIKELY(i == 0))
1141                                 return; /* there's nothing else, leave it */
1142                         else {
1143                                 address[i] = '\0'; /* terminate the string here */
1144                                 return;
1145                         }
1146                 }
1147         }
1148 }
1149
1150
1151
1152
1153
1154 gchar *
1155 modest_text_utils_get_email_address (const gchar *full_address)
1156 {
1157         const gchar *left, *right;
1158
1159         g_return_val_if_fail (full_address, NULL);
1160         
1161         if (!full_address)
1162                 return NULL;
1163         
1164         g_return_val_if_fail (g_utf8_validate (full_address, -1, NULL), NULL);
1165         
1166         left = g_strrstr_len (full_address, strlen(full_address), "<");
1167         if (left == NULL)
1168                 return g_strdup (full_address);
1169
1170         right = g_strstr_len (left, strlen(left), ">");
1171         if (right == NULL)
1172                 return g_strdup (full_address);
1173
1174         return g_strndup (left + 1, right - left - 1);
1175 }
1176
1177 gint 
1178 modest_text_utils_get_subject_prefix_len (const gchar *sub)
1179 {
1180         gint prefix_len = 0;    
1181
1182         g_return_val_if_fail (sub, 0);
1183
1184         if (!sub)
1185                 return 0;
1186         
1187         /* optimization: "Re", "RE", "re","Fwd", "FWD", "fwd","FW","Fw", "fw" */
1188         if (sub[0] != 'R' && sub[0] != 'F' && sub[0] != 'r' && sub[0] != 'f')
1189                 return 0;
1190         else if (sub[0] && sub[1] != 'e' && sub[1] != 'E' && sub[1] != 'w' && sub[1] != 'W')
1191                 return 0;
1192
1193         prefix_len = 2;
1194         if (sub[2] == 'd')
1195                 ++prefix_len;
1196
1197         /* skip over a [...] block */
1198         if (sub[prefix_len] == '[') {
1199                 int c = prefix_len + 1;
1200                 while (sub[c] && sub[c] != ']')
1201                         ++c;
1202                 if (sub[c])
1203                         return 0; /* no end to the ']' found */
1204                 else
1205                         prefix_len = c + 1;
1206         }
1207
1208         /* did we find the ':' ? */
1209         if (sub[prefix_len] == ':') {
1210                 ++prefix_len;
1211                 if (sub[prefix_len] == ' ')
1212                         ++prefix_len;
1213                 prefix_len += modest_text_utils_get_subject_prefix_len (sub + prefix_len);
1214 /*              g_warning ("['%s','%s']", sub, (char*) sub + prefix_len); */
1215                 return prefix_len;
1216         } else
1217                 return 0;
1218 }
1219
1220
1221 gint
1222 modest_text_utils_utf8_strcmp (const gchar* s1, const gchar *s2, gboolean insensitive)
1223 {
1224
1225 /* work even when s1 and/or s2 == NULL */
1226         if (G_UNLIKELY(s1 == s2))
1227                 return 0;
1228         if (G_UNLIKELY(!s1))
1229                 return -1;
1230         if (G_UNLIKELY(!s2))
1231                 return 1;
1232         
1233         /* if it's not case sensitive */
1234         if (!insensitive) {
1235
1236                 /* optimization: shortcut if first char is ascii */ 
1237                 if (((s1[0] & 0xf0)== 0) && ((s2[0] & 0xf0) == 0)) 
1238                         return s1[0] - s2[0];
1239                 
1240                 return g_utf8_collate (s1, s2);
1241
1242         } else {
1243                 gint result;
1244                 gchar *n1, *n2;
1245
1246                 /* optimization: short cut iif first char is ascii */ 
1247                 if (((s1[0] & 0xf0) == 0) && ((s2[0] & 0xf0) == 0)) 
1248                         return tolower(s1[0]) - tolower(s2[0]);
1249                 
1250                 n1 = g_utf8_strdown (s1, -1);
1251                 n2 = g_utf8_strdown (s2, -1);
1252                 
1253                 result = g_utf8_collate (n1, n2);
1254                 
1255                 g_free (n1);
1256                 g_free (n2);
1257         
1258                 return result;
1259         }
1260 }
1261
1262
1263 const gchar*
1264 modest_text_utils_get_display_date (time_t date)
1265 {
1266 #define DATE_BUF_SIZE 64 
1267         static gchar date_buf[DATE_BUF_SIZE];
1268         
1269         /* calculate the # of days since epoch for 
1270          * for today and for the date provided 
1271          * based on idea from pvanhoof */
1272         int day      = time(NULL) / (24 * 60 * 60);
1273         int date_day = date       / (24 * 60 * 60);
1274
1275         /* if it's today, show the time, if it's not today, show the date instead */
1276
1277         if (day == date_day) /* is the date today? */
1278                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%X", date);
1279         else 
1280                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%x", date); 
1281
1282         return date_buf; /* this is a static buffer, don't free! */
1283 }
1284
1285
1286
1287 gboolean
1288 modest_text_utils_validate_folder_name (const gchar *folder_name)
1289 {
1290         /* based on http://msdn2.microsoft.com/en-us/library/aa365247.aspx,
1291          * with some extras */
1292         
1293         guint len;
1294         gint i;
1295         const gchar **cursor = NULL;
1296         const gchar *forbidden_names[] = { /* windows does not like these */
1297                 "CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6",
1298                 "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9",
1299                 ".", "..", NULL
1300         };
1301         
1302         /* cannot be NULL */
1303         if (!folder_name) 
1304                 return FALSE;
1305
1306         /* cannot be empty */
1307         len = strlen(folder_name);
1308         if (len == 0)
1309                 return FALSE;
1310         
1311         /* cannot start or end with a space */
1312         if (g_ascii_isspace(folder_name[0]) || g_ascii_isspace(folder_name[len - 1]))
1313                 return FALSE; 
1314
1315         /* cannot contain a forbidden char */   
1316         for (i = 0; i < len; i++)
1317                 if (modest_text_utils_is_forbidden_char (folder_name[i], FOLDER_NAME_FORBIDDEN_CHARS))
1318                         return FALSE;
1319         
1320         /* cannot contain a forbidden word */
1321         if (len <= 4) {
1322                 for (cursor = forbidden_names; cursor && *cursor; ++cursor) {
1323                         if (g_ascii_strcasecmp (folder_name, *cursor) == 0)
1324                                 return FALSE;
1325                 }
1326         }
1327
1328         return TRUE; /* it's valid! */
1329 }
1330
1331
1332
1333 gboolean
1334 modest_text_utils_validate_domain_name (const gchar *domain)
1335 {
1336         gboolean valid = FALSE;
1337         regex_t rx;
1338         const gchar* domain_regex = "^([a-z0-9-]*[a-z0-9]\\.)+[a-z0-9-]*[a-z0-9]$";
1339
1340         g_return_val_if_fail (domain, FALSE);
1341         
1342         if (!domain)
1343                 return FALSE;
1344         
1345         memset (&rx, 0, sizeof(regex_t)); /* coverity wants this... */
1346                 
1347         /* domain name: all alphanum or '-' or '.',
1348          * but beginning/ending in alphanum */  
1349         if (regcomp (&rx, domain_regex, REG_ICASE|REG_EXTENDED|REG_NOSUB)) {
1350                 g_warning ("BUG: error in regexp");
1351                 return FALSE;
1352         }
1353         
1354         valid = (regexec (&rx, domain, 1, NULL, 0) == 0);
1355         regfree (&rx);
1356                 
1357         return valid;
1358 }
1359
1360
1361
1362 gboolean
1363 modest_text_utils_validate_email_address (const gchar *email_address,
1364                                           const gchar **invalid_char_position)
1365 {
1366         int count = 0;
1367         const gchar *c = NULL, *domain = NULL;
1368         static gchar *rfc822_specials = "()<>@,;:\\\"[]&";
1369         
1370         if (invalid_char_position)
1371                 *invalid_char_position = NULL;
1372         
1373         g_return_val_if_fail (email_address, FALSE);
1374         
1375         /* check that the email adress contains exactly one @ */
1376         if (!strstr(email_address, "@") || 
1377                         (strstr(email_address, "@") != g_strrstr(email_address, "@"))) 
1378                 return FALSE;
1379         
1380         /* first we validate the name portion (name@domain) */
1381         for (c = email_address;  *c;  c++) {
1382                 if (*c == '\"' && 
1383                     (c == email_address || 
1384                      *(c - 1) == '.' || 
1385                      *(c - 1) == '\"')) {
1386                         while (*++c) {
1387                                 if (*c == '\"') 
1388                                         break;
1389                                 if (*c == '\\' && (*++c == ' ')) 
1390                                         continue;
1391                                 if (*c <= ' ' || *c >= 127) 
1392                                         return FALSE;
1393                         }
1394                         if (!*c++) 
1395                                 return FALSE;
1396                         if (*c == '@') 
1397                                 break;
1398                         if (*c != '.') 
1399                                 return FALSE;
1400                         continue;
1401                 }
1402                 if (*c == '@') 
1403                         break;
1404                 if (*c <= ' ' || *c >= 127) 
1405                         return FALSE;
1406                 if (strchr(rfc822_specials, *c)) {
1407                         if (invalid_char_position)
1408                                 *invalid_char_position = c;
1409                         return FALSE;
1410                 }
1411         }
1412         if (c == email_address || *(c - 1) == '.') 
1413                 return FALSE;
1414
1415         /* next we validate the domain portion (name@domain) */
1416         if (!*(domain = ++c)) 
1417                 return FALSE;
1418         do {
1419                 if (*c == '.') {
1420                         if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') 
1421                                 return FALSE;
1422                         count++;
1423                 }
1424                 if (*c <= ' ' || *c >= 127) 
1425                         return FALSE;
1426                 if (strchr(rfc822_specials, *c)) {
1427                         if (invalid_char_position)
1428                                 *invalid_char_position = c;
1429                         return FALSE;
1430                 }
1431         } while (*++c);
1432
1433         return (count >= 1) ? TRUE : FALSE;
1434 }
1435
1436 gboolean 
1437 modest_text_utils_validate_recipient (const gchar *recipient, const gchar **invalid_char_position)
1438 {
1439         gchar *stripped, *current;
1440         gchar *right_part;
1441         gboolean has_error = FALSE;
1442
1443         if (invalid_char_position)
1444                 *invalid_char_position = NULL;
1445         
1446         g_return_val_if_fail (recipient, FALSE);
1447         
1448         if (modest_text_utils_validate_email_address (recipient, invalid_char_position))
1449                 return TRUE;
1450
1451         stripped = g_strdup (recipient);
1452         stripped = g_strstrip (stripped);
1453         current = stripped;
1454
1455         if (*current == '\0') {
1456                 g_free (stripped);
1457                 return FALSE;
1458         }
1459
1460         /* quoted string */
1461         if (*current == '\"') {
1462                 current = g_utf8_next_char (current);
1463                 has_error = TRUE;
1464                 for (; *current != '\0'; current = g_utf8_next_char (current)) {
1465                         if (*current == '\\') {
1466                                 /* TODO: This causes a warning, which breaks the build, 
1467                                  * because a gchar cannot be < 0.
1468                                  * murrayc. 
1469                                 if (current[1] <0) {
1470                                         has_error = TRUE;
1471                                         break;
1472                                 }
1473                                 */
1474                         } else if (*current == '\"') {
1475                                 has_error = FALSE;
1476                                 current = g_utf8_next_char (current);
1477                                 break;
1478                         }
1479                 }
1480         } else {
1481                 has_error = TRUE;
1482                 for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) {
1483                         if (*current == '<') {
1484                                 has_error = FALSE;
1485                                 break;
1486                         }
1487                 }
1488         }
1489                 
1490         if (has_error) {
1491                 g_free (stripped);
1492                 return FALSE;
1493         }
1494
1495         right_part = g_strdup (current);
1496         g_free (stripped);
1497         right_part = g_strstrip (right_part);
1498
1499         if (g_str_has_prefix (right_part, "<") &&
1500             g_str_has_suffix (right_part, ">")) {
1501                 gchar *address;
1502                 gboolean valid;
1503
1504                 address = g_strndup (right_part+1, strlen (right_part) - 2);
1505                 g_free (right_part);
1506                 valid = modest_text_utils_validate_email_address (address, invalid_char_position);
1507                 g_free (address);
1508                 return valid;
1509         } else {
1510                 g_free (right_part);
1511                 return FALSE;
1512         }
1513 }
1514
1515
1516 gchar *
1517 modest_text_utils_get_display_size (guint64 size)
1518 {
1519         const guint KB=1024;
1520         const guint MB=1024 * KB;
1521         const guint GB=1024 * MB;
1522
1523         if (size == 0)
1524                 return g_strdup_printf(_FM("sfil_li_size_kb"), 0);
1525         if (0 < size && size < KB)
1526                 return g_strdup_printf (_FM("sfil_li_size_kb"), 1);
1527         else if (KB <= size && size < 100 * KB)
1528                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB);
1529         else if (100*KB <= size && size < MB)
1530                 return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (float) size / MB);
1531         else if (MB <= size && size < 10*MB)
1532                 return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB);
1533         else if (10*MB <= size && size < GB)
1534                 return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB);
1535         else
1536                 return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB); 
1537 }
1538
1539 static gchar *
1540 get_email_from_address (const gchar * address)
1541 {
1542         gchar *left_limit, *right_limit;
1543
1544         left_limit = strstr (address, "<");
1545         right_limit = g_strrstr (address, ">");
1546
1547         if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit))
1548                 return g_strdup (address);
1549         else
1550                 return g_strndup (left_limit + 1, (right_limit - left_limit) - 1);
1551 }
1552
1553 gchar *      
1554 modest_text_utils_get_color_string (GdkColor *color)
1555 {
1556         g_return_val_if_fail (color, NULL);
1557         
1558         return g_strdup_printf ("#%x%x%x%x%x%x%x%x%x%x%x%x",
1559                                 (color->red >> 12)   & 0xf, (color->red >> 8)   & 0xf,
1560                                 (color->red >>  4)   & 0xf, (color->red)        & 0xf,
1561                                 (color->green >> 12) & 0xf, (color->green >> 8) & 0xf,
1562                                 (color->green >>  4) & 0xf, (color->green)      & 0xf,
1563                                 (color->blue >> 12)  & 0xf, (color->blue >> 8)  & 0xf,
1564                                 (color->blue >>  4)  & 0xf, (color->blue)       & 0xf);
1565 }
1566
1567 gchar *
1568 modest_text_utils_text_buffer_get_text (GtkTextBuffer *buffer)
1569 {
1570         GtkTextIter start, end;
1571         gchar *slice, *current;
1572         GString *result = g_string_new ("");
1573
1574         g_return_val_if_fail (buffer && GTK_IS_TEXT_BUFFER (buffer), NULL);
1575         
1576         gtk_text_buffer_get_start_iter (buffer, &start);
1577         gtk_text_buffer_get_end_iter (buffer, &end);
1578
1579         slice = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
1580         current = slice;
1581
1582         while (current && current != '\0') {
1583                 if (g_utf8_get_char (current) == 0xFFFC) {
1584                         result = g_string_append_c (result, ' ');
1585                         current = g_utf8_next_char (current);
1586                 } else {
1587                         gchar *next = g_utf8_strchr (current, -1, 0xFFFC);
1588                         if (next == NULL) {
1589                                 result = g_string_append (result, current);
1590                         } else {
1591                                 result = g_string_append_len (result, current, next - current);
1592                         }
1593                         current = next;
1594                 }
1595         }
1596         g_free (slice);
1597
1598         return g_string_free (result, FALSE);
1599         
1600 }
1601
1602 gboolean
1603 modest_text_utils_is_forbidden_char (const gchar character,
1604                                      ModestTextUtilsForbiddenCharType type)
1605 {
1606         gint i, len;
1607         const gchar *forbidden_chars = NULL;
1608         
1609         /* We need to get the length in the switch because the
1610            compiler needs to know the size at compile time */
1611         switch (type) {
1612         case ACCOUNT_TITLE_FORBIDDEN_CHARS:
1613                 forbidden_chars = account_title_forbidden_chars;
1614                 len = G_N_ELEMENTS (account_title_forbidden_chars);
1615                 break;
1616         case FOLDER_NAME_FORBIDDEN_CHARS:
1617                 forbidden_chars = folder_name_forbidden_chars;
1618                 len = G_N_ELEMENTS (folder_name_forbidden_chars);
1619                 break;
1620         case USER_NAME_FORBIDDEN_NAMES:
1621                 forbidden_chars = user_name_forbidden_chars;
1622                 len = G_N_ELEMENTS (user_name_forbidden_chars);
1623                 break;
1624         default:
1625                 g_return_val_if_reached (TRUE);
1626         }
1627
1628         for (i = 0; i < len ; i++)
1629                 if (forbidden_chars[i] == character)
1630                         return TRUE;
1631
1632         return FALSE; /* it's valid! */
1633 }