void CreateDiscussionsHandler::handleIqID( const IQ& iq, int context ) { json::jobject jobj; if (iq.m_subtype != gloox::IQ::Result) { universal_resource error_desc; ELOG("app")->error(WCOOL(L"创建讨论组时服务端返回错误。") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); error_desc = XL("biz.CreateDiscussions.fail"); callback_(true, error_desc, jobj); }else{ if(iq.findExtension(kExtUser_iq_filter_creatediscussions)) { boost::shared_ptr<gloox::Tag> tag(iq.findExtension(kExtUser_iq_filter_creatediscussions)->tag()); if (tag) { gloox::Tag* tag2 = tag->findChild("item"); if (tag) { jobj["session_id"] = gWrapInterface::instance().append_discussions_domain(tag2->findAttribute("id")); jobj["group_name"] = tag2->findAttribute("topic"); callback_(false,XL(""),jobj); return; } } } ELOG("app")->error(WCOOL(L"创建讨论组时服务端返回的数据格式错误。") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); callback_(true, XL("biz.CreateDiscussions.fail"), jobj); } }
bool CreateDiscussionsHandler::handleIq( const IQ& iq ) { if(iq.findExtension(kExtUser_iq_filter_creatediscussions)) { boost::shared_ptr<gloox::Tag> tag(iq.findExtension(kExtUser_iq_filter_creatediscussions)->tag()); if (tag) { gloox::Tag* tag2 = tag->findChild("item"); if (tag2) { json::jobject jobj; jobj["type"] = "add"; json::jobject group; group["session_id"] = gWrapInterface::instance().append_discussions_domain(tag2->findAttribute("id")); group["group_name"] = tag2->findAttribute("topic"); jobj["group_info"].arr_push(group); gWrapInterface::instance().discussions_list_change(jobj); return true; } } } ELOG("app")->error(WCOOL(L"创建讨论组时服务端返回的数据格式错误。") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); return false; }
void OrganizationShowHandller::handleIqID( const IQ& iq, int context ) { json::jobject jobj = json::jobject(); if (iq.m_subtype != gloox::IQ::Result) { universal_resource error_desc; ELOG("app")->error(WCOOL(L"组织结构树查看权限获取错误") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); error_desc = XL("biz.OrganizationShowHandller.fail"); callback_(true, error_desc,jobj); } else { boost::shared_ptr<gloox::Tag> ptag(iq.findExtension(kExtUser_iq_filter_organization_show)->tag()); if (ptag) { gloox::Tag* tag_basic_permission = ptag->findChild("basic_permissions"); if (tag_basic_permission) { ConstTagList ptag_list = tag_basic_permission->findTagList("//permission"); for (ConstTagList::iterator it = ptag_list.begin(); it != ptag_list.end(); ++it) { if ((*it)->findAttribute("name") == "show_organization") { if ((*it)->cdata() == "true") { jobj["is_show_organization"] = true; } else { jobj["is_show_organization"] = false; } callback_(false, XL(""),jobj); } } } } } }
/* <iq type=’result’from=’groups.ruijie.com.cn’ to=’[email protected]/pc’> <query xmlns=’groups:list’> <item id=’112’ name=’吃货群’ icon=”icon_url”v=”false” alert=”1”/> <item id=’113’ name=’开心群’ icon=”icon_url”v=”false” alert=”0”/> … </query> </iq> */ void GetGroupsListHandler::handleIqID( const IQ& iq, int context ) { json::jobject jobj; if (iq.m_subtype != gloox::IQ::Result) { const Error* e = iq.error(); if (!e) { callback_(true,XL("biz.GetGroupsList.fail"),jobj); return; } if ( e->error() == StanzaErrorBadRequest) { ELOG("app")->error(WCOOL(L"取群列表时,请求协议错误!。")); callback_(true,XL("biz.crwod.iq_error.bad-request"),jobj); } else if (e->error() == StanzaErrorInternalServerError) { ELOG("app")->error(WCOOL(L"取群列表时,处理错误(服务器处理错误)。")); callback_(true,XL("biz.crwod.iq_error.internal-server-error"),jobj); } else if (e->error() == StanzaErrorItemNotFound) { ELOG("app")->error(WCOOL(L"取群列表时,找不到此群。")); callback_(true,XL("biz.crwod.iq_error.item-not-found"),jobj); }else { ELOG("app")->error(WCOOL(L"取群列表时,服务器返回未知错误类型!") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); callback_(true,XL("biz.GetGroupsList.fail"),jobj); } }else{ if(iq.findExtension(kExtUser_iq_filter_getgroupslist)) { boost::shared_ptr<gloox::Tag> tag(iq.findExtension(kExtUser_iq_filter_getgroupslist)->tag()); if (tag) { //循环取得item gloox::TagList items; items = tag->findChildren("item"); TagList::const_iterator it = items.begin(); for( ; it != items.end(); ++it ) { json::jobject data; data["session_id"] = gWrapInterface::instance().append_groups_domain((*it)->findAttribute( "id" )); data["remark"] = (*it)->findAttribute( "remark" ); data["name"] = (*it)->findAttribute( "name" ); data["icon"] = (*it)->findAttribute( "icon" ); data["official"] = (*it)->findAttribute( "v" ); data["alert"] = (*it)->findAttribute( "alert" ); data["role"] = (*it)->findAttribute( "role" ); data["quit"] = (*it)->findAttribute( "quit" ); data["status"] = (*it)->findAttribute( "status" ); data["dismiss"] = (*it)->findAttribute( "dismiss" ); data["active"] = (*it)->findAttribute( "active" ); data["category"] = (*it)->findAttribute( "category" ); jobj.arr_push(data); } if (!callback_.empty()) { callback_(false, XL(""), jobj); } return; } } ELOG("app")->error(WCOOL(L"取群列表时服务端返回的数据格式错误。") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); if (!callback_.empty()) { universal_resource error_desc; error_desc = XL("biz.GetGroupsList.fail"); callback_(true, error_desc, jobj); } } }
void whistleVcardHandler::handleIqID( const IQ& iq, int context ) { switch( iq.subtype() ) { case IQ::Result: { switch( context ) { case VCardHandler::FetchVCard: { json::jobject jobj; json::jobject status = json::jobject(); if (iq.findExtension( ExtVCard )) { boost::shared_ptr<gloox::Tag> ptag(iq.findExtension( ExtVCard )->tag()); for (TagList::const_iterator cit = ptag->children().begin(); cit != ptag->children().end(); ++cit) { Tag* ptag = *cit; if (ptag->name() == s_VcardPrivacy) { jobj[ptag->name()] = json::jobject(ptag->cdata()); } else if (ptag->name() == s_VcardStatus) { //获取vcard协议改变 新的解析iq Tag* presource = ptag->findChild("resource"); Tag* pshow = ptag->findChild("show"); if ( presource && pshow) { json::jobject itemdata; itemdata["resource"] = presource->cdata(); itemdata["show"] = pshow->cdata(); status.arr_push(itemdata); } } else { jobj[ptag->name()] = ptag->cdata(); } } jobj[s_VcardJid] = iq.from().bare(); gwhistleVcard::instance().handleVCard(iq.from(), jobj, status, waitCallback_); } break; } case VCardHandler::StoreVCard: gwhistleVcard::instance().handleVCardResult(VCardHandler::StoreVCard, iq.from()); break; } } break; case IQ::Error: { switch( context ) { case VCardHandler::FetchVCard: if (!waitCallback_.empty()) { waitCallback_(); } else { gwhistleVcard::instance().updatedVcard(iq.from()); } break; case VCardHandler::StoreVCard: gwhistleVcard::instance().handleVCardResult( (VCardHandler::VCardContext)context, iq.from(), iq.error() ? iq.error()->error() : StanzaErrorUndefined ); break; } } default: break; } }
void GetGroupsShareListHandler::handleIqID( const IQ& iq, int context ) { json::jobject jobj,items,sets; if (iq.m_subtype != gloox::IQ::Result) { const Error* e = iq.error(); if (!e) { callback_(true,XL("biz.GetGroupsShareList.fail"),jobj); return; } if ( e->error() == StanzaErrorBadRequest) { ELOG("app")->error(WCOOL(L"取群共享列表时,请求协议错误!。")); callback_(true,XL("biz.crwod.iq_error.bad-request"),jobj); } else if (e->error() == StanzaErrorInternalServerError) { ELOG("app")->error(WCOOL(L"取群共享列表时,处理错误(服务器处理错误)。")); callback_(true,XL("biz.crwod.iq_error.internal-server-error"),jobj); } else if (e->error() == StanzaErrorItemNotFound) { ELOG("app")->error(WCOOL(L"取群共享列表时,找不到此群。")); callback_(true,XL("biz.crwod.iq_error.item-not-found"),jobj); }else { ELOG("app")->error(WCOOL(L"取群共享列表时,服务器返回未知错误类型!") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); callback_(true,XL("biz.GetGroupsShareList.fail"),jobj); } }else{ if(iq.findExtension(kExtUser_iq_filter_getgroupssharelist)) { boost::shared_ptr<gloox::Tag> tag(iq.findExtension(kExtUser_iq_filter_getgroupssharelist)->tag()); if (tag) { //循环取得item gloox::TagList item; item = tag->findChildren("item"); TagList::const_iterator it = item.begin(); gloox::Tag* setTag = tag->findChild("set"); if (setTag) { if (setTag->findChild( "index" )) { sets["index"]= setTag->findChild( "index" )->findCData( "index" ); } if (setTag->findChild( "max" )) { sets["max"]= setTag->findChild( "max" )->findCData( "max" ); } if (setTag->findChild( "total" )) { sets["total"]= setTag->findChild( "total" )->findCData( "total" ); } } jobj["set"]=sets; for( ; it != item.end(); ++it ) { json::jobject data; data["id"] = (*it)->findAttribute( "id" ); data["name"] = (*it)->findAttribute( "name" ); data["size"] = (*it)->findAttribute( "size" ); data["owner_jid"] = (*it)->findAttribute( "owner_jid" ); if ((*it)->findAttribute( "download_count" ).empty()) { data["download_count"] = "0"; } else { data["download_count"] = (*it)->findAttribute( "download_count" ); } std::string timestamp = (*it)->findAttribute( "create_time" ); data["timestamp"] = timestamp; if (!timestamp.empty()) { boost::posix_time::ptime t = boost::posix_time::from_time_t(boost::lexical_cast<intmax_t>(timestamp)/1000); boost::posix_time::ptime local_time = boost::date_time::c_local_adjustor<boost::posix_time::ptime>::utc_to_local(t); data["create_time"] = epius::time_format(local_time); } else { data["create_time"] = ""; } data["owner_name"] = (*it)->findAttribute( "owner_name" ); data["uri"] = (*it)->findAttribute( "uri" ); items.arr_push(data); } jobj["list"]=items; if (!callback_.empty()) { callback_(false, XL(""), jobj); } return; } } ELOG("app")->error(WCOOL(L"取群共享列表时服务端返回的数据格式错误。") + boost::shared_ptr<gloox::Tag>(iq.tag())->xml()); if (!callback_.empty()) { universal_resource error_desc; error_desc = XL("biz.GetGroupsShareList.fail"); callback_(true, error_desc, jobj); } } }