diff mcabber/mcabber/xmpp.c @ 1684:95df4ea512c8

Provide xmpp_is_online()
author Myhailo Danylenko <isbear@ukrpost.net>
date Tue, 19 Jan 2010 19:16:38 +0200
parents b09f82f61745
children 1342df44c814
line wrap: on
line diff
--- a/mcabber/mcabber/xmpp.c	Tue Jan 19 16:09:27 2010 +0200
+++ b/mcabber/mcabber/xmpp.c	Tue Jan 19 19:16:38 2010 +0200
@@ -93,6 +93,14 @@
   iqlast = time(NULL);
 }
 
+gboolean xmpp_is_online(void)
+{
+  if (lconnection && lm_connection_is_authenticated(lconnection))
+    return TRUE;
+  else
+    return FALSE;
+}
+
 // Note: the caller should check the jid is correct
 void xmpp_addbuddy(const char *bjid, const char *name, const char *group)
 {
@@ -100,7 +108,7 @@
   LmMessage *iq;
   char *cleanjid;
 
-  if (!lconnection || !lm_connection_is_authenticated(lconnection))
+  if (!xmpp_is_online())
     return;
 
   cleanjid = jidtodisp(bjid); // Stripping resource, just in case...
@@ -139,7 +147,7 @@
   LmMessageNode *x;
   char *cleanjid;
 
-  if (!lconnection || !lm_connection_is_authenticated(lconnection))
+  if (!xmpp_is_online())
     return;
 
   // XXX We should check name's and group's correctness
@@ -170,7 +178,7 @@
   LmMessage *iq;
   char *cleanjid;
 
-  if (!lconnection || !lm_connection_is_authenticated(lconnection))
+  if (!xmpp_is_online())
     return;
 
   cleanjid = jidtodisp(bjid); // Stripping resource, just in case...
@@ -306,7 +314,7 @@
   if (encrypted)
     *encrypted = 0;
 
-  if (!lconnection || !lm_connection_is_authenticated(lconnection))
+  if (!xmpp_is_online())
     return;
 
   if (!text && type == ROSTER_TYPE_USER)
@@ -487,7 +495,7 @@
   char *rjid, *fjid = NULL;
   struct jep0085 *jep85 = NULL;
 
-  if (!lconnection || !lm_connection_is_authenticated(lconnection))
+  if (!xmpp_is_online())
     return;
 
   sl_buddy = roster_find(bjid, jidsearch, ROSTER_TYPE_USER);
@@ -546,7 +554,7 @@
   struct jep0022 *jep22 = NULL;
   guint jep22_state;
 
-  if (!lconnection || !lm_connection_is_authenticated(lconnection))
+  if (!xmpp_is_online())
     return;
 
   rname = strchr(fjid, JID_RESOURCE_SEPARATOR);
@@ -1814,7 +1822,7 @@
   // Only send the packet if we're online.
   // (But we want to update internal status even when disconnected,
   // in order to avoid some problems during network failures)
-  if (lconnection && lm_connection_is_authenticated(lconnection)) {
+  if (xmpp_is_online()) {
     const char *s_msg = (st != invisible ? msg : NULL);
     m = lm_message_new_presence(st, recipient, s_msg);
     insert_entity_capabilities(m->node, st); // Entity Capabilities (XEP-0115)
@@ -1837,7 +1845,7 @@
   // If we didn't change our _global_ status, we are done
   if (recipient) return;
 
-  if (lconnection && lm_connection_is_authenticated(lconnection)) {
+  if (xmpp_is_online()) {
     // Send presence to chatrooms
     if (st != invisible) {
       struct T_presence room_presence;
@@ -2058,7 +2066,7 @@
   if (!changed)
     return;
 
-  if (lconnection && lm_connection_is_authenticated(lconnection))
+  if (xmpp_is_online())
     send_storage(bookmarks);
   else
     scr_LogPrint(LPRINT_LOGNORM,
@@ -2199,7 +2207,7 @@
   if (!changed)
     return;
 
-  if (lconnection && lm_connection_is_authenticated(lconnection))
+  if (xmpp_is_online())
     send_storage(rosternotes);
   else
     scr_LogPrint(LPRINT_LOGNORM,