aboutsummaryrefslogblamecommitdiffstats
path: root/src/cc-empathy-accounts-page.c
blob: 15c7e5689767a0446e0c953e7589142fb4470d27 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                          
                                                                             



























































































































































































                                                                                                                                                
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 *
 * Copyright (C) 2010 Red Hat, Inc.
 * Copyright (C) 2010 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 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "config.h"

#include <stdlib.h>
#include <stdio.h>

#include <gtk/gtk.h>
#include <gio/gio.h>
#include <glib/gi18n-lib.h>

#include <telepathy-glib/account-manager.h>
#include <libempathy/empathy-connection-managers.h>
#include <libempathy-gtk/empathy-ui-utils.h>

#include "cc-empathy-accounts-page.h"
#include "empathy-accounts-common.h"
#include "empathy-account-assistant.h"
#include "empathy-accounts-dialog.h"

#define CC_EMPATHY_ACCOUNTS_PAGE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), CC_TYPE_EMPATHY_ACCOUNTS_PAGE, CcEmpathyAccountsPagePrivate))

struct CcEmpathyAccountsPagePrivate
{
  /* the original window holding the dialog content; it needs to be retained and
   * destroyed in our finalize(), since it invalidates its children (even if
   * they've already been reparented by the time it is destroyed) */
  GtkWidget *accounts_window;
};

G_DEFINE_TYPE (CcEmpathyAccountsPage, cc_empathy_accounts_page, CC_TYPE_PAGE)

static void
page_pack_with_accounts_dialog (CcEmpathyAccountsPage *page)
{
  GtkWidget *content;
  GtkWidget *action_area;

  if (!page->priv->accounts_window)
    {
      page->priv->accounts_window = empathy_accounts_dialog_show (NULL, NULL);
      gtk_widget_hide (page->priv->accounts_window);

      content = gtk_dialog_get_content_area (
          GTK_DIALOG (page->priv->accounts_window));
      action_area = gtk_dialog_get_action_area (
          GTK_DIALOG (page->priv->accounts_window));
      gtk_widget_set_no_show_all (action_area, TRUE);
      gtk_widget_hide (action_area);

      gtk_widget_reparent (content, GTK_WIDGET (page));
    }
}

static void
connection_managers_prepare (GObject *source,
    GAsyncResult *result,
    gpointer user_data)
{
  EmpathyConnectionManagers *cm_mgr = EMPATHY_CONNECTION_MANAGERS (source);
  TpAccountManager *account_mgr;
  CcEmpathyAccountsPage *page;

  account_mgr = TP_ACCOUNT_MANAGER (g_object_get_data (G_OBJECT (cm_mgr),
      "account-manager"));
  page = CC_EMPATHY_ACCOUNTS_PAGE (g_object_get_data (G_OBJECT (cm_mgr),
        "page"));

  if (!empathy_connection_managers_prepare_finish (cm_mgr, result, NULL))
    goto out;

  page_pack_with_accounts_dialog (page);

  if (empathy_accounts_import (account_mgr, cm_mgr))
    empathy_account_assistant_show (NULL, cm_mgr);

out:
  /* remove ref from active_changed() */
  g_object_unref (account_mgr);
  g_object_unref (cm_mgr);
}

static void
account_manager_ready_for_accounts_cb (GObject *source_object,
    GAsyncResult *result,
    gpointer user_data)
{
  TpAccountManager *account_mgr = TP_ACCOUNT_MANAGER (source_object);
  CcEmpathyAccountsPage *page = CC_EMPATHY_ACCOUNTS_PAGE (user_data);
  GError *error = NULL;

  if (!tp_account_manager_prepare_finish (account_mgr, result, &error))
    {
      g_warning ("Failed to prepare account manager: %s", error->message);
      g_error_free (error);
      return;
    }

  if (empathy_accounts_has_non_salut_accounts (account_mgr))
    {
      page_pack_with_accounts_dialog (page);

      /* remove ref from active_changed() */
      g_object_unref (account_mgr);
    }
  else
    {
      EmpathyConnectionManagers *cm_mgr;

      cm_mgr = empathy_connection_managers_dup_singleton ();

      g_object_set_data_full (G_OBJECT (cm_mgr), "account-manager",
          g_object_ref (account_mgr), (GDestroyNotify) g_object_unref);
      g_object_set_data_full (G_OBJECT (cm_mgr), "page",
          g_object_ref (page), (GDestroyNotify) g_object_unref);

      empathy_connection_managers_prepare_async (cm_mgr,
          connection_managers_prepare, page);
    }
}

static void
active_changed (CcPage *base_page,
    gboolean is_active)
{
  CcEmpathyAccountsPage *page = CC_EMPATHY_ACCOUNTS_PAGE (base_page);
  TpAccountManager *account_manager;

  if (is_active)
    {
      /* unref'd in final endpoint callbacks */
      account_manager = tp_account_manager_dup ();

      tp_account_manager_prepare_async (account_manager, NULL,
          account_manager_ready_for_accounts_cb, page);
    }
}

static void
cc_empathy_accounts_page_finalize (GObject *object)
{
  CcEmpathyAccountsPage *page;

  g_return_if_fail (object != NULL);
  g_return_if_fail (CC_IS_EMPATHY_ACCOUNTS_PAGE (object));

  page = CC_EMPATHY_ACCOUNTS_PAGE (object);

  g_return_if_fail (page->priv != NULL);

  gtk_widget_destroy (page->priv->accounts_window);

  G_OBJECT_CLASS (cc_empathy_accounts_page_parent_class)->finalize (object);
}

static void
cc_empathy_accounts_page_class_init (CcEmpathyAccountsPageClass *klass)
{
  GObjectClass  *object_class = G_OBJECT_CLASS (klass);
  CcPageClass   *page_class = CC_PAGE_CLASS (klass);

  object_class->finalize = cc_empathy_accounts_page_finalize;

  page_class->active_changed = active_changed;

  g_type_class_add_private (klass, sizeof (CcEmpathyAccountsPagePrivate));
}

static void
cc_empathy_accounts_page_init (CcEmpathyAccountsPage *page)
{
  page->priv = CC_EMPATHY_ACCOUNTS_PAGE_GET_PRIVATE (page);

  empathy_gtk_init ();
}

CcPage *
cc_empathy_accounts_page_new (void)
{
  GObject *object;

  object = g_object_new (CC_TYPE_EMPATHY_ACCOUNTS_PAGE,
      "display-name", _("Messaging and VoIP Accounts"),
      "id", "general",
      NULL);

  return CC_PAGE (object);
}