Mercurial > pidgin
view src/protocols/msn/oim.c @ 19789:7e36832172a9
[gaim-migrate @ 16601]
change Windows Live ID authentication code style
to simplify the code.
add some comments
committed by Ma Yuan<mayuan2006@gmail.com>
committer: Ethan Blanton <elb@pidgin.im>
author | Ma Yuan <mayuan2006@gmail.com> |
---|---|
date | Sun, 30 Jul 2006 15:55:30 +0000 |
parents | 8b4653986e8e |
children | 4f21c73a0c48 |
line wrap: on
line source
/** * @file oim.c * get and send MSN offline Instant Message via SOAP request * Author * MaYuan<mayuan2006@gmail.com> * gaim * * Gaim is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "msn.h" #include "soap.h" #include "oim.h" /*new a OIM object*/ MsnOim * msn_oim_new(MsnSession *session) { MsnOim *oim; oim = g_new0(MsnOim, 1); oim->session = session; oim->retrieveconn = msn_soap_new(session,oim,1); oim->sendconn = msn_soap_new(session,oim,1); return oim; } /*destroy the oim object*/ void msn_oim_destroy(MsnOim *oim) { msn_soap_destroy(oim->retrieveconn); msn_soap_destroy(oim->sendconn); g_free(oim); } /**************************************** * OIM send SOAP request * **************************************/ /*oim SOAP server login error*/ static void msn_oim_send_error_cb(GaimSslConnection *gsc, GaimSslErrorType error, void *data) { MsnSoapConn *soapconn = data; MsnSession *session; session = soapconn->session; g_return_if_fail(session != NULL); msn_session_set_error(session, MSN_ERROR_SERV_DOWN, _("Unable to connect to OIM server")); } /*msn oim SOAP server connect process*/ static void msn_oim_send_connect_cb(gpointer data, GaimSslConnection *gsc, GaimInputCondition cond) { MsnSoapConn *soapconn = data; MsnSession * session; MsnOim *oim; oim = soapconn->parent; g_return_if_fail(oim != NULL); session = oim->session; g_return_if_fail(session != NULL); } void msn_oim_send_msg(MsnOim *oim,char *msg) { if(msn_soap_connected(oim->sendconn) == -1){ msn_soap_init(oim->sendconn,MSN_OIM_SEND_HOST,1, msn_oim_send_connect_cb, msn_oim_send_error_cb); } } /**************************************** * OIM get SOAP request * **************************************/ /*oim SOAP server login error*/ static void msn_oim_get_error_cb(GaimSslConnection *gsc, GaimSslErrorType error, void *data) { MsnSoapConn *soapconn = data; MsnSession *session; session = soapconn->session; g_return_if_fail(session != NULL); msn_session_set_error(session, MSN_ERROR_SERV_DOWN, _("Unable to connect to OIM server")); } /*msn oim SOAP server connect process*/ static void msn_oim_get_connect_cb(gpointer data, GaimSslConnection *gsc, GaimInputCondition cond) { MsnSoapConn *soapconn = data; MsnSession * session; MsnOim *oim; oim = soapconn->parent; g_return_if_fail(oim != NULL); session = oim->session; g_return_if_fail(session != NULL); } static void msn_oim_get_read_cb(gpointer data, GaimSslConnection *gsc, GaimInputCondition cond) { MsnSoapConn * soapconn = data; MsnOim * msnoim; gaim_debug_info("MaYuan","read buffer:{%s}\n",soapconn->body); } static void msn_oim_get_written_cb(gpointer data, gint source, GaimInputCondition cond) { MsnSoapConn * soapconn = data; soapconn->read_cb = msn_oim_get_read_cb; msn_soap_read_cb(data,source,cond); } /*get the conversation*/ static GaimConversation * msn_oim_get_conv(MsnOim *oim,char *passport) { GaimAccount *account; GaimConversation * conv; g_return_val_if_fail(oim != NULL, NULL); account = oim->session->account; conv = gaim_find_conversation_with_account(GAIM_CONV_TYPE_IM, passport, account); if(conv == NULL){ conv = gaim_conversation_new(GAIM_CONV_TYPE_IM, account, passport); } return conv; } /*put the OIM Message to User Conversation*/ void msn_oim_report_user(MsnOim *oim,const char *passport,char *msg) { GaimConversation * conv; if ((conv = msn_oim_get_conv(oim,passport)) != NULL){ gaim_conversation_write(conv, NULL, msg, GAIM_MESSAGE_SYSTEM, time(NULL)); } } /*parse the oim XML data*/ void msn_parse_oim_msg(MsnOim *oim,char *xmlmsg) { xmlnode *mdNode,*mNode,*INode,*nNode,*ENode,*rtNode; char *passport,*rTime,*msgid,*nickname; mdNode = xmlnode_from_str(xmlmsg, strlen(xmlmsg)); for(mNode = xmlnode_get_child(mdNode, "M"); mNode; mNode = xmlnode_get_next_twin(mNode)){ INode = xmlnode_get_child(mNode,"E"); passport = xmlnode_get_data(INode); INode = xmlnode_get_child(mNode,"I"); msgid = xmlnode_get_data(INode); rtNode = xmlnode_get_child(mNode,"RT"); rTime = xmlnode_get_data(rtNode); nNode = xmlnode_get_child(mNode,"N"); nickname = xmlnode_get_data(nNode); gaim_debug_info("MaYuan","E:{%s},I:{%s},rTime:{%s}\n",passport,msgid,rTime); // msn_oim_report_user(oim,passport,"hello"); msn_oim_get_msg(oim,msgid); } } /*MSN OIM get SOAP request*/ void msn_oim_get_msg(MsnOim *oim,char *msgid) { const char *oimid ,*oimsoapbody,*t,*p; if(msn_soap_connected(oim->retrieveconn) == -1){ gaim_debug_info("MaYuan","retreive OIM server not connected!\n"); return; } gaim_debug_info("MaYuan","Get OIM with SOAP \n"); oim->retrieveconn->login_path = g_strdup(MSN_OIM_RETRIEVE__URL); oim->retrieveconn->soap_action = g_strdup(MSN_OIM_GET_SOAP_ACTION); t = oim->session->passport_info.t; p = oim->session->passport_info.p; oimsoapbody = g_strdup_printf(MSN_OIM_GET_TEMPLATE, t, p, msgid ); msn_soap_post(oim->retrieveconn, oimsoapbody, msn_oim_get_written_cb); } /*msn oim server connect*/ void msn_oim_connect(MsnOim *oim) { gaim_debug_info("MaYuan","msn_oim_connect...\n"); msn_soap_init(oim->retrieveconn,MSN_OIM_RETRIEVE_HOST,1, msn_oim_get_connect_cb, msn_oim_get_error_cb); msn_soap_init(oim->sendconn,MSN_OIM_SEND_HOST,1, msn_oim_send_connect_cb, msn_oim_send_error_cb); } /*endof oim.c*/