* Allow opening multiple viewers in nested messages
[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 #define SIGNATURE_MARKER "--"
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, gint offset);
143 static gint     cmp_offsets_reverse     (const url_match_t *match1, const url_match_t *match2);
144 static GSList*  get_url_matches         (GString *txt, gint offset);
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_MARKER,"\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_MARKER, "\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         /* To prevent possible problems in strftime that could leave
282            garbage in the s variable */
283         if (s)
284                 s[0] = '\0';
285
286         /* does not work on old maemo glib: 
287          *   g_date_set_time_t (&date, timet);
288          */
289         localtime_r (&timet, &tm);
290         return strftime(s, max, fmt, &tm);
291 }
292
293 gchar *
294 modest_text_utils_derived_subject (const gchar *subject, const gchar *prefix)
295 {
296         gchar *tmp, *subject_dup, *retval;
297         gint prefix_len;
298
299         g_return_val_if_fail (prefix, NULL);
300
301         if (!subject || subject[0] == '\0')
302                 subject = _("mail_va_no_subject");
303
304         subject_dup = g_strdup (subject);
305         tmp = g_strchug (subject_dup);
306
307         /* We do not want things like "Re: Re: Re:" or "Fw: Fw:" so
308            delete the previous ones */
309         prefix_len = strlen (prefix);
310         do {
311                 if (g_str_has_prefix (tmp, prefix)) {
312                         tmp += prefix_len;
313                         tmp = g_strchug (tmp);
314                 } else {
315                         break;
316                 }
317         } while (tmp);
318
319         retval = g_strdup_printf ("%s %s", prefix, tmp);
320         g_free (subject_dup);
321
322         return retval;
323 }
324
325 gchar*
326 modest_text_utils_remove_address (const gchar *address_list, const gchar *address)
327 {
328         gchar *dup, *token, *ptr = NULL, *result;
329         GString *filtered_emails;
330         gchar *email_address;
331
332         g_return_val_if_fail (address_list, NULL);
333         
334         if (!address)
335                 return g_strdup (address_list);
336
337         email_address = get_email_from_address (address);
338         
339         /* search for substring */
340         if (!strstr ((const char *) address_list, (const char *) email_address)) {
341                 g_free (email_address);
342                 return g_strdup (address_list);
343         }
344
345         dup = g_strdup (address_list);
346         filtered_emails = g_string_new (NULL);
347         
348         token = strtok_r (dup, ",", &ptr);
349
350         while (token != NULL) {
351                 /* Add to list if not found */
352                 if (!strstr ((const char *) token, (const char *) email_address)) {
353                         if (filtered_emails->len == 0)
354                                 g_string_append_printf (filtered_emails, "%s", g_strstrip (token));
355                         else
356                                 g_string_append_printf (filtered_emails, ",%s", g_strstrip (token));
357                 }
358                 token = strtok_r (NULL, ",", &ptr);
359         }
360         result = filtered_emails->str;
361
362         /* Clean */
363         g_free (email_address);
364         g_free (dup);
365         g_string_free (filtered_emails, FALSE);
366
367         return result;
368 }
369
370
371 gchar*
372 modest_text_utils_remove_duplicate_addresses (const gchar *address_list)
373 {
374         GSList *addresses, *cursor;
375         GHashTable *table;
376         gchar *new_list = NULL;
377         
378         g_return_val_if_fail (address_list, NULL);
379
380         table = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, NULL);
381         addresses = modest_text_utils_split_addresses_list (address_list);
382
383         cursor = addresses;
384         while (cursor) {
385                 const gchar* address = (const gchar*)cursor->data;
386
387                 /* We need only the email to just compare it and not
388                    the full address which would make "a <a@a.com>"
389                    different from "a@a.com" */
390                 const gchar *email = get_email_from_address (address);
391
392                 /* ignore the address if already seen */
393                 if (g_hash_table_lookup (table, email) == 0) {
394                         gchar *tmp;
395
396                         /* Include the full address and not only the
397                            email in the returned list */
398                         if (!new_list) {
399                                 tmp = g_strdup (address);
400                         } else {
401                                 tmp = g_strjoin (",", new_list, address, NULL);
402                                 g_free (new_list);
403                         }
404                         new_list = tmp;
405                         
406                         g_hash_table_insert (table, (gchar*)email, GINT_TO_POINTER(1));
407                 }
408                 cursor = g_slist_next (cursor);
409         }
410
411         g_hash_table_unref (table);
412         g_slist_foreach (addresses, (GFunc)g_free, NULL);
413         g_slist_free (addresses);
414
415         return new_list;
416 }
417
418
419 static void
420 modest_text_utils_convert_buffer_to_html_start (GString *html, const gchar *data, gssize n)
421 {
422         guint           i;
423         gboolean        space_seen = FALSE;
424         guint           break_dist = 0; /* distance since last break point */
425
426         if (n == -1)
427                 n = strlen (data);
428
429         /* replace with special html chars where needed*/
430         for (i = 0; i != n; ++i)  {
431                 guchar kar = data[i];
432                 
433                 if (space_seen && kar != ' ') {
434                         g_string_append_c (html, ' ');
435                         space_seen = FALSE;
436                 }
437                 
438                 /* we artificially insert a breakpoint (newline)
439                  * after 256, to make sure our lines are not so long
440                  * they will DOS the regexping later
441                  * Also, check that kar is ASCII to make sure that we
442                  * don't break a UTF8 char in two
443                  */
444                 if (++break_dist >= 256 && kar < 127) {
445                         g_string_append_c (html, '\n');
446                         break_dist = 0;
447                 }
448                 
449                 switch (kar) {
450                 case 0:
451                 case MARK_AMP:
452                 case MARK_AMP_URI:      
453                         /* this is a temp place holder for '&'; we can only
454                                 * set the real '&' after hyperlink translation, otherwise
455                                 * we might screw that up */
456                         break; /* ignore embedded \0s and MARK_AMP */   
457                 case '<'  : g_string_append (html, MARK_AMP_STR "lt;");   break;
458                 case '>'  : g_string_append (html, MARK_AMP_STR "gt;");   break;
459                 case '&'  : g_string_append (html, MARK_AMP_URI_STR "amp;");  break; /* special case */
460                 case '"'  : g_string_append (html, MARK_AMP_STR "quot;");  break;
461
462                 /* don't convert &apos; --> wpeditor will try to re-convert it... */    
463                 //case '\'' : g_string_append (html, "&apos;"); break;
464                 case '\n' : g_string_append (html, "<br>\n");break_dist= 0; break;
465                 case '\t' : g_string_append (html, MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp;" MARK_AMP_STR "nbsp; ");
466                         break_dist=0; break; /* note the space at the end*/
467                 case ' ':
468                         break_dist = 0;
469                         if (space_seen) { /* second space in a row */
470                                 g_string_append (html, "&nbsp; ");
471                                 space_seen = FALSE;
472                         } else
473                                 space_seen = TRUE;
474                         break;
475                 default:
476                         g_string_append_c (html, kar);
477                 }
478         }
479 }
480
481
482 static void
483 modest_text_utils_convert_buffer_to_html_finish (GString *html)
484 {
485         int i;
486         /* replace all our MARK_AMPs with real ones */
487         for (i = 0; i != html->len; ++i)
488                 if ((html->str)[i] == MARK_AMP || (html->str)[i] == MARK_AMP_URI)
489                         (html->str)[i] = '&';
490 }
491
492
493 gchar*
494 modest_text_utils_convert_to_html (const gchar *data)
495 {
496         GString         *html;      
497         gsize           len;
498
499         g_return_val_if_fail (data, NULL);
500         
501         if (!data)
502                 return NULL;
503
504         len = strlen (data);
505         html = g_string_sized_new (1.5 * len);  /* just a  guess... */
506
507         g_string_append_printf (html,
508                                 "<html><head>"
509                                 "<meta http-equiv=\"content-type\" content=\"text/html; charset=utf8\">"
510                                 "</head>"
511                                 "<body>");
512
513         modest_text_utils_convert_buffer_to_html_start (html, data, -1);
514         
515         g_string_append (html, "</body></html>");
516
517         if (len <= HYPERLINKIFY_MAX_LENGTH)
518                 hyperlinkify_plain_text (html, 0);
519
520         modest_text_utils_convert_buffer_to_html_finish (html);
521         
522         return g_string_free (html, FALSE);
523 }
524
525 gchar *
526 modest_text_utils_convert_to_html_body (const gchar *data, gssize n, gboolean hyperlinkify)
527 {
528         GString         *html;      
529
530         g_return_val_if_fail (data, NULL);
531
532         if (!data)
533                 return NULL;
534
535         if (n == -1) 
536                 n = strlen (data);
537         html = g_string_sized_new (1.5 * n);    /* just a  guess... */
538
539         modest_text_utils_convert_buffer_to_html_start (html, data, n);
540
541         if (hyperlinkify && (n < HYPERLINKIFY_MAX_LENGTH))
542                 hyperlinkify_plain_text (html, 0);
543
544         modest_text_utils_convert_buffer_to_html_finish (html);
545         
546         return g_string_free (html, FALSE);
547 }
548
549 void
550 modest_text_utils_get_addresses_indexes (const gchar *addresses, GSList **start_indexes, GSList **end_indexes)
551 {
552         gchar *current, *start, *last_blank;
553         gint start_offset = 0, current_offset = 0;
554
555         g_return_if_fail (start_indexes != NULL);
556         g_return_if_fail (end_indexes != NULL);
557
558         start = (gchar *) addresses;
559         current = start;
560         last_blank = start;
561
562         while (*current != '\0') {
563                 if ((start == current)&&((*current == ' ')||(*current == ',')||(*current == ';'))) {
564                         start = g_utf8_next_char (start);
565                         start_offset++;
566                         last_blank = current;
567                 } else if ((*current == ',')||(*current == ';')) {
568                         gint *start_index, *end_index;
569                         start_index = g_new0(gint, 1);
570                         end_index = g_new0(gint, 1);
571                         *start_index = start_offset;
572                         *end_index = current_offset;
573                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
574                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
575                         start = g_utf8_next_char (current);
576                         start_offset = current_offset + 1;
577                         last_blank = start;
578                 } else if (*current == '"') {
579                         current = g_utf8_next_char (current);
580                         current_offset ++;
581                         while ((*current != '"')&&(*current != '\0')) {
582                                 current = g_utf8_next_char (current);
583                                 current_offset ++;
584                         }
585                 }
586                                 
587                 current = g_utf8_next_char (current);
588                 current_offset ++;
589         }
590
591         if (start != current) {
592                         gint *start_index, *end_index;
593                         start_index = g_new0(gint, 1);
594                         end_index = g_new0(gint, 1);
595                         *start_index = start_offset;
596                         *end_index = current_offset;
597                         *start_indexes = g_slist_prepend (*start_indexes, start_index);
598                         *end_indexes = g_slist_prepend (*end_indexes, end_index);
599         }
600         
601         *start_indexes = g_slist_reverse (*start_indexes);
602         *end_indexes = g_slist_reverse (*end_indexes);
603
604         return;
605 }
606
607
608 GSList *
609 modest_text_utils_split_addresses_list (const gchar *addresses)
610 {
611         GSList *head;
612         const gchar *my_addrs = addresses;
613         const gchar *end;
614         gchar *addr;
615
616         g_return_val_if_fail (addresses, NULL);
617         
618         /* skip any space, ',', ';' at the start */
619         while (my_addrs && (my_addrs[0] == ' ' || my_addrs[0] == ',' || my_addrs[0] == ';'))
620                ++my_addrs;
621
622         /* are we at the end of addresses list? */
623         if (!my_addrs[0])
624                 return NULL;
625         
626         /* nope, we are at the start of some address
627          * now, let's find the end of the address */
628         end = my_addrs + 1;
629         while (end[0] && end[0] != ',' && end[0] != ';')
630                 ++end;
631
632         /* we got the address; copy it and remove trailing whitespace */
633         addr = g_strndup (my_addrs, end - my_addrs);
634         g_strchomp (addr);
635
636         head = g_slist_append (NULL, addr);
637         head->next = modest_text_utils_split_addresses_list (end); /* recurse */
638
639         return head;
640 }
641
642
643 void
644 modest_text_utils_address_range_at_position (const gchar *recipients_list,
645                                              guint position,
646                                              guint *start,
647                                              guint *end)
648 {
649         gchar *current = NULL;
650         gint range_start = 0;
651         gint range_end = 0;
652         gint index;
653         gboolean is_quoted = FALSE;
654
655         g_return_if_fail (recipients_list);
656         g_return_if_fail (position < g_utf8_strlen(recipients_list, -1));
657                 
658         index = 0;
659         for (current = (gchar *) recipients_list; *current != '\0';
660              current = g_utf8_find_next_char (current, NULL)) {
661                 gunichar c = g_utf8_get_char (current);
662
663                 if ((c == ',') && (!is_quoted)) {
664                         if (index < position) {
665                                 range_start = index + 1;
666                         } else {
667                                 break;
668                         }
669                 } else if (c == '\"') {
670                         is_quoted = !is_quoted;
671                 } else if ((c == ' ') &&(range_start == index)) {
672                         range_start ++;
673                 }
674                 index ++;
675                 range_end = index;
676         }
677
678         if (start)
679                 *start = range_start;
680         if (end)
681                 *end = range_end;
682 }
683
684 gchar *
685 modest_text_utils_address_with_standard_length (const gchar *recipients_list)
686 {
687         gchar ** splitted;
688         gchar ** current;
689         GString *buffer = g_string_new ("");
690
691         splitted = g_strsplit (recipients_list, "\n", 0);
692         current = splitted;
693         while (*current) {
694                 gchar *line;
695                 if (current != splitted)
696                         buffer = g_string_append_c (buffer, '\n');
697                 line = g_strndup (*splitted, 1000);
698                 buffer = g_string_append (buffer, line);
699                 g_free (line);
700                 current++;
701         }
702
703         g_strfreev (splitted);
704
705         return g_string_free (buffer, FALSE);
706 }
707
708
709 /* ******************************************************************* */
710 /* ************************* UTILIY FUNCTIONS ************************ */
711 /* ******************************************************************* */
712
713 static GString *
714 get_next_line (const gchar * b, const gsize blen, const gchar * iter)
715 {
716         GString *gs;
717         const gchar *i0;
718         
719         if (iter > b + blen)
720                 return g_string_new("");
721         
722         i0 = iter;
723         while (iter[0]) {
724                 if (iter[0] == '\n')
725                         break;
726                 iter++;
727         }
728         gs = g_string_new_len (i0, iter - i0);
729         return gs;
730 }
731 static int
732 get_indent_level (const char *l)
733 {
734         int indent = 0;
735
736         while (l[0]) {
737                 if (l[0] == '>') {
738                         indent++;
739                         if (l[1] == ' ') {
740                                 l++;
741                         }
742                 } else {
743                         break;
744                 }
745                 l++;
746
747         }
748
749         /*      if we hit the signature marker "-- ", we return -(indent + 1). This
750          *      stops reformatting.
751          */
752         if (strcmp (l, "-- ") == 0) {
753                 return -1 - indent;
754         } else {
755                 return indent;
756         }
757 }
758
759 static void
760 unquote_line (GString * l)
761 {
762         gchar *p;
763
764         p = l->str;
765         while (p[0]) {
766                 if (p[0] == '>') {
767                         if (p[1] == ' ') {
768                                 p++;
769                         }
770                 } else {
771                         break;
772                 }
773                 p++;
774         }
775         g_string_erase (l, 0, p - l->str);
776 }
777
778 static void
779 append_quoted (GString * buf, int indent, const GString * str,
780                const int cutpoint)
781 {
782         int i;
783
784         indent = indent < 0 ? abs (indent) - 1 : indent;
785         for (i = 0; i <= indent; i++) {
786                 g_string_append (buf, "> ");
787         }
788         if (cutpoint > 0) {
789                 g_string_append_len (buf, str->str, cutpoint);
790         } else {
791                 g_string_append (buf, str->str);
792         }
793         g_string_append (buf, "\n");
794 }
795
796 static int
797 get_breakpoint_utf8 (const gchar * s, gint indent, const gint limit)
798 {
799         gint index = 0;
800         const gchar *pos, *last;
801         gunichar *uni;
802
803         indent = indent < 0 ? abs (indent) - 1 : indent;
804
805         last = NULL;
806         pos = s;
807         uni = g_utf8_to_ucs4_fast (s, -1, NULL);
808         while (pos[0]) {
809                 if ((index + 2 * indent > limit) && last) {
810                         g_free (uni);
811                         return last - s;
812                 }
813                 if (g_unichar_isspace (uni[index])) {
814                         last = pos;
815                 }
816                 pos = g_utf8_next_char (pos);
817                 index++;
818         }
819         g_free (uni);
820         return strlen (s);
821 }
822
823 static int
824 get_breakpoint_ascii (const gchar * s, const gint indent, const gint limit)
825 {
826         gint i, last;
827
828         last = strlen (s);
829         if (last + 2 * indent < limit)
830                 return last;
831
832         for (i = strlen (s); i > 0; i--) {
833                 if (s[i] == ' ') {
834                         if (i + 2 * indent <= limit) {
835                                 return i;
836                         } else {
837                                 last = i;
838                         }
839                 }
840         }
841         return last;
842 }
843
844 static int
845 get_breakpoint (const gchar * s, const gint indent, const gint limit)
846 {
847
848         if (g_utf8_validate (s, -1, NULL)) {
849                 return get_breakpoint_utf8 (s, indent, limit);
850         } else {                /* assume ASCII */
851                 //g_warning("invalid UTF-8 in msg");
852                 return get_breakpoint_ascii (s, indent, limit);
853         }
854 }
855
856 static gchar *
857 cite (const time_t sent_date, const gchar *from)
858 {
859         return g_strdup (_("mcen_ia_editor_original_message"));
860 }
861
862 static gchar *
863 quoted_attachments (GList *attachments)
864 {
865         GList *node = NULL;
866         GString *result = g_string_new ("");
867         for (node = attachments; node != NULL; node = g_list_next (node)) {
868                 gchar *filename = (gchar *) node->data;
869                 g_string_append_printf ( result, "%s %s\n", _("mcen_ia_editor_attach_filename"), filename);
870         }
871
872         return g_string_free (result, FALSE);
873
874 }
875
876 static gchar *
877 modest_text_utils_quote_plain_text (const gchar *text, 
878                                     const gchar *cite, 
879                                     const gchar *signature,
880                                     GList *attachments,
881                                     int limit)
882 {
883         const gchar *iter;
884         gint indent, breakpoint, rem_indent = 0;
885         GString *q, *l, *remaining;
886         gsize len;
887         gchar *attachments_string = NULL;
888
889         q = g_string_new ("");
890
891         if (signature != NULL) {
892                 q = g_string_append (q, "\n--\n");
893                 q = g_string_append (q, signature);
894         }
895
896         q = g_string_append (q, "\n");
897         q = g_string_append (q, cite);
898         q = g_string_append_c (q, '\n');
899
900         /* remaining will store the rest of the line if we have to break it */
901         remaining = g_string_new ("");
902
903         iter = text;
904         len = strlen(text);
905         do {
906                 l = get_next_line (text, len, iter);
907                 iter = iter + l->len + 1;
908                 indent = get_indent_level (l->str);
909                 unquote_line (l);
910
911                 if (remaining->len) {
912                         if (l->len && indent == rem_indent) {
913                                 g_string_prepend (l, " ");
914                                 g_string_prepend (l, remaining->str);
915                         } else {
916                                 do {
917                                         breakpoint =
918                                                 get_breakpoint (remaining->str,
919                                                                 rem_indent,
920                                                                 limit);
921                                         append_quoted (q, rem_indent,
922                                                        remaining, breakpoint);
923                                         g_string_erase (remaining, 0,
924                                                         breakpoint);
925                                         if (remaining->str[0] == ' ') {
926                                                 g_string_erase (remaining, 0,
927                                                                 1);
928                                         }
929                                 } while (remaining->len);
930                         }
931                 }
932                 g_string_free (remaining, TRUE);
933                 breakpoint = get_breakpoint (l->str, indent, limit);
934                 remaining = g_string_new (l->str + breakpoint);
935                 if (remaining->str[0] == ' ') {
936                         g_string_erase (remaining, 0, 1);
937                 }
938                 rem_indent = indent;
939                 append_quoted (q, indent, l, breakpoint);
940                 g_string_free (l, TRUE);
941         } while ((iter < text + len) || (remaining->str[0]));
942
943         attachments_string = quoted_attachments (attachments);
944         q = g_string_append (q, attachments_string);
945         g_free (attachments_string);
946
947         return g_string_free (q, FALSE);
948 }
949
950 static void
951 quote_html_add_to_gstring (GString *string,
952                            const gchar *text)
953 {
954         if (text && strcmp (text, "")) {
955                 gchar *html_text = modest_text_utils_convert_to_html_body (text, -1, TRUE);
956                 g_string_append_printf (string, "%s<br/>", html_text);
957                 g_free (html_text);
958         }
959 }
960
961 static gchar*
962 modest_text_utils_quote_html (const gchar *text, 
963                               const gchar *cite, 
964                               const gchar *signature,
965                               GList *attachments,
966                               int limit)
967 {
968         GString *result_string;
969
970         result_string = 
971                 g_string_new ( \
972                               "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" \
973                               "<html>\n"                                \
974                               "<body>\n<br/>\n");
975
976         if (text || cite || signature) {
977                 g_string_append (result_string, "<pre>\n");
978                 if (signature) {
979                         quote_html_add_to_gstring (result_string, SIGNATURE_MARKER);
980                         quote_html_add_to_gstring (result_string, signature);
981                 }
982                 quote_html_add_to_gstring (result_string, cite);
983                 quote_html_add_to_gstring (result_string, text);
984                 if (attachments) {
985                         gchar *attachments_string = quoted_attachments (attachments);
986                         quote_html_add_to_gstring (result_string, attachments_string);
987                         g_free (attachments_string);
988                 }
989                 g_string_append (result_string, "</pre>");
990         }
991         g_string_append (result_string, "</body>");
992         g_string_append (result_string, "</html>");
993
994         return g_string_free (result_string, FALSE);
995 }
996
997 static gint 
998 cmp_offsets_reverse (const url_match_t *match1, const url_match_t *match2)
999 {
1000         return match2->offset - match1->offset;
1001 }
1002
1003 static gint url_matches_block = 0;
1004 static url_match_pattern_t patterns[] = MAIL_VIEWER_URL_MATCH_PATTERNS;
1005
1006
1007 static gboolean
1008 compile_patterns ()
1009 {
1010         guint i;
1011         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1012         for (i = 0; i != pattern_num; ++i) {
1013                 patterns[i].preg = g_slice_new0 (regex_t);
1014                 
1015                 /* this should not happen */
1016                 if (regcomp (patterns[i].preg, patterns[i].regex,
1017                              REG_ICASE|REG_EXTENDED|REG_NEWLINE) != 0) {
1018                         g_warning ("%s: error in regexp:\n%s\n", __FUNCTION__, patterns[i].regex);
1019                         return FALSE;
1020                 }
1021         }
1022         return TRUE;
1023 }
1024
1025 static void 
1026 free_patterns ()
1027 {
1028         guint i;
1029         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1030         for (i = 0; i != pattern_num; ++i) {
1031                 regfree (patterns[i].preg);
1032                 g_slice_free  (regex_t, patterns[i].preg);
1033         } /* don't free patterns itself -- it's static */
1034 }
1035
1036 void
1037 modest_text_utils_hyperlinkify_begin (void)
1038 {
1039         if (url_matches_block == 0)
1040                 compile_patterns ();
1041         url_matches_block ++;
1042 }
1043
1044 void
1045 modest_text_utils_hyperlinkify_end (void)
1046 {
1047         url_matches_block--;
1048         if (url_matches_block <= 0)
1049                 free_patterns ();
1050 }
1051
1052
1053 static GSList*
1054 get_url_matches (GString *txt, gint offset)
1055 {
1056         regmatch_t rm;
1057         guint rv, i, tmp_offset = 0;
1058         GSList *match_list = NULL;
1059
1060         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1061
1062         /* initalize the regexps */
1063         modest_text_utils_hyperlinkify_begin ();
1064
1065         /* find all the matches */
1066         for (i = 0; i != pattern_num; ++i) {
1067                 tmp_offset     = offset;        
1068                 while (1) {
1069                         url_match_t *match;
1070                         gboolean is_submatch;
1071                         GSList *cursor;
1072                         
1073                         if ((rv = regexec (patterns[i].preg, txt->str + tmp_offset, 1, &rm, 0)) != 0) {
1074                                 g_return_val_if_fail (rv == REG_NOMATCH, NULL); /* this should not happen */
1075                                 break; /* try next regexp */ 
1076                         }
1077                         if (rm.rm_so == -1)
1078                                 break;
1079                         
1080                         is_submatch = FALSE;
1081                         /* check  old matches to see if this has already been matched */
1082                         cursor = match_list;
1083                         while (cursor && !is_submatch) {
1084                                 const url_match_t *old_match =
1085                                         (const url_match_t *) cursor->data;
1086                                 guint new_offset = tmp_offset + rm.rm_so;
1087                                 is_submatch = (new_offset >  old_match->offset &&
1088                                                new_offset <  old_match->offset + old_match->len);
1089                                 cursor = g_slist_next (cursor);
1090                         }
1091
1092                         if (!is_submatch) {
1093                                 /* make a list of our matches (<offset, len, prefix> tupels)*/
1094                                 match = g_slice_new (url_match_t);
1095                                 match->offset = tmp_offset + rm.rm_so;
1096                                 match->len    = rm.rm_eo - rm.rm_so;
1097                                 match->prefix = patterns[i].prefix;
1098                                 match_list = g_slist_prepend (match_list, match);
1099                         }               
1100                         tmp_offset += rm.rm_eo;
1101                 }
1102         }
1103
1104         modest_text_utils_hyperlinkify_end ();
1105         
1106         /* now sort the list, so the matches are in reverse order of occurence.
1107          * that way, we can do the replacements starting from the end, so we don't need
1108          * to recalculate the offsets
1109          */
1110         match_list = g_slist_sort (match_list,
1111                                    (GCompareFunc)cmp_offsets_reverse); 
1112         return match_list;      
1113 }
1114
1115
1116
1117 /* replace all occurences of needle in haystack with repl*/
1118 static gchar*
1119 replace_string (const gchar *haystack, const gchar *needle, gchar repl)
1120 {
1121         gchar *str, *cursor;
1122
1123         if (!haystack || !needle || strlen(needle) == 0)
1124                 return haystack ? g_strdup(haystack) : NULL;
1125         
1126         str = g_strdup (haystack);
1127
1128         for (cursor = str; cursor && *cursor; ++cursor) {
1129                 if (g_str_has_prefix (cursor, needle)) {
1130                         cursor[0] = repl;
1131                         memmove (cursor + 1,
1132                                  cursor + strlen (needle),
1133                                  strlen (cursor + strlen (needle)) + 1);
1134                 }
1135         }
1136         
1137         return str;
1138 }
1139
1140 static void
1141 hyperlinkify_plain_text (GString *txt, gint offset)
1142 {
1143         GSList *cursor;
1144         GSList *match_list = get_url_matches (txt, offset);
1145
1146         /* we will work backwards, so the offsets stay valid */
1147         for (cursor = match_list; cursor; cursor = cursor->next) {
1148
1149                 url_match_t *match = (url_match_t*) cursor->data;
1150                 gchar *url  = g_strndup (txt->str + match->offset, match->len);
1151                 gchar *repl = NULL; /* replacement  */
1152
1153                 /* the string still contains $(MARK_AMP_URI_STR)"amp;" for each
1154                  * '&' in the original, because of the text->html conversion.
1155                  * in the href-URL (and only there), we must convert that back to
1156                  * '&'
1157                  */
1158                 gchar *href_url = replace_string (url, MARK_AMP_URI_STR "amp;", '&');
1159                 
1160                 /* the prefix is NULL: use the one that is already there */
1161                 repl = g_strdup_printf ("<a href=\"%s%s\">%s</a>",
1162                                         match->prefix ? match->prefix : EMPTY_STRING, 
1163                                         href_url, url);
1164
1165                 /* replace the old thing with our hyperlink
1166                  * replacement thing */
1167                 g_string_erase  (txt, match->offset, match->len);
1168                 g_string_insert (txt, match->offset, repl);
1169                 
1170                 g_free (url);
1171                 g_free (repl);
1172                 g_free (href_url);
1173
1174                 g_slice_free (url_match_t, match);      
1175         }
1176         
1177         g_slist_free (match_list);
1178 }
1179
1180 void
1181 modest_text_utils_hyperlinkify (GString *string_buffer)
1182 {
1183         gchar *after_body;
1184         gint offset = 0;
1185
1186         after_body = strstr (string_buffer->str, "<body>");
1187         if (after_body != NULL)
1188                 offset = after_body - string_buffer->str;
1189         hyperlinkify_plain_text (string_buffer, offset);
1190 }
1191
1192
1193 /* for optimization reasons, we change the string in-place */
1194 void
1195 modest_text_utils_get_display_address (gchar *address)
1196 {
1197         int i;
1198
1199         g_return_if_fail (address);
1200         
1201         if (!address)
1202                 return;
1203         
1204         /* should not be needed, and otherwise, we probably won't screw up the address
1205          * more than it already is :) 
1206          * g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL);
1207          * */
1208         
1209         /* remove leading whitespace */
1210         if (address[0] == ' ')
1211                 g_strchug (address);
1212                 
1213         for (i = 0; address[i]; ++i) {
1214                 if (address[i] == '<') {
1215                         if (G_UNLIKELY(i == 0))
1216                                 return; /* there's nothing else, leave it */
1217                         else {
1218                                 address[i] = '\0'; /* terminate the string here */
1219                                 return;
1220                         }
1221                 }
1222         }
1223 }
1224
1225
1226
1227
1228
1229 gchar *
1230 modest_text_utils_get_email_address (const gchar *full_address)
1231 {
1232         const gchar *left, *right;
1233
1234         g_return_val_if_fail (full_address, NULL);
1235         
1236         if (!full_address)
1237                 return NULL;
1238         
1239         g_return_val_if_fail (g_utf8_validate (full_address, -1, NULL), NULL);
1240         
1241         left = g_strrstr_len (full_address, strlen(full_address), "<");
1242         if (left == NULL)
1243                 return g_strdup (full_address);
1244
1245         right = g_strstr_len (left, strlen(left), ">");
1246         if (right == NULL)
1247                 return g_strdup (full_address);
1248
1249         return g_strndup (left + 1, right - left - 1);
1250 }
1251
1252 gint 
1253 modest_text_utils_get_subject_prefix_len (const gchar *sub)
1254 {
1255         gint prefix_len = 0;    
1256
1257         g_return_val_if_fail (sub, 0);
1258
1259         if (!sub)
1260                 return 0;
1261         
1262         /* optimization: "Re", "RE", "re","Fwd", "FWD", "fwd","FW","Fw", "fw" */
1263         if (sub[0] != 'R' && sub[0] != 'F' && sub[0] != 'r' && sub[0] != 'f')
1264                 return 0;
1265         else if (sub[0] && sub[1] != 'e' && sub[1] != 'E' && sub[1] != 'w' && sub[1] != 'W')
1266                 return 0;
1267
1268         prefix_len = 2;
1269         if (sub[2] == 'd')
1270                 ++prefix_len;
1271
1272         /* skip over a [...] block */
1273         if (sub[prefix_len] == '[') {
1274                 int c = prefix_len + 1;
1275                 while (sub[c] && sub[c] != ']')
1276                         ++c;
1277                 if (!sub[c])
1278                         return 0; /* no end to the ']' found */
1279                 else
1280                         prefix_len = c + 1;
1281         }
1282
1283         /* did we find the ':' ? */
1284         if (sub[prefix_len] == ':') {
1285                 ++prefix_len;
1286                 if (sub[prefix_len] == ' ')
1287                         ++prefix_len;
1288                 prefix_len += modest_text_utils_get_subject_prefix_len (sub + prefix_len);
1289 /*              g_warning ("['%s','%s']", sub, (char*) sub + prefix_len); */
1290                 return prefix_len;
1291         } else
1292                 return 0;
1293 }
1294
1295
1296 gint
1297 modest_text_utils_utf8_strcmp (const gchar* s1, const gchar *s2, gboolean insensitive)
1298 {
1299
1300 /* work even when s1 and/or s2 == NULL */
1301         if (G_UNLIKELY(s1 == s2))
1302                 return 0;
1303         if (G_UNLIKELY(!s1))
1304                 return -1;
1305         if (G_UNLIKELY(!s2))
1306                 return 1;
1307         
1308         /* if it's not case sensitive */
1309         if (!insensitive) {
1310
1311                 /* optimization: shortcut if first char is ascii */ 
1312                 if (((s1[0] & 0x80)== 0) && ((s2[0] & 0x80) == 0) &&
1313                     (s1[0] != s2[0])) 
1314                         return s1[0] - s2[0];
1315                 
1316                 return g_utf8_collate (s1, s2);
1317
1318         } else {
1319                 gint result;
1320                 gchar *n1, *n2;
1321
1322                 /* optimization: shortcut if first char is ascii */ 
1323                 if (((s1[0] & 0x80) == 0) && ((s2[0] & 0x80) == 0) &&
1324                     (s1[0] != s2[0])) 
1325                         return tolower(s1[0]) - tolower(s2[0]);
1326                 
1327                 n1 = g_utf8_strdown (s1, -1);
1328                 n2 = g_utf8_strdown (s2, -1);
1329                 
1330                 result = g_utf8_collate (n1, n2);
1331                 
1332                 g_free (n1);
1333                 g_free (n2);
1334         
1335                 return result;
1336         }
1337 }
1338
1339
1340 const gchar*
1341 modest_text_utils_get_display_date (time_t date)
1342 {
1343 #define DATE_BUF_SIZE 64 
1344         static gchar date_buf[DATE_BUF_SIZE];
1345         
1346         /* calculate the # of days since epoch for 
1347          * for today and for the date provided 
1348          * based on idea from pvanhoof */
1349         int day      = time(NULL) / (24 * 60 * 60);
1350         int date_day = date       / (24 * 60 * 60);
1351
1352         /* if it's today, show the time, if it's not today, show the date instead */
1353
1354         if (day == date_day) /* is the date today? */
1355                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%X", date);
1356         else 
1357                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%x", date); 
1358
1359         return date_buf; /* this is a static buffer, don't free! */
1360 }
1361
1362
1363
1364 gboolean
1365 modest_text_utils_validate_folder_name (const gchar *folder_name)
1366 {
1367         /* based on http://msdn2.microsoft.com/en-us/library/aa365247.aspx,
1368          * with some extras */
1369         
1370         guint len;
1371         gint i;
1372         const gchar **cursor = NULL;
1373         const gchar *forbidden_names[] = { /* windows does not like these */
1374                 "CON", "PRN", "AUX", "NUL", ".", "..", "cur", "tmp", "new", 
1375                 NULL /* cur, tmp, new are reserved for Maildir */
1376         };
1377         
1378         /* cannot be NULL */
1379         if (!folder_name) 
1380                 return FALSE;
1381
1382         /* cannot be empty */
1383         len = strlen(folder_name);
1384         if (len == 0)
1385                 return FALSE;
1386         
1387         /* cannot start with a dot, vfat does not seem to like that */
1388         if (folder_name[0] == '.')
1389                 return FALSE;
1390
1391         /* cannot start or end with a space */
1392         if (g_ascii_isspace(folder_name[0]) || g_ascii_isspace(folder_name[len - 1]))
1393                 return FALSE; 
1394
1395         /* cannot contain a forbidden char */   
1396         for (i = 0; i < len; i++)
1397                 if (modest_text_utils_is_forbidden_char (folder_name[i], FOLDER_NAME_FORBIDDEN_CHARS))
1398                         return FALSE;
1399
1400         /* Cannot contain Windows port numbers. I'd like to use GRegex
1401            but it's still not available in Maemo. sergio */
1402         if (!g_ascii_strncasecmp (folder_name, "LPT", 3) ||
1403             !g_ascii_strncasecmp (folder_name, "COM", 3)) {
1404                 glong val;
1405                 gchar *endptr;
1406
1407                 /* We skip the first 3 characters for the
1408                    comparison */
1409                 val = strtol(folder_name+3, &endptr, 10);
1410
1411                 /* If the conversion to long succeeded then the string
1412                    is not valid for us */
1413                 if (*endptr == '\0')
1414                         return FALSE;
1415                 else
1416                         return TRUE;
1417         }
1418         
1419         /* cannot contain a forbidden word */
1420         if (len <= 4) {
1421                 for (cursor = forbidden_names; cursor && *cursor; ++cursor) {
1422                         if (g_ascii_strcasecmp (folder_name, *cursor) == 0)
1423                                 return FALSE;
1424                 }
1425         }
1426
1427         return TRUE; /* it's valid! */
1428 }
1429
1430
1431
1432 gboolean
1433 modest_text_utils_validate_domain_name (const gchar *domain)
1434 {
1435         gboolean valid = FALSE;
1436         regex_t rx;
1437         const gchar* domain_regex = "^([a-z0-9-]*[a-z0-9]\\.)+[a-z0-9-]*[a-z0-9]$";
1438
1439         g_return_val_if_fail (domain, FALSE);
1440         
1441         if (!domain)
1442                 return FALSE;
1443         
1444         memset (&rx, 0, sizeof(regex_t)); /* coverity wants this... */
1445                 
1446         /* domain name: all alphanum or '-' or '.',
1447          * but beginning/ending in alphanum */  
1448         if (regcomp (&rx, domain_regex, REG_ICASE|REG_EXTENDED|REG_NOSUB)) {
1449                 g_warning ("BUG: error in regexp");
1450                 return FALSE;
1451         }
1452         
1453         valid = (regexec (&rx, domain, 1, NULL, 0) == 0);
1454         regfree (&rx);
1455                 
1456         return valid;
1457 }
1458
1459
1460
1461 gboolean
1462 modest_text_utils_validate_email_address (const gchar *email_address,
1463                                           const gchar **invalid_char_position)
1464 {
1465         int count = 0;
1466         const gchar *c = NULL, *domain = NULL;
1467         static gchar *rfc822_specials = "()<>@,;:\\\"[]&";
1468         
1469         if (invalid_char_position)
1470                 *invalid_char_position = NULL;
1471         
1472         g_return_val_if_fail (email_address, FALSE);
1473         
1474         /* check that the email adress contains exactly one @ */
1475         if (!strstr(email_address, "@") || 
1476                         (strstr(email_address, "@") != g_strrstr(email_address, "@"))) 
1477                 return FALSE;
1478         
1479         /* first we validate the name portion (name@domain) */
1480         for (c = email_address;  *c;  c++) {
1481                 if (*c == '\"' && 
1482                     (c == email_address || 
1483                      *(c - 1) == '.' || 
1484                      *(c - 1) == '\"')) {
1485                         while (*++c) {
1486                                 if (*c == '\"') 
1487                                         break;
1488                                 if (*c == '\\' && (*++c == ' ')) 
1489                                         continue;
1490                                 if (*c <= ' ' || *c >= 127) 
1491                                         return FALSE;
1492                         }
1493                         if (!*c++) 
1494                                 return FALSE;
1495                         if (*c == '@') 
1496                                 break;
1497                         if (*c != '.') 
1498                                 return FALSE;
1499                         continue;
1500                 }
1501                 if (*c == '@') 
1502                         break;
1503                 if (*c <= ' ' || *c >= 127) 
1504                         return FALSE;
1505                 if (strchr(rfc822_specials, *c)) {
1506                         if (invalid_char_position)
1507                                 *invalid_char_position = c;
1508                         return FALSE;
1509                 }
1510         }
1511         if (c == email_address || *(c - 1) == '.') 
1512                 return FALSE;
1513
1514         /* next we validate the domain portion (name@domain) */
1515         if (!*(domain = ++c)) 
1516                 return FALSE;
1517         do {
1518                 if (*c == '.') {
1519                         if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') 
1520                                 return FALSE;
1521                         count++;
1522                 }
1523                 if (*c <= ' ' || *c >= 127) 
1524                         return FALSE;
1525                 if (strchr(rfc822_specials, *c)) {
1526                         if (invalid_char_position)
1527                                 *invalid_char_position = c;
1528                         return FALSE;
1529                 }
1530         } while (*++c);
1531
1532         return (count >= 1) ? TRUE : FALSE;
1533 }
1534
1535 gboolean 
1536 modest_text_utils_validate_recipient (const gchar *recipient, const gchar **invalid_char_position)
1537 {
1538         gchar *stripped, *current;
1539         gchar *right_part;
1540         gboolean has_error = FALSE;
1541
1542         if (invalid_char_position)
1543                 *invalid_char_position = NULL;
1544         
1545         g_return_val_if_fail (recipient, FALSE);
1546         
1547         if (modest_text_utils_validate_email_address (recipient, invalid_char_position))
1548                 return TRUE;
1549
1550         stripped = g_strdup (recipient);
1551         stripped = g_strstrip (stripped);
1552         current = stripped;
1553
1554         if (*current == '\0') {
1555                 g_free (stripped);
1556                 return FALSE;
1557         }
1558
1559         /* quoted string */
1560         if (*current == '\"') {
1561                 current = g_utf8_next_char (current);
1562                 has_error = TRUE;
1563                 for (; *current != '\0'; current = g_utf8_next_char (current)) {
1564                         if (*current == '\\') {
1565                                 /* TODO: This causes a warning, which breaks the build, 
1566                                  * because a gchar cannot be < 0.
1567                                  * murrayc. 
1568                                 if (current[1] <0) {
1569                                         has_error = TRUE;
1570                                         break;
1571                                 }
1572                                 */
1573                         } else if (*current == '\"') {
1574                                 has_error = FALSE;
1575                                 current = g_utf8_next_char (current);
1576                                 break;
1577                         }
1578                 }
1579         } else {
1580                 has_error = TRUE;
1581                 for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) {
1582                         if (*current == '<') {
1583                                 has_error = FALSE;
1584                                 break;
1585                         }
1586                 }
1587         }
1588                 
1589         if (has_error) {
1590                 g_free (stripped);
1591                 return FALSE;
1592         }
1593
1594         right_part = g_strdup (current);
1595         g_free (stripped);
1596         right_part = g_strstrip (right_part);
1597
1598         if (g_str_has_prefix (right_part, "<") &&
1599             g_str_has_suffix (right_part, ">")) {
1600                 gchar *address;
1601                 gboolean valid;
1602
1603                 address = g_strndup (right_part+1, strlen (right_part) - 2);
1604                 g_free (right_part);
1605                 valid = modest_text_utils_validate_email_address (address, invalid_char_position);
1606                 g_free (address);
1607                 return valid;
1608         } else {
1609                 g_free (right_part);
1610                 return FALSE;
1611         }
1612 }
1613
1614
1615 gchar *
1616 modest_text_utils_get_display_size (guint64 size)
1617 {
1618         const guint KB=1024;
1619         const guint MB=1024 * KB;
1620         const guint GB=1024 * MB;
1621
1622         if (size == 0)
1623                 return g_strdup_printf(_FM("sfil_li_size_kb"), 0);
1624         if (0 < size && size < KB)
1625                 return g_strdup_printf (_FM("sfil_li_size_kb"), 1);
1626         else if (KB <= size && size < 100 * KB)
1627                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB);
1628         else if (100*KB <= size && size < MB)
1629                 return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (float) size / MB);
1630         else if (MB <= size && size < 10*MB)
1631                 return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB);
1632         else if (10*MB <= size && size < GB)
1633                 return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB);
1634         else
1635                 return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB); 
1636 }
1637
1638 static gchar *
1639 get_email_from_address (const gchar * address)
1640 {
1641         gchar *left_limit, *right_limit;
1642
1643         left_limit = strstr (address, "<");
1644         right_limit = g_strrstr (address, ">");
1645
1646         if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit))
1647                 return g_strdup (address);
1648         else
1649                 return g_strndup (left_limit + 1, (right_limit - left_limit) - 1);
1650 }
1651
1652 gchar *      
1653 modest_text_utils_get_color_string (GdkColor *color)
1654 {
1655         g_return_val_if_fail (color, NULL);
1656         
1657         return g_strdup_printf ("#%x%x%x%x%x%x%x%x%x%x%x%x",
1658                                 (color->red >> 12)   & 0xf, (color->red >> 8)   & 0xf,
1659                                 (color->red >>  4)   & 0xf, (color->red)        & 0xf,
1660                                 (color->green >> 12) & 0xf, (color->green >> 8) & 0xf,
1661                                 (color->green >>  4) & 0xf, (color->green)      & 0xf,
1662                                 (color->blue >> 12)  & 0xf, (color->blue >> 8)  & 0xf,
1663                                 (color->blue >>  4)  & 0xf, (color->blue)       & 0xf);
1664 }
1665
1666 gchar *
1667 modest_text_utils_text_buffer_get_text (GtkTextBuffer *buffer)
1668 {
1669         GtkTextIter start, end;
1670         gchar *slice, *current;
1671         GString *result = g_string_new ("");
1672
1673         g_return_val_if_fail (buffer && GTK_IS_TEXT_BUFFER (buffer), NULL);
1674         
1675         gtk_text_buffer_get_start_iter (buffer, &start);
1676         gtk_text_buffer_get_end_iter (buffer, &end);
1677
1678         slice = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
1679         current = slice;
1680
1681         while (current && current != '\0') {
1682                 if (g_utf8_get_char (current) == 0xFFFC) {
1683                         result = g_string_append_c (result, ' ');
1684                         current = g_utf8_next_char (current);
1685                 } else {
1686                         gchar *next = g_utf8_strchr (current, -1, 0xFFFC);
1687                         if (next == NULL) {
1688                                 result = g_string_append (result, current);
1689                         } else {
1690                                 result = g_string_append_len (result, current, next - current);
1691                         }
1692                         current = next;
1693                 }
1694         }
1695         g_free (slice);
1696
1697         return g_string_free (result, FALSE);
1698         
1699 }
1700
1701 gboolean
1702 modest_text_utils_is_forbidden_char (const gchar character,
1703                                      ModestTextUtilsForbiddenCharType type)
1704 {
1705         gint i, len;
1706         const gchar *forbidden_chars = NULL;
1707         
1708         /* We need to get the length in the switch because the
1709            compiler needs to know the size at compile time */
1710         switch (type) {
1711         case ACCOUNT_TITLE_FORBIDDEN_CHARS:
1712                 forbidden_chars = account_title_forbidden_chars;
1713                 len = G_N_ELEMENTS (account_title_forbidden_chars);
1714                 break;
1715         case FOLDER_NAME_FORBIDDEN_CHARS:
1716                 forbidden_chars = folder_name_forbidden_chars;
1717                 len = G_N_ELEMENTS (folder_name_forbidden_chars);
1718                 break;
1719         case USER_NAME_FORBIDDEN_NAMES:
1720                 forbidden_chars = user_name_forbidden_chars;
1721                 len = G_N_ELEMENTS (user_name_forbidden_chars);
1722                 break;
1723         default:
1724                 g_return_val_if_reached (TRUE);
1725         }
1726
1727         for (i = 0; i < len ; i++)
1728                 if (forbidden_chars[i] == character)
1729                         return TRUE;
1730
1731         return FALSE; /* it's valid! */
1732 }
1733
1734 gchar *      
1735 modest_text_utils_label_get_selection (GtkLabel *label)
1736 {
1737         gint start, end;
1738         gchar *selection;
1739
1740         if (gtk_label_get_selection_bounds (GTK_LABEL (label), &start, &end)) {
1741                 const gchar *start_offset;
1742                 const gchar *end_offset;
1743                 start_offset = gtk_label_get_text (GTK_LABEL (label));
1744                 start_offset = g_utf8_offset_to_pointer (start_offset, start);
1745                 end_offset = gtk_label_get_text (GTK_LABEL (label));
1746                 end_offset = g_utf8_offset_to_pointer (end_offset, end);
1747                 selection = g_strndup (start_offset, end_offset - start_offset);
1748                 return selection;
1749         } else {
1750                 return g_strdup ("");
1751         }
1752 }
1753
1754 static gboolean
1755 _forward_search_image_char (gunichar ch,
1756                             gpointer userdata)
1757 {
1758         return (ch == 0xFFFC);
1759 }
1760
1761 gboolean
1762 modest_text_utils_buffer_selection_is_valid (GtkTextBuffer *buffer)
1763 {
1764         gboolean result;
1765         GtkTextIter start, end;
1766
1767         g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), FALSE);
1768
1769         result = gtk_text_buffer_get_has_selection (GTK_TEXT_BUFFER (buffer));
1770
1771         /* check there are no images in selection */
1772         if (result) {
1773                 gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
1774                 if (gtk_text_iter_get_char (&start)== 0xFFFC)
1775                         result = FALSE;
1776                 else {
1777                         gtk_text_iter_backward_char (&end);
1778                         if (gtk_text_iter_forward_find_char (&start, _forward_search_image_char,
1779                                                              NULL, &end))
1780                                 result = FALSE;
1781                 }
1782                                     
1783         }
1784
1785         return result;
1786 }
1787
1788 gchar *
1789 modest_text_utils_escape_mnemonics (const gchar *text)
1790 {
1791         const gchar *p;
1792         GString *result = NULL;
1793
1794         if (text == NULL)
1795                 return NULL;
1796
1797         result = g_string_new ("");
1798         for (p = text; *p != '\0'; p++) {
1799                 if (*p == '_')
1800                         result = g_string_append (result, "__");
1801                 else
1802                         result = g_string_append_c (result, *p);
1803         }
1804         
1805         return g_string_free (result, FALSE);
1806 }