]> git.0d.be Git - empathy.git/blobdiff - libempathy/empathy-idle.c
Add empathy_tp_chat_get_connection() to direct access the channel's connection.
[empathy.git] / libempathy / empathy-idle.c
index bf81160600b2c8ed4a806ee90ae87dad3815ba44..eeb183892e64ddab5ec42931ff1431997d01a051 100644 (file)
 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 /*
- * Copyright (C) 2007 Collabora Ltd.
+ * Copyright (C) 2007-2008 Collabora Ltd.
  *
- * 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 library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
  *
- * This program is distributed in the hope that it will be useful,
+ * This library 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.
+ * Lesser 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.
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  * 
  * Authors: Xavier Claessens <xclaesse@gmail.com>
  */
 
 #include <config.h>
 
-#include <glib/gi18n.h>
-#include <dbus/dbus-glib.h>
+#include <string.h>
 
-#include <libtelepathy/tp-helpers.h>
+#include <glib/gi18n-lib.h>
+#include <dbus/dbus-glib.h>
 
-#include <libmissioncontrol/mission-control.h>
+#include <telepathy-glib/dbus.h>
+#include <telepathy-glib/util.h>
+#include <libmissioncontrol/mc-enum-types.h>
 
 #include "empathy-idle.h"
-#include "gossip-utils.h" 
-#include "gossip-debug.h"
+#include "empathy-utils.h" 
 
-#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
-                      EMPATHY_TYPE_IDLE, EmpathyIdlePriv))
-
-#define DEBUG_DOMAIN "Idle"
+#define DEBUG_FLAG EMPATHY_DEBUG_OTHER
+#include "empathy-debug.h"
 
 /* Number of seconds before entering extended autoaway. */
 #define EXT_AWAY_TIME (30*60)
 
-enum {
-       LAST_SIGNAL
-};
-
-struct _EmpathyIdlePriv {
+#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyIdle)
+typedef struct {
        MissionControl *mc;
        DBusGProxy     *gs_proxy;
+       DBusGProxy     *nm_proxy;
+
+       McPresence      state;
+       gchar          *status;
+       McPresence      flash_state;
+       gboolean        auto_away;
+       gboolean        use_nm;
+
+       McPresence      away_saved_state;
+       McPresence      nm_saved_state;
+       gchar          *nm_saved_status;
+
        gboolean        is_idle;
-       McPresence      saved_state;
-       gchar          *saved_status;
+       gboolean        nm_connected;
        guint           ext_away_timeout;
+} EmpathyIdlePriv;
+
+typedef enum {
+       NM_STATE_UNKNOWN,
+       NM_STATE_ASLEEP,
+       NM_STATE_CONNECTING,
+       NM_STATE_CONNECTED,
+       NM_STATE_DISCONNECTED
+} NMState;
+
+enum {
+       PROP_0,
+       PROP_STATE,
+       PROP_STATUS,
+       PROP_FLASH_STATE,
+       PROP_AUTO_AWAY,
+       PROP_USE_NM
 };
 
-static void     empathy_idle_class_init      (EmpathyIdleClass *klass);
-static void     empathy_idle_init            (EmpathyIdle      *idle);
-static void     idle_finalize                (GObject          *object);
-static void     idle_session_idle_changed_cb (DBusGProxy       *gs_proxy,
-                                             gboolean          is_idle,
-                                             EmpathyIdle      *idle);
-static void     idle_ext_away_start          (EmpathyIdle      *idle);
-static void     idle_ext_away_stop           (EmpathyIdle      *idle);
-static gboolean idle_ext_away_cb             (EmpathyIdle      *idle);
+G_DEFINE_TYPE (EmpathyIdle, empathy_idle, G_TYPE_OBJECT);
+
+static EmpathyIdle * idle_singleton = NULL;
+
+static void
+idle_presence_changed_cb (MissionControl *mc,
+                         McPresence      state,
+                         gchar          *status,
+                         EmpathyIdle    *idle)
+{
+       EmpathyIdlePriv *priv;
+
+       priv = GET_PRIV (idle);
+
+       DEBUG ("Presence changed to '%s' (%d)", status, state);
+
+       g_free (priv->status);
+       priv->state = state;
+       priv->status = NULL;
+       if (!EMP_STR_EMPTY (status)) {
+               priv->status = g_strdup (status);
+       }
+
+       g_object_notify (G_OBJECT (idle), "state");
+       g_object_notify (G_OBJECT (idle), "status");
+}
+
+static gboolean
+idle_ext_away_cb (EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv;
+
+       priv = GET_PRIV (idle);
 
-//static guint signals[LAST_SIGNAL];
+       DEBUG ("Going to extended autoaway");
+       empathy_idle_set_state (idle, MC_PRESENCE_EXTENDED_AWAY);
+       priv->ext_away_timeout = 0;
 
-G_DEFINE_TYPE (EmpathyIdle, empathy_idle, G_TYPE_OBJECT)
+       return FALSE;
+}
 
 static void
-empathy_idle_class_init (EmpathyIdleClass *klass)
+idle_ext_away_stop (EmpathyIdle *idle)
 {
-       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+       EmpathyIdlePriv *priv;
 
-       object_class->finalize = idle_finalize;
+       priv = GET_PRIV (idle);
 
-       g_type_class_add_private (object_class, sizeof (EmpathyIdlePriv));
+       if (priv->ext_away_timeout) {
+               g_source_remove (priv->ext_away_timeout);
+               priv->ext_away_timeout = 0;
+       }
 }
 
 static void
-empathy_idle_init (EmpathyIdle *idle)
+idle_ext_away_start (EmpathyIdle *idle)
 {
        EmpathyIdlePriv *priv;
 
        priv = GET_PRIV (idle);
 
-       priv->is_idle = FALSE;
-       priv->mc = gossip_mission_control_new ();
-       priv->gs_proxy = dbus_g_proxy_new_for_name (tp_get_bus (),
-                                                   "org.gnome.ScreenSaver",
-                                                   "/org/gnome/ScreenSaver",
-                                                   "org.gnome.ScreenSaver");
-       if (!priv->gs_proxy) {
-               gossip_debug (DEBUG_DOMAIN, "Failed to get gs proxy");
+       if (priv->ext_away_timeout != 0) {
                return;
        }
+       priv->ext_away_timeout = g_timeout_add_seconds (EXT_AWAY_TIME,
+                                                       (GSourceFunc) idle_ext_away_cb,
+                                                       idle);
+}
 
-       dbus_g_proxy_add_signal (priv->gs_proxy, "SessionIdleChanged",
-                                G_TYPE_BOOLEAN,
-                                G_TYPE_INVALID);
-       dbus_g_proxy_connect_signal (priv->gs_proxy, "SessionIdleChanged",
-                                    G_CALLBACK (idle_session_idle_changed_cb),
-                                    idle, NULL);
+static void
+idle_session_idle_changed_cb (DBusGProxy  *gs_proxy,
+                             gboolean     is_idle,
+                             EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv;
+
+       priv = GET_PRIV (idle);
+
+       DEBUG ("Session idle state changed, %s -> %s",
+               priv->is_idle ? "yes" : "no",
+               is_idle ? "yes" : "no");
+
+       if (!priv->auto_away ||
+           (priv->nm_saved_state == MC_PRESENCE_UNSET &&
+            (priv->state <= MC_PRESENCE_OFFLINE ||
+             priv->state == MC_PRESENCE_HIDDEN))) {
+               /* We don't want to go auto away OR we explicitely asked to be
+                * offline, nothing to do here */
+               priv->is_idle = is_idle;
+               return;
+       }
+
+       if (is_idle && !priv->is_idle) {
+               McPresence new_state;
+               /* We are now idle */
+
+               idle_ext_away_start (idle);
+
+               if (priv->nm_saved_state != MC_PRESENCE_UNSET) {
+                       /* We are disconnected, when coming back from away
+                        * we want to restore the presence before the
+                        * disconnection. */
+                       priv->away_saved_state = priv->nm_saved_state;
+               } else {
+                       priv->away_saved_state = priv->state;
+               }
+
+               new_state = MC_PRESENCE_AWAY;
+               if (priv->state == MC_PRESENCE_EXTENDED_AWAY) {
+                       new_state = MC_PRESENCE_EXTENDED_AWAY;
+               }
+
+               DEBUG ("Going to autoaway. Saved state=%d, new state=%d",
+                       priv->away_saved_state, new_state);
+               empathy_idle_set_state (idle, new_state);
+       } else if (!is_idle && priv->is_idle) {
+               const gchar *new_status;
+               /* We are no more idle, restore state */
+
+               idle_ext_away_stop (idle);
+
+               if (priv->away_saved_state == MC_PRESENCE_AWAY ||
+                   priv->away_saved_state == MC_PRESENCE_EXTENDED_AWAY) {
+                       priv->away_saved_state = MC_PRESENCE_AVAILABLE;
+                       new_status = NULL;
+               } else {
+                       new_status = priv->status;
+               }
+
+               DEBUG ("Restoring state to %d, reset status to %s",
+                       priv->away_saved_state, new_status);
+
+               empathy_idle_set_presence (idle,
+                                          priv->away_saved_state,
+                                          new_status);
+
+               priv->away_saved_state = MC_PRESENCE_UNSET;
+       }
+
+       priv->is_idle = is_idle;
+}
+
+static void
+idle_nm_state_change_cb (DBusGProxy  *proxy,
+                        guint        state,
+                        EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv;
+       gboolean         old_nm_connected;
+       gboolean         new_nm_connected;
+
+       priv = GET_PRIV (idle);
+
+       if (!priv->use_nm) {
+               return;
+       }
+
+       old_nm_connected = priv->nm_connected;
+       new_nm_connected = !(state == NM_STATE_CONNECTING ||
+                            state == NM_STATE_DISCONNECTED);
+       priv->nm_connected = TRUE; /* To be sure _set_state will work */
+
+       DEBUG ("New network state %d", state);
+
+       if (old_nm_connected && !new_nm_connected) {
+               /* We are no more connected */
+               DEBUG ("Disconnected: Save state %d (%s)",
+                               priv->state, priv->status);
+               priv->nm_saved_state = priv->state;
+               g_free (priv->nm_saved_status);
+               priv->nm_saved_status = g_strdup (priv->status);
+               empathy_idle_set_state (idle, MC_PRESENCE_OFFLINE);
+       }
+       else if (!old_nm_connected && new_nm_connected) {
+               /* We are now connected */
+               DEBUG ("Reconnected: Restore state %d (%s)",
+                               priv->nm_saved_state, priv->nm_saved_status);
+               empathy_idle_set_presence (idle,
+                               priv->nm_saved_state,
+                               priv->nm_saved_status);
+               priv->nm_saved_state = MC_PRESENCE_UNSET;
+               g_free (priv->nm_saved_status);
+               priv->nm_saved_status = NULL;
+       }
+
+       priv->nm_connected = new_nm_connected;
 }
 
 static void
@@ -111,7 +272,7 @@ idle_finalize (GObject *object)
 
        priv = GET_PRIV (object);
 
-       g_free (priv->saved_status);
+       g_free (priv->status);
        g_object_unref (priv->mc);
 
        if (priv->gs_proxy) {
@@ -121,121 +282,399 @@ idle_finalize (GObject *object)
        idle_ext_away_stop (EMPATHY_IDLE (object));
 }
 
-EmpathyIdle *
-empathy_idle_new (void)
+static GObject *
+idle_constructor (GType type,
+                 guint n_props,
+                 GObjectConstructParam *props)
 {
-       static EmpathyIdle *idle = NULL;
+       GObject *retval;
 
-       if (!idle) {
-               idle = g_object_new (EMPATHY_TYPE_IDLE, NULL);
-               g_object_add_weak_pointer (G_OBJECT (idle), (gpointer) &idle);
+       if (idle_singleton) {
+               retval = g_object_ref (idle_singleton);
        } else {
-               g_object_ref (idle);
+               retval = G_OBJECT_CLASS (empathy_idle_parent_class)->constructor
+                       (type, n_props, props);
+
+               idle_singleton = EMPATHY_IDLE (retval);
+               g_object_add_weak_pointer (retval, (gpointer) &idle_singleton);
        }
 
-       return idle;
+       return retval;
 }
 
 static void
-idle_session_idle_changed_cb (DBusGProxy  *gs_proxy,
-                             gboolean     is_idle,
-                             EmpathyIdle *idle)
+idle_get_property (GObject    *object,
+                  guint       param_id,
+                  GValue     *value,
+                  GParamSpec *pspec)
 {
        EmpathyIdlePriv *priv;
+       EmpathyIdle     *idle;
 
-       priv = GET_PRIV (idle);
+       priv = GET_PRIV (object);
+       idle = EMPATHY_IDLE (object);
+
+       switch (param_id) {
+       case PROP_STATE:
+               g_value_set_enum (value, empathy_idle_get_state (idle));
+               break;
+       case PROP_STATUS:
+               g_value_set_string (value, empathy_idle_get_status (idle));
+               break;
+       case PROP_FLASH_STATE:
+               g_value_set_enum (value, empathy_idle_get_flash_state (idle));
+               break;
+       case PROP_AUTO_AWAY:
+               g_value_set_boolean (value, empathy_idle_get_auto_away (idle));
+               break;
+       case PROP_USE_NM:
+               g_value_set_boolean (value, empathy_idle_get_use_nm (idle));
+               break;
+       default:
+               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
+               break;
+       };
+}
 
-       gossip_debug (DEBUG_DOMAIN, "Session idle state changed, %s -> %s",
-                     priv->is_idle ? "yes" : "no",
-                     is_idle ? "yes" : "no");
+static void
+idle_set_property (GObject      *object,
+                  guint         param_id,
+                  const GValue *value,
+                  GParamSpec   *pspec)
+{
+       EmpathyIdlePriv *priv;
+       EmpathyIdle     *idle;
 
-       if (is_idle && !priv->is_idle) {
-               McPresence new_state = MC_PRESENCE_AWAY;
-               /* We are now idle, set state to away */
-
-               priv->saved_state = mission_control_get_presence_actual (priv->mc, NULL);
-
-               if (priv->saved_state <= MC_PRESENCE_OFFLINE ||
-                   priv->saved_state == MC_PRESENCE_HIDDEN) {
-                       /* We are not online so nothing to do here */
-                       return;
-               } else if (priv->saved_state == MC_PRESENCE_AWAY ||
-                          priv->saved_state == MC_PRESENCE_EXTENDED_AWAY) {
-                       /* User set away manually, when coming back we restore
-                        * default presence. */
-                       new_state = priv->saved_state;
-                       priv->saved_state = MC_PRESENCE_AVAILABLE;
-                       priv->saved_status = NULL;
+       priv = GET_PRIV (object);
+       idle = EMPATHY_IDLE (object);
+
+       switch (param_id) {
+       case PROP_STATE:
+               empathy_idle_set_state (idle, g_value_get_enum (value));
+               break;
+       case PROP_STATUS:
+               empathy_idle_set_status (idle, g_value_get_string (value));
+               break;
+       case PROP_FLASH_STATE:
+               empathy_idle_set_flash_state (idle, g_value_get_enum (value));
+               break;
+       case PROP_AUTO_AWAY:
+               empathy_idle_set_auto_away (idle, g_value_get_boolean (value));
+               break;
+       case PROP_USE_NM:
+               empathy_idle_set_use_nm (idle, g_value_get_boolean (value));
+               break;
+       default:
+               G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
+               break;
+       };
+}
+
+static void
+empathy_idle_class_init (EmpathyIdleClass *klass)
+{
+       GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+       object_class->finalize = idle_finalize;
+       object_class->constructor = idle_constructor;
+       object_class->get_property = idle_get_property;
+       object_class->set_property = idle_set_property;
+
+       g_object_class_install_property (object_class,
+                                        PROP_STATE,
+                                        g_param_spec_enum ("state",
+                                                           "state",
+                                                           "state",
+                                                           MC_TYPE_PRESENCE,
+                                                           MC_PRESENCE_AVAILABLE,
+                                                           G_PARAM_READWRITE));
+       g_object_class_install_property (object_class,
+                                        PROP_STATUS,
+                                        g_param_spec_string ("status",
+                                                             "status",
+                                                             "status",
+                                                             NULL,
+                                                             G_PARAM_READWRITE));
+       g_object_class_install_property (object_class,
+                                        PROP_FLASH_STATE,
+                                        g_param_spec_enum ("flash-state",
+                                                           "flash-state",
+                                                           "flash-state",
+                                                           MC_TYPE_PRESENCE,
+                                                           MC_PRESENCE_UNSET,
+                                                           G_PARAM_READWRITE));
+
+        g_object_class_install_property (object_class,
+                                         PROP_AUTO_AWAY,
+                                         g_param_spec_boolean ("auto-away",
+                                                               "Automatic set presence to away",
+                                                               "Should it set presence to away if inactive",
+                                                               FALSE,
+                                                               G_PARAM_READWRITE));
+
+        g_object_class_install_property (object_class,
+                                         PROP_USE_NM,
+                                         g_param_spec_boolean ("use-nm",
+                                                               "Use Network Manager",
+                                                               "Set presence according to Network Manager",
+                                                               FALSE,
+                                                               G_PARAM_READWRITE));
+
+       g_type_class_add_private (object_class, sizeof (EmpathyIdlePriv));
+}
+
+static void
+empathy_idle_init (EmpathyIdle *idle)
+{
+       DBusGConnection *system_bus;
+       GError          *error = NULL;
+       EmpathyIdlePriv *priv = G_TYPE_INSTANCE_GET_PRIVATE (idle,
+               EMPATHY_TYPE_IDLE, EmpathyIdlePriv);
+
+       idle->priv = priv;
+       priv->is_idle = FALSE;
+       priv->mc = empathy_mission_control_dup_singleton ();
+       priv->state = mission_control_get_presence_actual (priv->mc, &error);
+       if (error) {
+               DEBUG ("Error getting actual presence: %s", error->message);
+
+               priv->state = MC_PRESENCE_UNSET;
+               g_clear_error (&error);
+       }
+       priv->status = mission_control_get_presence_message_actual (priv->mc, &error);
+       if (error || EMP_STR_EMPTY (priv->status)) {
+               g_free (priv->status);
+               priv->status = NULL;
+
+               if (error) {
+                       DEBUG ("Error getting actual presence message: %s", error->message);
+                       g_clear_error (&error);
                }
+       }
 
-               priv->saved_status = mission_control_get_presence_message_actual (priv->mc, NULL);
+       dbus_g_proxy_connect_signal (DBUS_G_PROXY (priv->mc),
+                                    "PresenceChanged",
+                                    G_CALLBACK (idle_presence_changed_cb),
+                                    idle, NULL);
 
-               gossip_debug (DEBUG_DOMAIN, "Going to autoaway");
-               mission_control_set_presence (priv->mc,
-                                             new_state,
-                                             priv->saved_status,
-                                             NULL, NULL);
-               idle_ext_away_start (idle);
-       } else if (!is_idle && priv->is_idle) {
-               /* We are no more idle, restore state */
-               idle_ext_away_stop (idle);
+       priv->gs_proxy = dbus_g_proxy_new_for_name (tp_get_bus (),
+                                                   "org.gnome.ScreenSaver",
+                                                   "/org/gnome/ScreenSaver",
+                                                   "org.gnome.ScreenSaver");
+       if (priv->gs_proxy) {
+               dbus_g_proxy_add_signal (priv->gs_proxy, "SessionIdleChanged",
+                                        G_TYPE_BOOLEAN,
+                                        G_TYPE_INVALID);
+               dbus_g_proxy_connect_signal (priv->gs_proxy, "SessionIdleChanged",
+                                            G_CALLBACK (idle_session_idle_changed_cb),
+                                            idle, NULL);
+       } else {
+               DEBUG ("Failed to get gs proxy");
+       }
 
-               gossip_debug (DEBUG_DOMAIN, "Restoring state to %d %s",
-                             priv->saved_state,
-                             priv->saved_status);
 
-               mission_control_set_presence (priv->mc,
-                                             priv->saved_state,
-                                             priv->saved_status,
-                                             NULL, NULL);
-               g_free (priv->saved_status);
-               priv->saved_status = NULL;
+       system_bus = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
+       if (!system_bus) {
+               DEBUG ("Failed to get system bus: %s",
+                       error ? error->message : "No error given");
+       } else {
+               priv->nm_proxy = dbus_g_proxy_new_for_name (system_bus,
+                                                           "org.freedesktop.NetworkManager",
+                                                           "/org/freedesktop/NetworkManager",
+                                                           "org.freedesktop.NetworkManager");
+       }
+       if (priv->nm_proxy) {
+               dbus_g_proxy_add_signal (priv->nm_proxy, "StateChange",
+                                        G_TYPE_UINT, G_TYPE_INVALID);
+               dbus_g_proxy_connect_signal (priv->nm_proxy, "StateChange",
+                                            G_CALLBACK (idle_nm_state_change_cb),
+                                            idle, NULL);
+       } else {
+               DEBUG ("Failed to get nm proxy");
        }
 
-       priv->is_idle = is_idle;
+       priv->nm_connected = TRUE;
 }
 
-static void
-idle_ext_away_start (EmpathyIdle *idle)
+EmpathyIdle *
+empathy_idle_dup_singleton (void)
+{
+       return g_object_new (EMPATHY_TYPE_IDLE, NULL);
+}
+
+McPresence
+empathy_idle_get_state (EmpathyIdle *idle)
 {
        EmpathyIdlePriv *priv;
 
        priv = GET_PRIV (idle);
 
-       idle_ext_away_stop (idle);
-       priv->ext_away_timeout = g_timeout_add (EXT_AWAY_TIME * 1000,
-                                               (GSourceFunc) idle_ext_away_cb,
-                                               idle);
+       return priv->state;
 }
 
-static void
-idle_ext_away_stop (EmpathyIdle *idle)
+void
+empathy_idle_set_state (EmpathyIdle *idle,
+                       McPresence   state)
 {
        EmpathyIdlePriv *priv;
 
        priv = GET_PRIV (idle);
 
-       if (priv->ext_away_timeout) {
-               g_source_remove (priv->ext_away_timeout);
-               priv->ext_away_timeout = 0;
+       empathy_idle_set_presence (idle, state, priv->status);
+}
+
+const gchar *
+empathy_idle_get_status (EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv;
+
+       priv = GET_PRIV (idle);
+
+       if (!priv->status) {
+               return empathy_presence_get_default_message (priv->state);
        }
+
+       return priv->status;
 }
 
-static gboolean
-idle_ext_away_cb (EmpathyIdle *idle)
+void
+empathy_idle_set_status (EmpathyIdle *idle,
+                        const gchar *status)
 {
        EmpathyIdlePriv *priv;
 
        priv = GET_PRIV (idle);
 
-       gossip_debug (DEBUG_DOMAIN, "Going to extended autoaway");
-       mission_control_set_presence (priv->mc,
-                                     MC_PRESENCE_EXTENDED_AWAY,
-                                     _("Extended autoaway"),
-                                     NULL, NULL);
+       empathy_idle_set_presence (idle, priv->state, status);
+}
 
-       priv->ext_away_timeout = 0;
+McPresence
+empathy_idle_get_flash_state (EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv;
 
-       return FALSE;
+       priv = GET_PRIV (idle);
+
+       return priv->flash_state;
+}
+
+void
+empathy_idle_set_flash_state (EmpathyIdle *idle,
+                             McPresence   state)
+{
+       EmpathyIdlePriv *priv;
+
+       priv = GET_PRIV (idle);
+
+       priv->flash_state = state;
+
+       if (state == MC_PRESENCE_UNSET) {
+       }
+
+       g_object_notify (G_OBJECT (idle), "flash-state");
+}
+
+void
+empathy_idle_set_presence (EmpathyIdle *idle,
+                          McPresence   state,
+                          const gchar *status)
+{
+       EmpathyIdlePriv *priv;
+       const gchar     *default_status;
+
+       priv = GET_PRIV (idle);
+
+       DEBUG ("Changing presence to %s (%d)", status, state);
+
+       /* Do not set translated default messages */
+       default_status = empathy_presence_get_default_message (state);
+       if (!tp_strdiff (status, default_status)) {
+               status = NULL;
+       }
+
+       if (!priv->nm_connected) {
+               DEBUG ("NM not connected");
+
+               priv->nm_saved_state = state;
+               if (tp_strdiff (priv->status, status)) {
+                       g_free (priv->status);
+                       priv->status = NULL;
+                       if (!EMP_STR_EMPTY (status)) {
+                               priv->status = g_strdup (status);
+                       }
+                       g_object_notify (G_OBJECT (idle), "status");
+               }
+
+               return;
+       }
+
+       mission_control_set_presence (priv->mc, state, status, NULL, NULL);
+}
+
+gboolean
+empathy_idle_get_auto_away (EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv = GET_PRIV (idle);
+
+       return priv->auto_away;
+}
+
+void
+empathy_idle_set_auto_away (EmpathyIdle *idle,
+                           gboolean     auto_away)
+{
+       EmpathyIdlePriv *priv = GET_PRIV (idle);
+
+       priv->auto_away = auto_away;
+
+       g_object_notify (G_OBJECT (idle), "auto-away");
+}
+
+gboolean
+empathy_idle_get_use_nm (EmpathyIdle *idle)
+{
+       EmpathyIdlePriv *priv = GET_PRIV (idle);
+
+       return priv->use_nm;
+}
+
+void
+empathy_idle_set_use_nm (EmpathyIdle *idle,
+                        gboolean     use_nm)
+{
+       EmpathyIdlePriv *priv = GET_PRIV (idle);
+
+       if (!priv->nm_proxy || use_nm == priv->use_nm) {
+               return;
+       }
+
+       priv->use_nm = use_nm;
+
+       if (use_nm) {
+               guint   nm_status;
+               GError *error = NULL;
+
+               dbus_g_proxy_call (priv->nm_proxy, "state",
+                                  &error,
+                                  G_TYPE_INVALID,
+                                  G_TYPE_UINT, &nm_status,
+                                  G_TYPE_INVALID);
+
+               if (error) {
+                       DEBUG ("Couldn't get NM state: %s", error->message);
+                       g_clear_error (&error);
+                       nm_status = NM_STATE_ASLEEP;
+               }
+               
+               idle_nm_state_change_cb (priv->nm_proxy, nm_status, idle);
+       } else {
+               priv->nm_connected = TRUE;
+               if (priv->nm_saved_state != MC_PRESENCE_UNSET) {
+                       empathy_idle_set_state (idle, priv->nm_saved_state);
+               }
+               priv->nm_saved_state = MC_PRESENCE_UNSET;
+       }
+
+       g_object_notify (G_OBJECT (idle), "use-nm");
 }