d3805a1be115610f72c46ff2ee95d441937ae68e
[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         /* 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 ("");
885
886         if (signature != NULL) {
887                 q = g_string_append (q, "\n--\n");
888                 q = g_string_append (q, signature);
889         }
890
891         q = g_string_append (q, "\n");
892         q = g_string_append (q, cite);
893         q = g_string_append_c (q, '\n');
894
895         /* remaining will store the rest of the line if we have to break it */
896         remaining = g_string_new ("");
897
898         iter = text;
899         len = strlen(text);
900         do {
901                 l = get_next_line (text, len, iter);
902                 iter = iter + l->len + 1;
903                 indent = get_indent_level (l->str);
904                 unquote_line (l);
905
906                 if (remaining->len) {
907                         if (l->len && indent == rem_indent) {
908                                 g_string_prepend (l, " ");
909                                 g_string_prepend (l, remaining->str);
910                         } else {
911                                 do {
912                                         breakpoint =
913                                                 get_breakpoint (remaining->str,
914                                                                 rem_indent,
915                                                                 limit);
916                                         append_quoted (q, rem_indent,
917                                                        remaining, breakpoint);
918                                         g_string_erase (remaining, 0,
919                                                         breakpoint);
920                                         if (remaining->str[0] == ' ') {
921                                                 g_string_erase (remaining, 0,
922                                                                 1);
923                                         }
924                                 } while (remaining->len);
925                         }
926                 }
927                 g_string_free (remaining, TRUE);
928                 breakpoint = get_breakpoint (l->str, indent, limit);
929                 remaining = g_string_new (l->str + breakpoint);
930                 if (remaining->str[0] == ' ') {
931                         g_string_erase (remaining, 0, 1);
932                 }
933                 rem_indent = indent;
934                 append_quoted (q, indent, l, breakpoint);
935                 g_string_free (l, TRUE);
936         } while ((iter < text + len) || (remaining->str[0]));
937
938         attachments_string = quoted_attachments (attachments);
939         q = g_string_append (q, attachments_string);
940         g_free (attachments_string);
941
942         return g_string_free (q, FALSE);
943 }
944
945 static void
946 quote_html_add_to_gstring (GString *string,
947                            const gchar *text)
948 {
949         if (text && strcmp (text, "")) {
950                 gchar *html_text = modest_text_utils_convert_to_html_body (text, -1, TRUE);
951                 g_string_append_printf (string, "%s<br/>", html_text);
952                 g_free (html_text);
953         }
954 }
955
956 static gchar*
957 modest_text_utils_quote_html (const gchar *text, 
958                               const gchar *cite, 
959                               const gchar *signature,
960                               GList *attachments,
961                               int limit)
962 {
963         GString *result_string;
964
965         result_string = 
966                 g_string_new ( \
967                               "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n" \
968                               "<html>\n"                                \
969                               "<body>\n<br/>\n");
970
971         if (text || cite || signature) {
972                 g_string_append (result_string, "<pre>\n");
973                 if (signature) {
974                         quote_html_add_to_gstring (result_string, SIGNATURE_MARKER);
975                         quote_html_add_to_gstring (result_string, signature);
976                 }
977                 quote_html_add_to_gstring (result_string, cite);
978                 quote_html_add_to_gstring (result_string, text);
979                 if (attachments) {
980                         gchar *attachments_string = quoted_attachments (attachments);
981                         quote_html_add_to_gstring (result_string, attachments_string);
982                         g_free (attachments_string);
983                 }
984                 g_string_append (result_string, "</pre>");
985         }
986         g_string_append (result_string, "</body>");
987         g_string_append (result_string, "</html>");
988
989         return g_string_free (result_string, FALSE);
990 }
991
992 static gint 
993 cmp_offsets_reverse (const url_match_t *match1, const url_match_t *match2)
994 {
995         return match2->offset - match1->offset;
996 }
997
998 static gboolean url_matches_block = 0;
999 static url_match_pattern_t patterns[] = MAIL_VIEWER_URL_MATCH_PATTERNS;
1000
1001
1002 static gboolean
1003 compile_patterns ()
1004 {
1005         guint i;
1006         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1007         for (i = 0; i != pattern_num; ++i) {
1008                 patterns[i].preg = g_slice_new0 (regex_t);
1009                 
1010                 /* this should not happen */
1011                 if (regcomp (patterns[i].preg, patterns[i].regex,
1012                              REG_ICASE|REG_EXTENDED|REG_NEWLINE) != 0) {
1013                         g_warning ("%s: error in regexp:\n%s\n", __FUNCTION__, patterns[i].regex);
1014                         return FALSE;
1015                 }
1016         }
1017         return TRUE;
1018 }
1019
1020 static void 
1021 free_patterns ()
1022 {
1023         guint i;
1024         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1025         for (i = 0; i != pattern_num; ++i) {
1026                 regfree (patterns[i].preg);
1027                 g_slice_free  (regex_t, patterns[i].preg);
1028         } /* don't free patterns itself -- it's static */
1029 }
1030
1031 void
1032 modest_text_utils_hyperlinkify_begin (void)
1033 {
1034         if (url_matches_block == 0)
1035                 compile_patterns ();
1036         url_matches_block ++;
1037 }
1038
1039 void
1040 modest_text_utils_hyperlinkify_end (void)
1041 {
1042         url_matches_block--;
1043         if (url_matches_block <= 0)
1044                 free_patterns ();
1045 }
1046
1047
1048 static GSList*
1049 get_url_matches (GString *txt, gint offset)
1050 {
1051         regmatch_t rm;
1052         guint rv, i, tmp_offset = 0;
1053         GSList *match_list = NULL;
1054
1055         const size_t pattern_num = sizeof(patterns)/sizeof(url_match_pattern_t);
1056
1057         /* initalize the regexps */
1058         modest_text_utils_hyperlinkify_begin ();
1059
1060         /* find all the matches */
1061         for (i = 0; i != pattern_num; ++i) {
1062                 tmp_offset     = offset;        
1063                 while (1) {
1064                         url_match_t *match;
1065                         gboolean is_submatch;
1066                         GSList *cursor;
1067                         
1068                         if ((rv = regexec (patterns[i].preg, txt->str + tmp_offset, 1, &rm, 0)) != 0) {
1069                                 g_return_val_if_fail (rv == REG_NOMATCH, NULL); /* this should not happen */
1070                                 break; /* try next regexp */ 
1071                         }
1072                         if (rm.rm_so == -1)
1073                                 break;
1074                         
1075                         is_submatch = FALSE;
1076                         /* check  old matches to see if this has already been matched */
1077                         cursor = match_list;
1078                         while (cursor && !is_submatch) {
1079                                 const url_match_t *old_match =
1080                                         (const url_match_t *) cursor->data;
1081                                 guint new_offset = tmp_offset + rm.rm_so;
1082                                 is_submatch = (new_offset >  old_match->offset &&
1083                                                new_offset <  old_match->offset + old_match->len);
1084                                 cursor = g_slist_next (cursor);
1085                         }
1086
1087                         if (!is_submatch) {
1088                                 /* make a list of our matches (<offset, len, prefix> tupels)*/
1089                                 match = g_slice_new (url_match_t);
1090                                 match->offset = tmp_offset + rm.rm_so;
1091                                 match->len    = rm.rm_eo - rm.rm_so;
1092                                 match->prefix = patterns[i].prefix;
1093                                 match_list = g_slist_prepend (match_list, match);
1094                         }               
1095                         tmp_offset += rm.rm_eo;
1096                 }
1097         }
1098
1099         modest_text_utils_hyperlinkify_end ();
1100         
1101         /* now sort the list, so the matches are in reverse order of occurence.
1102          * that way, we can do the replacements starting from the end, so we don't need
1103          * to recalculate the offsets
1104          */
1105         match_list = g_slist_sort (match_list,
1106                                    (GCompareFunc)cmp_offsets_reverse); 
1107         return match_list;      
1108 }
1109
1110
1111
1112 /* replace all occurences of needle in haystack with repl*/
1113 static gchar*
1114 replace_string (const gchar *haystack, const gchar *needle, gchar repl)
1115 {
1116         gchar *str, *cursor;
1117
1118         if (!haystack || !needle || strlen(needle) == 0)
1119                 return haystack ? g_strdup(haystack) : NULL;
1120         
1121         str = g_strdup (haystack);
1122
1123         for (cursor = str; cursor && *cursor; ++cursor) {
1124                 if (g_str_has_prefix (cursor, needle)) {
1125                         cursor[0] = repl;
1126                         memmove (cursor + 1,
1127                                  cursor + strlen (needle),
1128                                  strlen (cursor + strlen (needle)) + 1);
1129                 }
1130         }
1131         
1132         return str;
1133 }
1134
1135 static void
1136 hyperlinkify_plain_text (GString *txt, gint offset)
1137 {
1138         GSList *cursor;
1139         GSList *match_list = get_url_matches (txt, offset);
1140
1141         /* we will work backwards, so the offsets stay valid */
1142         for (cursor = match_list; cursor; cursor = cursor->next) {
1143
1144                 url_match_t *match = (url_match_t*) cursor->data;
1145                 gchar *url  = g_strndup (txt->str + match->offset, match->len);
1146                 gchar *repl = NULL; /* replacement  */
1147
1148                 /* the string still contains $(MARK_AMP_URI_STR)"amp;" for each
1149                  * '&' in the original, because of the text->html conversion.
1150                  * in the href-URL (and only there), we must convert that back to
1151                  * '&'
1152                  */
1153                 gchar *href_url = replace_string (url, MARK_AMP_URI_STR "amp;", '&');
1154                 
1155                 /* the prefix is NULL: use the one that is already there */
1156                 repl = g_strdup_printf ("<a href=\"%s%s\">%s</a>",
1157                                         match->prefix ? match->prefix : EMPTY_STRING, 
1158                                         href_url, url);
1159
1160                 /* replace the old thing with our hyperlink
1161                  * replacement thing */
1162                 g_string_erase  (txt, match->offset, match->len);
1163                 g_string_insert (txt, match->offset, repl);
1164                 
1165                 g_free (url);
1166                 g_free (repl);
1167                 g_free (href_url);
1168
1169                 g_slice_free (url_match_t, match);      
1170         }
1171         
1172         g_slist_free (match_list);
1173 }
1174
1175 void
1176 modest_text_utils_hyperlinkify (GString *string_buffer)
1177 {
1178         gchar *after_body;
1179         gint offset = 0;
1180
1181         after_body = strstr (string_buffer->str, "<body>");
1182         if (after_body != NULL)
1183                 offset = after_body - string_buffer->str;
1184         hyperlinkify_plain_text (string_buffer, offset);
1185 }
1186
1187
1188 /* for optimization reasons, we change the string in-place */
1189 void
1190 modest_text_utils_get_display_address (gchar *address)
1191 {
1192         int i;
1193
1194         g_return_if_fail (address);
1195         
1196         if (!address)
1197                 return;
1198         
1199         /* should not be needed, and otherwise, we probably won't screw up the address
1200          * more than it already is :) 
1201          * g_return_val_if_fail (g_utf8_validate (address, -1, NULL), NULL);
1202          * */
1203         
1204         /* remove leading whitespace */
1205         if (address[0] == ' ')
1206                 g_strchug (address);
1207                 
1208         for (i = 0; address[i]; ++i) {
1209                 if (address[i] == '<') {
1210                         if (G_UNLIKELY(i == 0))
1211                                 return; /* there's nothing else, leave it */
1212                         else {
1213                                 address[i] = '\0'; /* terminate the string here */
1214                                 return;
1215                         }
1216                 }
1217         }
1218 }
1219
1220
1221
1222
1223
1224 gchar *
1225 modest_text_utils_get_email_address (const gchar *full_address)
1226 {
1227         const gchar *left, *right;
1228
1229         g_return_val_if_fail (full_address, NULL);
1230         
1231         if (!full_address)
1232                 return NULL;
1233         
1234         g_return_val_if_fail (g_utf8_validate (full_address, -1, NULL), NULL);
1235         
1236         left = g_strrstr_len (full_address, strlen(full_address), "<");
1237         if (left == NULL)
1238                 return g_strdup (full_address);
1239
1240         right = g_strstr_len (left, strlen(left), ">");
1241         if (right == NULL)
1242                 return g_strdup (full_address);
1243
1244         return g_strndup (left + 1, right - left - 1);
1245 }
1246
1247 gint 
1248 modest_text_utils_get_subject_prefix_len (const gchar *sub)
1249 {
1250         gint prefix_len = 0;    
1251
1252         g_return_val_if_fail (sub, 0);
1253
1254         if (!sub)
1255                 return 0;
1256         
1257         /* optimization: "Re", "RE", "re","Fwd", "FWD", "fwd","FW","Fw", "fw" */
1258         if (sub[0] != 'R' && sub[0] != 'F' && sub[0] != 'r' && sub[0] != 'f')
1259                 return 0;
1260         else if (sub[0] && sub[1] != 'e' && sub[1] != 'E' && sub[1] != 'w' && sub[1] != 'W')
1261                 return 0;
1262
1263         prefix_len = 2;
1264         if (sub[2] == 'd')
1265                 ++prefix_len;
1266
1267         /* skip over a [...] block */
1268         if (sub[prefix_len] == '[') {
1269                 int c = prefix_len + 1;
1270                 while (sub[c] && sub[c] != ']')
1271                         ++c;
1272                 if (sub[c])
1273                         return 0; /* no end to the ']' found */
1274                 else
1275                         prefix_len = c + 1;
1276         }
1277
1278         /* did we find the ':' ? */
1279         if (sub[prefix_len] == ':') {
1280                 ++prefix_len;
1281                 if (sub[prefix_len] == ' ')
1282                         ++prefix_len;
1283                 prefix_len += modest_text_utils_get_subject_prefix_len (sub + prefix_len);
1284 /*              g_warning ("['%s','%s']", sub, (char*) sub + prefix_len); */
1285                 return prefix_len;
1286         } else
1287                 return 0;
1288 }
1289
1290
1291 gint
1292 modest_text_utils_utf8_strcmp (const gchar* s1, const gchar *s2, gboolean insensitive)
1293 {
1294
1295 /* work even when s1 and/or s2 == NULL */
1296         if (G_UNLIKELY(s1 == s2))
1297                 return 0;
1298         if (G_UNLIKELY(!s1))
1299                 return -1;
1300         if (G_UNLIKELY(!s2))
1301                 return 1;
1302         
1303         /* if it's not case sensitive */
1304         if (!insensitive) {
1305
1306                 /* optimization: shortcut if first char is ascii */ 
1307                 if (((s1[0] & 0xf0)== 0) && ((s2[0] & 0xf0) == 0)) 
1308                         return s1[0] - s2[0];
1309                 
1310                 return g_utf8_collate (s1, s2);
1311
1312         } else {
1313                 gint result;
1314                 gchar *n1, *n2;
1315
1316                 /* optimization: short cut iif first char is ascii */ 
1317                 if (((s1[0] & 0xf0) == 0) && ((s2[0] & 0xf0) == 0)) 
1318                         return tolower(s1[0]) - tolower(s2[0]);
1319                 
1320                 n1 = g_utf8_strdown (s1, -1);
1321                 n2 = g_utf8_strdown (s2, -1);
1322                 
1323                 result = g_utf8_collate (n1, n2);
1324                 
1325                 g_free (n1);
1326                 g_free (n2);
1327         
1328                 return result;
1329         }
1330 }
1331
1332
1333 const gchar*
1334 modest_text_utils_get_display_date (time_t date)
1335 {
1336 #define DATE_BUF_SIZE 64 
1337         static gchar date_buf[DATE_BUF_SIZE];
1338         
1339         /* calculate the # of days since epoch for 
1340          * for today and for the date provided 
1341          * based on idea from pvanhoof */
1342         int day      = time(NULL) / (24 * 60 * 60);
1343         int date_day = date       / (24 * 60 * 60);
1344
1345         /* if it's today, show the time, if it's not today, show the date instead */
1346
1347         if (day == date_day) /* is the date today? */
1348                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%X", date);
1349         else 
1350                 modest_text_utils_strftime (date_buf, DATE_BUF_SIZE, "%x", date); 
1351
1352         return date_buf; /* this is a static buffer, don't free! */
1353 }
1354
1355
1356
1357 gboolean
1358 modest_text_utils_validate_folder_name (const gchar *folder_name)
1359 {
1360         /* based on http://msdn2.microsoft.com/en-us/library/aa365247.aspx,
1361          * with some extras */
1362         
1363         guint len;
1364         gint i;
1365         const gchar **cursor = NULL;
1366         const gchar *forbidden_names[] = { /* windows does not like these */
1367                 "CON", "PRN", "AUX", "NUL", ".", "..", "cur", "tmp", "new", 
1368                 NULL /* cur, tmp, new are reserved for Maildir */
1369         };
1370         
1371         /* cannot be NULL */
1372         if (!folder_name) 
1373                 return FALSE;
1374
1375         /* cannot be empty */
1376         len = strlen(folder_name);
1377         if (len == 0)
1378                 return FALSE;
1379         
1380         /* cannot start with a dot, vfat does not seem to like that */
1381         if (folder_name[0] == '.')
1382                 return FALSE;
1383
1384         /* cannot start or end with a space */
1385         if (g_ascii_isspace(folder_name[0]) || g_ascii_isspace(folder_name[len - 1]))
1386                 return FALSE; 
1387
1388         /* cannot contain a forbidden char */   
1389         for (i = 0; i < len; i++)
1390                 if (modest_text_utils_is_forbidden_char (folder_name[i], FOLDER_NAME_FORBIDDEN_CHARS))
1391                         return FALSE;
1392
1393         /* Cannot contain Windows port numbers. I'd like to use GRegex
1394            but it's still not available in Maemo. sergio */
1395         if (!g_ascii_strncasecmp (folder_name, "LPT", 3) ||
1396             !g_ascii_strncasecmp (folder_name, "COM", 3)) {
1397                 glong val;
1398                 gchar *endptr;
1399
1400                 /* We skip the first 3 characters for the
1401                    comparison */
1402                 val = strtol(folder_name+3, &endptr, 10);
1403
1404                 /* If the conversion to long succeeded then the string
1405                    is not valid for us */
1406                 if (*endptr == '\0')
1407                         return FALSE;
1408                 else
1409                         return TRUE;
1410         }
1411         
1412         /* cannot contain a forbidden word */
1413         if (len <= 4) {
1414                 for (cursor = forbidden_names; cursor && *cursor; ++cursor) {
1415                         if (g_ascii_strcasecmp (folder_name, *cursor) == 0)
1416                                 return FALSE;
1417                 }
1418         }
1419
1420         return TRUE; /* it's valid! */
1421 }
1422
1423
1424
1425 gboolean
1426 modest_text_utils_validate_domain_name (const gchar *domain)
1427 {
1428         gboolean valid = FALSE;
1429         regex_t rx;
1430         const gchar* domain_regex = "^([a-z0-9-]*[a-z0-9]\\.)+[a-z0-9-]*[a-z0-9]$";
1431
1432         g_return_val_if_fail (domain, FALSE);
1433         
1434         if (!domain)
1435                 return FALSE;
1436         
1437         memset (&rx, 0, sizeof(regex_t)); /* coverity wants this... */
1438                 
1439         /* domain name: all alphanum or '-' or '.',
1440          * but beginning/ending in alphanum */  
1441         if (regcomp (&rx, domain_regex, REG_ICASE|REG_EXTENDED|REG_NOSUB)) {
1442                 g_warning ("BUG: error in regexp");
1443                 return FALSE;
1444         }
1445         
1446         valid = (regexec (&rx, domain, 1, NULL, 0) == 0);
1447         regfree (&rx);
1448                 
1449         return valid;
1450 }
1451
1452
1453
1454 gboolean
1455 modest_text_utils_validate_email_address (const gchar *email_address,
1456                                           const gchar **invalid_char_position)
1457 {
1458         int count = 0;
1459         const gchar *c = NULL, *domain = NULL;
1460         static gchar *rfc822_specials = "()<>@,;:\\\"[]&";
1461         
1462         if (invalid_char_position)
1463                 *invalid_char_position = NULL;
1464         
1465         g_return_val_if_fail (email_address, FALSE);
1466         
1467         /* check that the email adress contains exactly one @ */
1468         if (!strstr(email_address, "@") || 
1469                         (strstr(email_address, "@") != g_strrstr(email_address, "@"))) 
1470                 return FALSE;
1471         
1472         /* first we validate the name portion (name@domain) */
1473         for (c = email_address;  *c;  c++) {
1474                 if (*c == '\"' && 
1475                     (c == email_address || 
1476                      *(c - 1) == '.' || 
1477                      *(c - 1) == '\"')) {
1478                         while (*++c) {
1479                                 if (*c == '\"') 
1480                                         break;
1481                                 if (*c == '\\' && (*++c == ' ')) 
1482                                         continue;
1483                                 if (*c <= ' ' || *c >= 127) 
1484                                         return FALSE;
1485                         }
1486                         if (!*c++) 
1487                                 return FALSE;
1488                         if (*c == '@') 
1489                                 break;
1490                         if (*c != '.') 
1491                                 return FALSE;
1492                         continue;
1493                 }
1494                 if (*c == '@') 
1495                         break;
1496                 if (*c <= ' ' || *c >= 127) 
1497                         return FALSE;
1498                 if (strchr(rfc822_specials, *c)) {
1499                         if (invalid_char_position)
1500                                 *invalid_char_position = c;
1501                         return FALSE;
1502                 }
1503         }
1504         if (c == email_address || *(c - 1) == '.') 
1505                 return FALSE;
1506
1507         /* next we validate the domain portion (name@domain) */
1508         if (!*(domain = ++c)) 
1509                 return FALSE;
1510         do {
1511                 if (*c == '.') {
1512                         if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') 
1513                                 return FALSE;
1514                         count++;
1515                 }
1516                 if (*c <= ' ' || *c >= 127) 
1517                         return FALSE;
1518                 if (strchr(rfc822_specials, *c)) {
1519                         if (invalid_char_position)
1520                                 *invalid_char_position = c;
1521                         return FALSE;
1522                 }
1523         } while (*++c);
1524
1525         return (count >= 1) ? TRUE : FALSE;
1526 }
1527
1528 gboolean 
1529 modest_text_utils_validate_recipient (const gchar *recipient, const gchar **invalid_char_position)
1530 {
1531         gchar *stripped, *current;
1532         gchar *right_part;
1533         gboolean has_error = FALSE;
1534
1535         if (invalid_char_position)
1536                 *invalid_char_position = NULL;
1537         
1538         g_return_val_if_fail (recipient, FALSE);
1539         
1540         if (modest_text_utils_validate_email_address (recipient, invalid_char_position))
1541                 return TRUE;
1542
1543         stripped = g_strdup (recipient);
1544         stripped = g_strstrip (stripped);
1545         current = stripped;
1546
1547         if (*current == '\0') {
1548                 g_free (stripped);
1549                 return FALSE;
1550         }
1551
1552         /* quoted string */
1553         if (*current == '\"') {
1554                 current = g_utf8_next_char (current);
1555                 has_error = TRUE;
1556                 for (; *current != '\0'; current = g_utf8_next_char (current)) {
1557                         if (*current == '\\') {
1558                                 /* TODO: This causes a warning, which breaks the build, 
1559                                  * because a gchar cannot be < 0.
1560                                  * murrayc. 
1561                                 if (current[1] <0) {
1562                                         has_error = TRUE;
1563                                         break;
1564                                 }
1565                                 */
1566                         } else if (*current == '\"') {
1567                                 has_error = FALSE;
1568                                 current = g_utf8_next_char (current);
1569                                 break;
1570                         }
1571                 }
1572         } else {
1573                 has_error = TRUE;
1574                 for (current = stripped ; *current != '\0'; current = g_utf8_next_char (current)) {
1575                         if (*current == '<') {
1576                                 has_error = FALSE;
1577                                 break;
1578                         }
1579                 }
1580         }
1581                 
1582         if (has_error) {
1583                 g_free (stripped);
1584                 return FALSE;
1585         }
1586
1587         right_part = g_strdup (current);
1588         g_free (stripped);
1589         right_part = g_strstrip (right_part);
1590
1591         if (g_str_has_prefix (right_part, "<") &&
1592             g_str_has_suffix (right_part, ">")) {
1593                 gchar *address;
1594                 gboolean valid;
1595
1596                 address = g_strndup (right_part+1, strlen (right_part) - 2);
1597                 g_free (right_part);
1598                 valid = modest_text_utils_validate_email_address (address, invalid_char_position);
1599                 g_free (address);
1600                 return valid;
1601         } else {
1602                 g_free (right_part);
1603                 return FALSE;
1604         }
1605 }
1606
1607
1608 gchar *
1609 modest_text_utils_get_display_size (guint64 size)
1610 {
1611         const guint KB=1024;
1612         const guint MB=1024 * KB;
1613         const guint GB=1024 * MB;
1614
1615         if (size == 0)
1616                 return g_strdup_printf(_FM("sfil_li_size_kb"), 0);
1617         if (0 < size && size < KB)
1618                 return g_strdup_printf (_FM("sfil_li_size_kb"), 1);
1619         else if (KB <= size && size < 100 * KB)
1620                 return g_strdup_printf (_FM("sfil_li_size_1kb_99kb"), size / KB);
1621         else if (100*KB <= size && size < MB)
1622                 return g_strdup_printf (_FM("sfil_li_size_100kb_1mb"), (float) size / MB);
1623         else if (MB <= size && size < 10*MB)
1624                 return g_strdup_printf (_FM("sfil_li_size_1mb_10mb"), (float) size / MB);
1625         else if (10*MB <= size && size < GB)
1626                 return g_strdup_printf (_FM("sfil_li_size_10mb_1gb"), size / MB);
1627         else
1628                 return g_strdup_printf (_FM("sfil_li_size_1gb_or_greater"), (float) size / GB); 
1629 }
1630
1631 static gchar *
1632 get_email_from_address (const gchar * address)
1633 {
1634         gchar *left_limit, *right_limit;
1635
1636         left_limit = strstr (address, "<");
1637         right_limit = g_strrstr (address, ">");
1638
1639         if ((left_limit == NULL)||(right_limit == NULL)|| (left_limit > right_limit))
1640                 return g_strdup (address);
1641         else
1642                 return g_strndup (left_limit + 1, (right_limit - left_limit) - 1);
1643 }
1644
1645 gchar *      
1646 modest_text_utils_get_color_string (GdkColor *color)
1647 {
1648         g_return_val_if_fail (color, NULL);
1649         
1650         return g_strdup_printf ("#%x%x%x%x%x%x%x%x%x%x%x%x",
1651                                 (color->red >> 12)   & 0xf, (color->red >> 8)   & 0xf,
1652                                 (color->red >>  4)   & 0xf, (color->red)        & 0xf,
1653                                 (color->green >> 12) & 0xf, (color->green >> 8) & 0xf,
1654                                 (color->green >>  4) & 0xf, (color->green)      & 0xf,
1655                                 (color->blue >> 12)  & 0xf, (color->blue >> 8)  & 0xf,
1656                                 (color->blue >>  4)  & 0xf, (color->blue)       & 0xf);
1657 }
1658
1659 gchar *
1660 modest_text_utils_text_buffer_get_text (GtkTextBuffer *buffer)
1661 {
1662         GtkTextIter start, end;
1663         gchar *slice, *current;
1664         GString *result = g_string_new ("");
1665
1666         g_return_val_if_fail (buffer && GTK_IS_TEXT_BUFFER (buffer), NULL);
1667         
1668         gtk_text_buffer_get_start_iter (buffer, &start);
1669         gtk_text_buffer_get_end_iter (buffer, &end);
1670
1671         slice = gtk_text_buffer_get_slice (buffer, &start, &end, FALSE);
1672         current = slice;
1673
1674         while (current && current != '\0') {
1675                 if (g_utf8_get_char (current) == 0xFFFC) {
1676                         result = g_string_append_c (result, ' ');
1677                         current = g_utf8_next_char (current);
1678                 } else {
1679                         gchar *next = g_utf8_strchr (current, -1, 0xFFFC);
1680                         if (next == NULL) {
1681                                 result = g_string_append (result, current);
1682                         } else {
1683                                 result = g_string_append_len (result, current, next - current);
1684                         }
1685                         current = next;
1686                 }
1687         }
1688         g_free (slice);
1689
1690         return g_string_free (result, FALSE);
1691         
1692 }
1693
1694 gboolean
1695 modest_text_utils_is_forbidden_char (const gchar character,
1696                                      ModestTextUtilsForbiddenCharType type)
1697 {
1698         gint i, len;
1699         const gchar *forbidden_chars = NULL;
1700         
1701         /* We need to get the length in the switch because the
1702            compiler needs to know the size at compile time */
1703         switch (type) {
1704         case ACCOUNT_TITLE_FORBIDDEN_CHARS:
1705                 forbidden_chars = account_title_forbidden_chars;
1706                 len = G_N_ELEMENTS (account_title_forbidden_chars);
1707                 break;
1708         case FOLDER_NAME_FORBIDDEN_CHARS:
1709                 forbidden_chars = folder_name_forbidden_chars;
1710                 len = G_N_ELEMENTS (folder_name_forbidden_chars);
1711                 break;
1712         case USER_NAME_FORBIDDEN_NAMES:
1713                 forbidden_chars = user_name_forbidden_chars;
1714                 len = G_N_ELEMENTS (user_name_forbidden_chars);
1715                 break;
1716         default:
1717                 g_return_val_if_reached (TRUE);
1718         }
1719
1720         for (i = 0; i < len ; i++)
1721                 if (forbidden_chars[i] == character)
1722                         return TRUE;
1723
1724         return FALSE; /* it's valid! */
1725 }
1726
1727 gchar *      
1728 modest_text_utils_label_get_selection (GtkLabel *label)
1729 {
1730         gint start, end;
1731         gchar *selection;
1732
1733         if (gtk_label_get_selection_bounds (GTK_LABEL (label), &start, &end)) {
1734                 const gchar *start_offset;
1735                 const gchar *end_offset;
1736                 start_offset = gtk_label_get_text (GTK_LABEL (label));
1737                 start_offset = g_utf8_offset_to_pointer (start_offset, start);
1738                 end_offset = gtk_label_get_text (GTK_LABEL (label));
1739                 end_offset = g_utf8_offset_to_pointer (end_offset, end);
1740                 selection = g_strndup (start_offset, end_offset - start_offset);
1741                 return selection;
1742         } else {
1743                 return g_strdup ("");
1744         }
1745 }
1746
1747 static gboolean
1748 _forward_search_image_char (gunichar ch,
1749                             gpointer userdata)
1750 {
1751         return (ch == 0xFFFC);
1752 }
1753
1754 gboolean
1755 modest_text_utils_buffer_selection_is_valid (GtkTextBuffer *buffer)
1756 {
1757         gboolean result;
1758         GtkTextIter start, end;
1759
1760         g_return_val_if_fail (GTK_IS_TEXT_BUFFER (buffer), FALSE);
1761
1762         result = gtk_text_buffer_get_has_selection (GTK_TEXT_BUFFER (buffer));
1763
1764         /* check there are no images in selection */
1765         if (result) {
1766                 gtk_text_buffer_get_selection_bounds (buffer, &start, &end);
1767                 if (gtk_text_iter_get_char (&start)== 0xFFFC)
1768                         result = FALSE;
1769                 else {
1770                         gtk_text_iter_backward_char (&end);
1771                         if (gtk_text_iter_forward_find_char (&start, _forward_search_image_char,
1772                                                              NULL, &end))
1773                                 result = FALSE;
1774                 }
1775                                     
1776         }
1777
1778         return result;
1779 }
1780
1781 gchar *
1782 modest_text_utils_escape_mnemonics (const gchar *text)
1783 {
1784         const gchar *p;
1785         GString *result = NULL;
1786
1787         if (text == NULL)
1788                 return NULL;
1789
1790         result = g_string_new ("");
1791         for (p = text; *p != '\0'; p++) {
1792                 if (*p == '_')
1793                         result = g_string_append (result, "__");
1794                 else
1795                         result = g_string_append_c (result, *p);
1796         }
1797         
1798         return g_string_free (result, FALSE);
1799 }