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