6 * Copyright (C) 2010-11 SIPE Project <http://sipe.sourceforge.net/>
7 * Copyright (C) 2008 Novell, Inc.
8 * Copyright (C) 2005 Thomas Butter <butter@uni-mannheim.de>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
33 #include "sipe-backend.h"
34 #include "sipe-mime.h"
35 #include "sipe-utils.h"
37 struct sipmsg
*sipmsg_parse_msg(const gchar
*msg
) {
38 const char *tmp
= strstr(msg
, "\r\n\r\n");
44 line
= g_strndup(msg
, tmp
- msg
);
46 smsg
= sipmsg_parse_header(line
);
47 smsg
->body
= g_strdup(tmp
+ 4);
53 struct sipmsg
*sipmsg_parse_header(const gchar
*header
) {
54 struct sipmsg
*msg
= g_new0(struct sipmsg
,1);
55 gchar
**lines
= g_strsplit(header
,"\r\n",0);
57 const gchar
*contentlength
;
63 parts
= g_strsplit(lines
[0], " ", 3);
64 if(!parts
[0] || !parts
[1] || !parts
[2]) {
70 if(strstr(parts
[0],"SIP") || strstr(parts
[0],"HTTP")) { /* numeric response */
71 msg
->responsestr
= g_strdup(parts
[2]);
72 msg
->response
= strtol(parts
[1],NULL
,10);
73 } else { /* request */
74 msg
->method
= g_strdup(parts
[0]);
75 msg
->target
= g_strdup(parts
[1]);
79 if (sipe_utils_parse_lines(&msg
->headers
, lines
+ 1, ":") == FALSE
) {
85 contentlength
= sipmsg_find_header(msg
, "Content-Length");
87 msg
->bodylen
= strtol(contentlength
,NULL
,10);
89 SIPE_DEBUG_FATAL_NOFORMAT("sipmsg_parse_header(): Content-Length header not found");
93 tmp
= sipmsg_find_header(msg
, "CSeq");
95 /* SHOULD NOT HAPPEN */
98 parts
= g_strsplit(tmp
, " ", 2);
99 msg
->method
= g_strdup(parts
[1]);
106 struct sipmsg
*sipmsg_copy(const struct sipmsg
*other
) {
107 struct sipmsg
*msg
= g_new0(struct sipmsg
, 1);
110 msg
->response
= other
->response
;
111 msg
->responsestr
= g_strdup(other
->responsestr
);
112 msg
->method
= g_strdup(other
->method
);
113 msg
->target
= g_strdup(other
->target
);
115 list
= other
->headers
;
117 struct sipnameval
*elem
= list
->data
;
118 sipmsg_add_header_now(msg
, elem
->name
, elem
->value
);
122 list
= other
->new_headers
;
124 struct sipnameval
*elem
= list
->data
;
125 sipmsg_add_header(msg
, elem
->name
, elem
->value
);
129 msg
->bodylen
= other
->bodylen
;
130 msg
->body
= g_strdup(other
->body
);
131 msg
->signature
= g_strdup(other
->signature
);
132 msg
->rand
= g_strdup(other
->rand
);
133 msg
->num
= g_strdup(other
->num
);
138 char *sipmsg_to_string(const struct sipmsg
*msg
) {
140 GString
*outstr
= g_string_new("");
141 struct sipnameval
*elem
;
144 g_string_append_printf(outstr
, "SIP/2.0 %d Unknown\r\n",
147 g_string_append_printf(outstr
, "%s %s SIP/2.0\r\n",
148 msg
->method
, msg
->target
);
153 /*Todo: remove the LFCR in a good way*/
154 /*if(sipe_strequal(elem->name,"Proxy-Authorization"))
155 g_string_append_printf(outstr, "%s: %s", elem->name,
158 g_string_append_printf(outstr
, "%s: %s\r\n", elem
->name
,
160 cur
= g_slist_next(cur
);
163 g_string_append_printf(outstr
, "\r\n%s", msg
->bodylen
? msg
->body
: "");
165 return g_string_free(outstr
, FALSE
);
169 * Adds header to current message headers at specified position
171 void sipmsg_add_header_now_pos(struct sipmsg
*msg
, const gchar
*name
, const gchar
*value
, int pos
) {
172 struct sipnameval
*element
= g_new0(struct sipnameval
,1);
174 /* SANITY CHECK: the calling code must be fixed if this happens! */
176 SIPE_DEBUG_ERROR("sipmsg_add_header_now_pos: NULL value for %s (%d)",
181 element
->name
= g_strdup(name
);
182 element
->value
= g_strdup(value
);
183 msg
->headers
= g_slist_insert(msg
->headers
, element
,pos
);
187 * Adds header to current message headers
189 void sipmsg_add_header_now(struct sipmsg
*msg
, const gchar
*name
, const gchar
*value
) {
190 struct sipnameval
*element
= g_new0(struct sipnameval
,1);
192 /* SANITY CHECK: the calling code must be fixed if this happens! */
194 SIPE_DEBUG_ERROR("sipmsg_add_header_now: NULL value for %s",
199 element
->name
= g_strdup(name
);
200 element
->value
= g_strdup(value
);
201 msg
->headers
= g_slist_append(msg
->headers
, element
);
205 * Adds header to separate storage for future merge
207 void sipmsg_add_header(struct sipmsg
*msg
, const gchar
*name
, const gchar
*value
) {
208 struct sipnameval
*element
= g_new0(struct sipnameval
,1);
210 /* SANITY CHECK: the calling code must be fixed if this happens! */
212 SIPE_DEBUG_ERROR("sipmsg_add_header: NULL value for %s", name
);
216 element
->name
= g_strdup(name
);
217 element
->value
= g_strdup(value
);
218 msg
->new_headers
= g_slist_append(msg
->new_headers
, element
);
222 * Removes header if it's not in keepers array
224 void sipmsg_strip_headers(struct sipmsg
*msg
, const gchar
*keepers
[]) {
226 struct sipnameval
*elem
;
228 entry
= msg
->headers
;
231 gboolean keeper
= FALSE
;
235 if (!g_strcasecmp(elem
->name
, keepers
[i
])) {
243 GSList
*to_delete
= entry
;
244 SIPE_DEBUG_INFO("sipmsg_strip_headers: removing %s", elem
->name
);
245 entry
= g_slist_next(entry
);
246 msg
->headers
= g_slist_delete_link(msg
->headers
, to_delete
);
251 entry
= g_slist_next(entry
);
257 * Merges newly added headers to message
259 void sipmsg_merge_new_headers(struct sipmsg
*msg
) {
260 while(msg
->new_headers
) {
261 msg
->headers
= g_slist_append(msg
->headers
, msg
->new_headers
->data
);
262 msg
->new_headers
= g_slist_remove(msg
->new_headers
, msg
->new_headers
->data
);
266 void sipmsg_free(struct sipmsg
*msg
) {
267 sipe_utils_nameval_free(msg
->headers
);
268 sipe_utils_nameval_free(msg
->new_headers
);
269 g_free(msg
->signature
);
272 g_free(msg
->responsestr
);
279 void sipmsg_remove_header_now(struct sipmsg
*msg
, const gchar
*name
) {
280 struct sipnameval
*elem
;
281 GSList
*tmp
= msg
->headers
;
284 // OCS2005 can send the same header in either all caps or mixed case
285 if (sipe_strcase_equal(elem
->name
, name
)) {
286 msg
->headers
= g_slist_remove(msg
->headers
, elem
);
292 tmp
= g_slist_next(tmp
);
297 const gchar
*sipmsg_find_header(const struct sipmsg
*msg
, const gchar
*name
) {
298 return sipe_utils_nameval_find_instance (msg
->headers
, name
, 0);
301 const gchar
*sipmsg_find_header_instance(const struct sipmsg
*msg
, const gchar
*name
, int which
) {
302 return sipe_utils_nameval_find_instance(msg
->headers
, name
, which
);
305 gchar
*sipmsg_find_part_of_header(const char *hdr
, const char * before
, const char * after
, const char * def
) {
313 //printf("partof %s w/ %s before and %s after\n", hdr, before, after);
315 tmp
= before
== NULL
? hdr
: strstr(hdr
, before
);
317 //printf ("not found, returning null\n");
321 if (before
!= NULL
) {
322 tmp
+= strlen(before
);
323 //printf ("tmp now %s\n", tmp);
326 if (after
!= NULL
&& (tmp2
= strstr(tmp
, after
))) {
327 gchar
* res
= g_strndup(tmp
, tmp2
- tmp
);
328 //printf("returning %s\n", res);
331 res2
= g_strdup(tmp
);
332 //printf("returning %s\n", res2);
336 int sipmsg_parse_cseq(struct sipmsg
*msg
)
340 items
= g_strsplit(sipmsg_find_header(msg
, "CSeq"), " ", 1);
342 res
= atoi(items
[0]);
349 * Parse EndPoints header from INVITE request
350 * Returns a list of end points: contact URI plus optional epid.
351 * You must free the values and the list.
354 * EndPoints: "alice alisson" <sip:alice@atlanta.local>, <sip:bob@atlanta.local>;epid=ebca82d94d, <sip:carol@atlanta.local>
355 * EndPoints: "alice, alisson" <sip:alice@atlanta.local>, <sip:bob@atlanta.local>
356 * EndPoints: "alice alisson" <sip:alice@atlanta.local>, "Super, Man" <sip:super@atlanta.local>
358 * @param header (in) EndPoints header contents
360 * @return GSList with struct sipendpoint as elements
362 GSList
*sipmsg_parse_endpoints_header(const gchar
*header
)
365 gchar
**parts
= g_strsplit(header
, ",", 0);
369 for (i
= 0; (part
= parts
[i
]) != NULL
; i
++) {
370 /* Does the part contain a URI? */
371 gchar
*contact
= sipmsg_find_part_of_header(part
, "<", ">", NULL
);
373 struct sipendpoint
*end_point
= g_new(struct sipendpoint
, 1);
374 end_point
->contact
= contact
;
375 end_point
->epid
= sipmsg_find_part_of_header(part
, "epid=", NULL
, NULL
);
376 list
= g_slist_append(list
, end_point
);
384 void sipmsg_parse_p_asserted_identity(const gchar
*header
, gchar
**sip_uri
,
391 if (g_ascii_strncasecmp(header
, "tel:", 4) == 0) {
392 *tel_uri
= g_strdup(header
);
396 parts
= g_strsplit(header
, ",", 0);
398 for (p
= parts
; *p
; p
++) {
399 gchar
*uri
= sipmsg_find_part_of_header(*p
, "<", ">", NULL
);
403 if (g_ascii_strncasecmp(uri
, "sip:", 4) == 0) {
405 SIPE_DEBUG_WARNING_NOFORMAT("More than one "
406 "sip: URI found in P-Asserted-Identity!");
411 } else if (g_ascii_strncasecmp(uri
, "tel:", 4) == 0){
413 SIPE_DEBUG_WARNING_NOFORMAT("More than one "
414 "tel: URI found in P-Asserted-Identity!");
428 * sipmsg_find_auth_header will return the particular WWW-Authenticate
429 * header specified by *name.
431 * Use this function when you want to look for a specific authentication
432 * method such as NTLM or Kerberos
435 gchar
*sipmsg_find_auth_header(struct sipmsg
*msg
, const gchar
*name
) {
437 struct sipnameval
*elem
;
438 int name_len
= strlen(name
);
442 /* SIPE_DEBUG_INFO("Current header: %s", elem->value); */
443 if (elem
&& elem
->name
&&
444 (sipe_strcase_equal(elem
->name
,"WWW-Authenticate") ||
445 sipe_strcase_equal(elem
->name
,"Authentication-Info")) ) {
446 if (!g_strncasecmp((gchar
*)elem
->value
, name
, name_len
)) {
447 /* SIPE_DEBUG_INFO("elem->value: %s", elem->value); */
451 /* SIPE_DEBUG_INFO_NOFORMAT("moving to next header"); */
452 tmp
= g_slist_next(tmp
);
454 SIPE_DEBUG_INFO("auth header '%s' not found.", name
);
459 * Parses headers-like 'msgr' attribute of INVITE's 'ms_text_format' header.
460 * Then retrieves value of 'X-MMS-IM-Format'.
462 * 'msgr' typically looks like:
463 * X-MMS-IM-Format: FN=Microsoft%20Sans%20Serif; EF=BI; CO=800000; CS=0; PF=22
465 static gchar
*sipmsg_get_x_mms_im_format(gchar
*msgr
) {
467 gsize msgr_dec64_len
;
472 gchar
*x_mms_im_format
;
475 if (!msgr
) return NULL
;
476 msgr2
= g_strdup(msgr
);
477 while (strlen(msgr2
) % 4 != 0) {
478 gchar
*tmp_msgr2
= msgr2
;
479 msgr2
= g_strdup_printf("%s=", msgr2
);
482 msgr_dec64
= g_base64_decode(msgr2
, &msgr_dec64_len
);
483 msgr_utf8
= g_convert((gchar
*) msgr_dec64
, msgr_dec64_len
, "UTF-8", "UTF-16LE", NULL
, NULL
, NULL
);
486 lines
= g_strsplit(msgr_utf8
,"\r\n\r\n",0);
488 //@TODO: make extraction like parsing of message headers.
489 parts
= g_strsplit(lines
[0],"X-MMS-IM-Format:",0);
490 x_mms_im_format
= g_strdup(parts
[1]);
493 tmp
= x_mms_im_format
;
494 if (x_mms_im_format
) {
495 while(*x_mms_im_format
==' ' || *x_mms_im_format
=='\t') x_mms_im_format
++;
497 x_mms_im_format
= g_strdup(x_mms_im_format
);
499 return x_mms_im_format
;
502 gchar
*sipmsg_get_msgr_string(gchar
*x_mms_im_format
) {
504 gsize msgr_utf16_len
;
510 if (!x_mms_im_format
) return NULL
;
511 msgr_orig
= g_strdup_printf("X-MMS-IM-Format: %s\r\n\r\n", x_mms_im_format
);
512 msgr_utf16
= g_convert(msgr_orig
, -1, "UTF-16LE", "UTF-8", NULL
, &msgr_utf16_len
, NULL
);
514 msgr_enc
= g_base64_encode((guchar
*) msgr_utf16
, msgr_utf16_len
);
516 len
= strlen(msgr_enc
);
517 while (msgr_enc
[len
- 1] == '=') len
--;
518 res
= g_strndup(msgr_enc
, len
);
523 static void msn_parse_format(const char *mime
, char **pre_ret
, char **post_ret
);
526 * Translates X-MMS-IM format to HTML presentation.
528 static gchar
*sipmsg_apply_x_mms_im_format(const char *x_mms_im_format
, gchar
*body
) {
532 if (!x_mms_im_format
) {
533 return body
? g_strdup(body
) : NULL
;
535 msn_parse_format(x_mms_im_format
, &pre
, &post
);
536 res
= g_strdup_printf("%s%s%s", pre
? pre
: "", body
? body
: "", post
? post
: "");
542 struct html_message_data
{
543 gchar
*ms_text_format
;
548 static void get_html_message_mime_cb(gpointer user_data
,
549 const GSList
*fields
,
553 const gchar
*type
= sipe_utils_nameval_find(fields
, "Content-Type");
554 struct html_message_data
*data
= user_data
;
556 if (!data
->preferred
) {
557 gboolean copy
= FALSE
;
559 /* preferred format */
560 if (g_str_has_prefix(type
, "text/html")) {
562 data
->preferred
= TRUE
;
564 /* fallback format */
565 } else if (g_str_has_prefix(type
, "text/plain")) {
570 g_free(data
->ms_text_format
);
572 data
->ms_text_format
= g_strdup(type
);
573 data
->body
= g_strndup(body
, length
);
578 /* ms-text-format: text/plain; charset=UTF-8;msgr=WAAtAE0...DIADQAKAA0ACgA;ms-body=SGk= */
579 gchar
*get_html_message(const gchar
*ms_text_format_in
, const gchar
*body_in
)
583 gchar
*ms_text_format
= NULL
;
586 if (g_str_has_prefix(ms_text_format_in
, "multipart/related") ||
587 g_str_has_prefix(ms_text_format_in
, "multipart/alternative")) {
588 struct html_message_data data
= { NULL
, NULL
, FALSE
};
590 sipe_mime_parts_foreach(ms_text_format_in
, body_in
,
591 get_html_message_mime_cb
, &data
);
593 ms_text_format
= data
.ms_text_format
;
597 ms_text_format
= g_strdup(ms_text_format_in
);
598 body
= g_strdup(body_in
);
604 gchar
*tmp
= sipmsg_find_part_of_header(ms_text_format
, "ms-body=", NULL
, NULL
);
607 g_free(ms_text_format
);
610 res
= (gchar
*) g_base64_decode(tmp
, &len
);
613 g_free(ms_text_format
);
618 if (g_str_has_prefix(ms_text_format
, "text/html")) {
620 * HTML uses tags for formatting, not line breaks. But
621 * clients still might render them, so we need to remove
622 * them to avoid incorrect text rendering.
625 const gchar
*s
= res
;
628 /* No ANSI C nor glib function seems to exist for this :-( */
630 if ((c
!= '\n') && (c
!= '\r'))
636 res
= g_markup_escape_text(res
, -1); // as this is not html
640 msgr
= sipmsg_find_part_of_header(ms_text_format
, "msgr=", ";", NULL
);
642 gchar
*x_mms_im_format
= sipmsg_get_x_mms_im_format(msgr
);
645 res
= sipmsg_apply_x_mms_im_format(x_mms_im_format
, res
);
647 g_free(x_mms_im_format
);
650 g_free(ms_text_format
);
656 sipmsg_get_ms_diagnostics_reason(struct sipmsg
*msg
)
658 const gchar
*diagnostics
= sipmsg_find_header(msg
, "ms-diagnostics");
660 return sipmsg_find_part_of_header(diagnostics
, "reason=\"", "\"", NULL
);
666 sipmsg_parse_warning(struct sipmsg
*msg
, gchar
**reason
)
670 * Warning: 310 lcs.microsoft.com "You are currently not using the recommended version of the client"
672 const gchar
*hdr
= sipmsg_find_header(msg
, "Warning");
679 gchar
**parts
= g_strsplit(hdr
, " ", 3);
682 code
= atoi(parts
[0]);
684 if (reason
&& parts
[1] && parts
[2]) {
685 size_t len
= strlen(parts
[2]);
686 if (len
> 2 && parts
[2][0] == '"' && parts
[2][len
- 1] == '"')
687 *reason
= g_strndup(parts
[2] + 1, len
- 2);
699 //------------------------------------------------------------------------------------------
700 //TEMP solution to include it here (copy from purple's msn protocol
701 //How to reuse msn's util methods from sipe?
703 /* from internal.h */
705 #define BUF_LEN MSG_LEN
708 msn_parse_format(const char *mime
, char **pre_ret
, char **post_ret
)
711 GString
*pre
= g_string_new(NULL
);
712 GString
*post
= g_string_new(NULL
);
713 unsigned int colors
[3];
715 if (pre_ret
!= NULL
) *pre_ret
= NULL
;
716 if (post_ret
!= NULL
) *post_ret
= NULL
;
718 cur
= strstr(mime
, "FN=");
720 if (cur
&& (*(cur
= cur
+ 3) != ';'))
722 pre
= g_string_append(pre
, "<FONT FACE=\"");
724 while (*cur
&& *cur
!= ';')
726 pre
= g_string_append_c(pre
, *cur
);
730 pre
= g_string_append(pre
, "\">");
731 post
= g_string_prepend(post
, "</FONT>");
734 cur
= strstr(mime
, "EF=");
736 if (cur
&& (*(cur
= cur
+ 3) != ';'))
738 while (*cur
&& *cur
!= ';')
740 pre
= g_string_append_c(pre
, '<');
741 pre
= g_string_append_c(pre
, *cur
);
742 pre
= g_string_append_c(pre
, '>');
743 post
= g_string_prepend_c(post
, '>');
744 post
= g_string_prepend_c(post
, *cur
);
745 post
= g_string_prepend_c(post
, '/');
746 post
= g_string_prepend_c(post
, '<');
751 cur
= strstr(mime
, "CO=");
753 if (cur
&& (*(cur
= cur
+ 3) != ';'))
757 i
= sscanf(cur
, "%02x%02x%02x;", &colors
[0], &colors
[1], &colors
[2]);
770 unsigned int temp
= colors
[0];
772 colors
[0] = colors
[1];
778 unsigned int temp
= colors
[2];
780 colors
[2] = colors
[0];
784 /* hh is undefined in mingw's gcc 4.4
785 * https://sourceforge.net/tracker/index.php?func=detail&aid=2818436&group_id=2435&atid=102435
787 g_snprintf(tag
, sizeof(tag
),
788 "<FONT COLOR=\"#%02x%02x%02x\">",
789 (unsigned char)colors
[0], (unsigned char)colors
[1], (unsigned char)colors
[2]);
791 pre
= g_string_append(pre
, tag
);
792 post
= g_string_prepend(post
, "</FONT>");
796 cur
= strstr(mime
, "RL=");
798 if (cur
&& (*(cur
= cur
+ 3) != ';'))
802 /* RTL text was received */
803 pre
= g_string_append(pre
, "<SPAN style=\"direction:rtl;text-align:right;\">");
804 post
= g_string_prepend(post
, "</SPAN>");
808 cur
= sipe_utils_uri_unescape(pre
->str
);
809 g_string_free(pre
, TRUE
);
816 cur
= sipe_utils_uri_unescape(post
->str
);
817 g_string_free(post
, TRUE
);
819 if (post_ret
!= NULL
)
826 encode_spaces(const char *str
)
828 static char buf
[BUF_LEN
];
832 g_return_val_if_fail(str
!= NULL
, NULL
);
834 for (c
= str
, d
= buf
; *c
!= '\0'; c
++)
851 sipe_parse_html(const char *html
, char **attributes
, char **message
)
853 int len
, retcount
= 0;
856 char *fontface
= NULL
;
859 char direction
= '0';
861 gboolean has_bold
= FALSE
;
862 gboolean has_italic
= FALSE
;
863 gboolean has_underline
= FALSE
;
864 gboolean has_strikethrough
= FALSE
;
866 g_return_if_fail(html
!= NULL
);
867 g_return_if_fail(attributes
!= NULL
);
868 g_return_if_fail(message
!= NULL
);
871 msg
= g_malloc0(len
+ 1);
873 memset(fontcolor
, 0, sizeof(fontcolor
));
874 strcat(fontcolor
, "0");
875 memset(fonteffect
, 0, sizeof(fonteffect
));
877 for (c
= html
; *c
!= '\0';)
881 if (!g_ascii_strncasecmp(c
+ 1, "br>", 3))
883 msg
[retcount
++] = '\r';
884 msg
[retcount
++] = '\n';
887 else if (!g_ascii_strncasecmp(c
+ 1, "i>", 2))
891 strcat(fonteffect
, "I");
896 else if (!g_ascii_strncasecmp(c
+ 1, "b>", 2))
900 strcat(fonteffect
, "B");
905 else if (!g_ascii_strncasecmp(c
+ 1, "u>", 2))
909 strcat(fonteffect
, "U");
910 has_underline
= TRUE
;
914 else if (!g_ascii_strncasecmp(c
+ 1, "s>", 2))
916 if (!has_strikethrough
)
918 strcat(fonteffect
, "S");
919 has_strikethrough
= TRUE
;
923 else if (!g_ascii_strncasecmp(c
+ 1, "a href=\"", 8))
927 if (!g_ascii_strncasecmp(c
, "mailto:", 7))
930 while ((*c
!= '\0') && g_ascii_strncasecmp(c
, "\">", 2))
931 msg
[retcount
++] = *c
++;
936 /* ignore descriptive string */
937 while ((*c
!= '\0') && g_ascii_strncasecmp(c
, "</a>", 4))
943 else if (!g_ascii_strncasecmp(c
+ 1, "span", 4))
945 /* Bi-directional text support using CSS properties in span tags */
948 while (*c
!= '\0' && *c
!= '>')
952 if (!g_ascii_strncasecmp(c
, "dir=\"rtl\"", 9))
957 else if (!g_ascii_strncasecmp(c
, "style=\"", 7))
959 /* Parse inline CSS attributes */
962 while (*(c
+ attr_len
) != '\0' && *(c
+ attr_len
) != '"')
964 if (*(c
+ attr_len
) == '"')
966 char *css_attributes
;
968 css_attributes
= g_strndup(c
, attr_len
);
969 attr_dir
= sipe_backend_markup_css_property(css_attributes
, "direction");
970 g_free(css_attributes
);
971 if (attr_dir
&& (!g_ascii_strncasecmp(attr_dir
, "RTL", 3)))
985 else if (!g_ascii_strncasecmp(c
+ 1, "font", 4))
989 while ((*c
!= '\0') && !g_ascii_strncasecmp(c
, " ", 1))
992 if (!g_ascii_strncasecmp(c
, "color=\"#", 7))
996 fontcolor
[0] = *(c
+ 4);
997 fontcolor
[1] = *(c
+ 5);
998 fontcolor
[2] = *(c
+ 2);
999 fontcolor
[3] = *(c
+ 3);
1001 fontcolor
[5] = *(c
+ 1);
1005 else if (!g_ascii_strncasecmp(c
, "face=\"", 6))
1007 const char *end
= NULL
;
1008 const char *comma
= NULL
;
1009 unsigned int namelen
= 0;
1012 end
= strchr(c
, '\"');
1013 comma
= strchr(c
, ',');
1015 if (comma
== NULL
|| comma
> end
)
1016 namelen
= (unsigned int)(end
- c
);
1018 namelen
= (unsigned int)(comma
- c
);
1021 fontface
= g_strndup(c
, namelen
);
1026 /* Drop all unrecognized/misparsed font tags */
1027 while ((*c
!= '\0') && g_ascii_strncasecmp(c
, "\">", 2))
1036 while ((*c
!= '\0') && (*c
!= '>'))
1044 if (!g_ascii_strncasecmp(c
, "<", 4))
1046 msg
[retcount
++] = '<';
1049 else if (!g_ascii_strncasecmp(c
, ">", 4))
1051 msg
[retcount
++] = '>';
1054 else if (!g_ascii_strncasecmp(c
, " ", 6))
1056 msg
[retcount
++] = ' ';
1059 else if (!g_ascii_strncasecmp(c
, """, 6))
1061 msg
[retcount
++] = '"';
1064 else if (!g_ascii_strncasecmp(c
, "&", 5))
1066 msg
[retcount
++] = '&';
1069 else if (!g_ascii_strncasecmp(c
, "'", 6))
1071 msg
[retcount
++] = '\'';
1075 msg
[retcount
++] = *c
++;
1078 msg
[retcount
++] = *c
++;
1081 if (fontface
== NULL
)
1082 fontface
= g_strdup("MS Sans Serif");
1084 *attributes
= g_strdup_printf("FN=%s; EF=%s; CO=%s; PF=0; RL=%c",
1085 encode_spaces(fontface
),
1086 fonteffect
, fontcolor
, direction
);