- Timestamp:
- 2014-10-17T22:37:41Z (10 years ago)
- Branches:
- master
- Children:
- fef97af
- Parents:
- 4f7255d (diff), 46511b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols/jabber
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/io.c
r4f7255d r9ead105 506 506 allow_reconnect = FALSE; 507 507 } 508 else if( strcmp( err->code, "not-authorized" ) == 0 ) 509 { 510 imcb_error( ic, "Not authorized" ); 511 allow_reconnect = FALSE; 512 } 508 513 else 509 514 { -
protocols/jabber/jabber.c
r4f7255d r9ead105 148 148 jd->fd = jd->r_inpa = jd->w_inpa = -1; 149 149 150 if( strstr( jd->server, ".live.com" ) ) 151 jd->oauth2_service = &oauth2_service_mslive; 152 else if( strstr( jd->server, ".facebook.com" ) ) 150 if( strstr( jd->server, ".facebook.com" ) ) 153 151 jd->oauth2_service = &oauth2_service_facebook; 154 152 else -
protocols/jabber/jabber.h
r4f7255d r9ead105 229 229 #define XMLNS_RECEIPTS "urn:xmpp:receipts" /* XEP-0184 */ 230 230 #define XMLNS_VCARD "vcard-temp" /* XEP-0054 */ 231 #define XMLNS_DELAY "jabber:x:delay" /* XEP-0091 */ 231 #define XMLNS_DELAY_OLD "jabber:x:delay" /* XEP-0091 */ 232 #define XMLNS_DELAY "urn:xmpp:delay" /* XEP-0203 */ 232 233 #define XMLNS_XDATA "jabber:x:data" /* XEP-0004 */ 233 234 #define XMLNS_CHATSTATES "http://jabber.org/protocol/chatstates" /* XEP-0085 */ … … 338 339 extern const struct oauth2_service oauth2_service_google; 339 340 extern const struct oauth2_service oauth2_service_facebook; 340 extern const struct oauth2_service oauth2_service_mslive;341 341 342 342 /* conference.c */ -
protocols/jabber/jabber_util.c
r4f7255d r9ead105 726 726 char *s = NULL; 727 727 struct tm tp; 728 729 for( c = xt->children; ( c = xt_find_node( c, "x" ) ); c = c->next ) 730 { 731 if( ( s = xt_find_attr( c, "xmlns" ) ) && strcmp( s, XMLNS_DELAY ) == 0 ) 732 break; 733 } 734 735 if( !c || !( s = xt_find_attr( c, "stamp" ) ) ) 736 return 0; 728 gboolean is_old = TRUE; 729 const char *format; 730 731 /* XEP-0091 has <x> */ 732 c = xt_find_node_by_attr( xt->children, "x", "xmlns", XMLNS_DELAY_OLD ); 733 734 if( !c || !( s = xt_find_attr( c, "stamp" ) ) ) { 735 is_old = FALSE; 736 737 /* XEP-0203 has <delay> */ 738 c = xt_find_node_by_attr( xt->children, "delay", "xmlns", XMLNS_DELAY ); 739 if( !c || !( s = xt_find_attr( c, "stamp" ) ) ) { 740 return 0; 741 } 742 } 737 743 738 744 memset( &tp, 0, sizeof( tp ) ); 739 if( sscanf( s, "%4d%2d%2dT%2d:%2d:%2d", &tp.tm_year, &tp.tm_mon, &tp.tm_mday, 740 &tp.tm_hour, &tp.tm_min, &tp.tm_sec ) != 6 ) 745 746 /* The other main difference between XEPs is the timestamp format */ 747 format = (is_old) ? "%4d%2d%2dT%2d:%2d:%2d" : "%4d-%2d-%2dT%2d:%2d:%2dZ"; 748 749 if( sscanf( s, format, &tp.tm_year, &tp.tm_mon, &tp.tm_mday, 750 &tp.tm_hour, &tp.tm_min, &tp.tm_sec ) != 6 ) 741 751 return 0; 742 752 -
protocols/jabber/sasl.c
r4f7255d r9ead105 47 47 "4b100f0f244d620bf3f15f8b217d4c32", 48 48 }; 49 const struct oauth2_service oauth2_service_mslive =50 {51 "https://oauth.live.com/authorize",52 "https://oauth.live.com/token",53 "http://www.bitlbee.org/main.php/Messenger/oauth2.html",54 "wl.offline_access%20wl.messenger",55 "000000004C06FCD1",56 "IRKlBPzJJAWcY-TbZjiTEJu9tn7XCFaV",57 };58 49 59 50 xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data ) … … 63 54 struct xt_node *c, *reply; 64 55 char *s; 65 int sup_plain = 0, sup_digest = 0, sup_gtalk = 0, sup_fb = 0 , sup_ms = 0;56 int sup_plain = 0, sup_digest = 0, sup_gtalk = 0, sup_fb = 0; 66 57 int want_oauth = FALSE; 67 58 GString *mechs; … … 98 89 else if( c->text && g_strcasecmp( c->text, "X-FACEBOOK-PLATFORM" ) == 0 ) 99 90 sup_fb = 1; 100 else if( c->text && g_strcasecmp( c->text, "X-MESSENGER-OAUTH2" ) == 0 )101 sup_ms = 1;102 91 103 92 if( c->text ) … … 109 98 if( !want_oauth && !sup_plain && !sup_digest ) 110 99 { 111 if( !sup_gtalk && !sup_fb && !sup_ms)100 if( !sup_gtalk && !sup_fb ) 112 101 imcb_error( ic, "This server requires OAuth " 113 102 "(supported schemes:%s)", mechs->str ); … … 141 130 reply->text_len = strlen( reply->text ); 142 131 g_free( s ); 143 }144 else if( sup_ms && want_oauth )145 {146 xt_add_attr( reply, "mechanism", "X-MESSENGER-OAUTH2" );147 reply->text = g_strdup( jd->oauth2_access_token );148 reply->text_len = strlen( jd->oauth2_access_token );149 132 } 150 133 else if( sup_fb && want_oauth )
Note: See TracChangeset
for help on using the changeset viewer.