aboutsummaryrefslogblamecommitdiffstats
path: root/libempathy/empathy-tp-chatroom.c
blob: de0a684c07faa3f897ae70515cea37751f1d74e0 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                           
                                         
  



                                                                     
  
                                                                  

                                                                    
                                                  
  


                                                                             





                                                 
                                
                                 


                             






                                                                        
                              
 


                                      




                                                                                          





                                                                                      













































                                                                                     




















































































                                                                                





                                            



                                          



                                                                 




                                                                     

                                                          
                                                    
                                                    



                                       
                                                              
 

                                                                   
                                    

                                                                     
                                    


                                                                    
 




                                    


                        

                                                                 
                                                                 







                                                                        
                      

                                         
                      









                                                                   
                                    




                                                             



                                









                                                    


                                                               

 
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2007-2008 Collabora Ltd.
 *
 * 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 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
 * Lesser General Public License for more details.
 *
 * 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 "empathy-tp-chatroom.h"
#include "empathy-contact-list.h"
#include "empathy-tp-group.h"
#include "empathy-utils.h"
#include "empathy-debug.h"

#define GET_PRIV(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
               EMPATHY_TYPE_TP_CHATROOM, EmpathyTpChatroomPriv))

#define DEBUG_DOMAIN "TpChatroom"

struct _EmpathyTpChatroomPriv {
    EmpathyTpGroup *group;

    gboolean        is_invited;
    EmpathyContact *invitor;
    gchar          *invit_message;
};

static void            empathy_tp_chatroom_class_init (EmpathyTpChatroomClass  *klass);
static void            tp_chatroom_iface_init         (EmpathyContactListIface *iface);
static void            empathy_tp_chatroom_init       (EmpathyTpChatroom       *chatroom);

G_DEFINE_TYPE_WITH_CODE (EmpathyTpChatroom, empathy_tp_chatroom, EMPATHY_TYPE_TP_CHAT,
             G_IMPLEMENT_INTERFACE (EMPATHY_TYPE_CONTACT_LIST,
                        tp_chatroom_iface_init));

static void
tp_chatroom_member_added_cb (EmpathyTpGroup    *group,
                 EmpathyContact    *contact,
                 EmpathyContact    *actor,
                 guint              reason,
                 const gchar       *message,
                 EmpathyTpChatroom *chatroom)
{
    g_signal_emit_by_name (chatroom, "members-changed",
                   contact, actor, reason, message,
                   TRUE);
}

static void
tp_chatroom_member_removed_cb (EmpathyTpGroup    *group,
                   EmpathyContact    *contact,
                   EmpathyContact    *actor,
                   guint              reason,
                   const gchar       *message,
                   EmpathyTpChatroom *chatroom)
{
    g_signal_emit_by_name (chatroom, "members-changed",
                   contact, actor, reason, message,
                   FALSE);
}
static void
tp_chatroom_local_pending_cb  (EmpathyTpGroup    *group,
                   EmpathyContact    *contact,
                   EmpathyContact    *actor,
                   guint              reason,
                   const gchar       *message,
                   EmpathyTpChatroom *chatroom)
{
    EmpathyTpChatroomPriv *priv = GET_PRIV (chatroom);

    if (empathy_contact_is_user (contact)) {
        priv->invitor = g_object_ref (actor);
        priv->invit_message = g_strdup (message);
        priv->is_invited = TRUE;

        empathy_debug (DEBUG_DOMAIN, "We are invited to join by %s (%d): %s",
                   empathy_contact_get_id (priv->invitor),
                   empathy_contact_get_handle (priv->invitor),
                   priv->invit_message);
    }
}

static void
tp_chatroom_add (EmpathyContactList *list,
         EmpathyContact     *contact,
         const gchar        *message)
{
    EmpathyTpChatroomPriv *priv;

    g_return_if_fail (EMPATHY_IS_TP_CHATROOM (list));
    g_return_if_fail (EMPATHY_IS_CONTACT (contact));

    priv = GET_PRIV (list);

    empathy_tp_group_add_member (priv->group, contact, message);
}

static void
tp_chatroom_remove (EmpathyContactList *list,
            EmpathyContact     *contact,
            const gchar        *message)
{
    EmpathyTpChatroomPriv *priv;

    g_return_if_fail (EMPATHY_IS_TP_CHATROOM (list));
    g_return_if_fail (EMPATHY_IS_CONTACT (contact));

    priv = GET_PRIV (list);

    empathy_tp_group_remove_member (priv->group, contact, message);
}

static GList *
tp_chatroom_get_members (EmpathyContactList *list)
{
    EmpathyTpChatroomPriv *priv;

    g_return_val_if_fail (EMPATHY_IS_TP_CHATROOM (list), NULL);

    priv = GET_PRIV (list);

    return empathy_tp_group_get_members (priv->group);
}

static void
tp_chatroom_finalize (GObject *object)
{
    EmpathyTpChatroomPriv *priv;
    EmpathyTpChatroom     *chatroom;

    chatroom = EMPATHY_TP_CHATROOM (object);
    priv = GET_PRIV (chatroom);

    g_object_unref (priv->group);

    if (priv->invitor) {
        g_object_unref (priv->invitor);
    }

    g_free (priv->invit_message);

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

static void
empathy_tp_chatroom_class_init (EmpathyTpChatroomClass *klass)
{
    GObjectClass *object_class = G_OBJECT_CLASS (klass);

    object_class->finalize = tp_chatroom_finalize;

    g_type_class_add_private (object_class, sizeof (EmpathyTpChatroomPriv));
}

static void
tp_chatroom_iface_init (EmpathyContactListIface *iface)
{
    iface->add         = tp_chatroom_add;
    iface->remove      = tp_chatroom_remove;
    iface->get_members = tp_chatroom_get_members;
}

static void
empathy_tp_chatroom_init (EmpathyTpChatroom *chatroom)
{
}

EmpathyTpChatroom *
empathy_tp_chatroom_new (McAccount *account,
             TpChan    *tp_chan)
{
    EmpathyTpChatroomPriv *priv;
    EmpathyTpChatroom     *chatroom;
    TpChannel             *channel;
    TpConnection          *connection;
    MissionControl        *mc;
    TpConn                *tp_conn;

    g_return_val_if_fail (MC_IS_ACCOUNT (account), NULL);
    g_return_val_if_fail (TELEPATHY_IS_CHAN (tp_chan), NULL);

    mc = empathy_mission_control_new ();
    tp_conn = mission_control_get_connection (mc, account, NULL);
    connection = tp_conn_dup_connection (tp_conn);
    channel = tp_chan_dup_channel (tp_chan, connection, NULL);

    chatroom = g_object_new (EMPATHY_TYPE_TP_CHATROOM,
                 "account", account,
                 "channel", channel,
                 "tp-chan", tp_chan,
                 NULL);

    priv = GET_PRIV (chatroom);

    priv->group = empathy_tp_group_new (account, tp_chan);

    g_signal_connect (priv->group, "member-added",
              G_CALLBACK (tp_chatroom_member_added_cb),
              chatroom);
    g_signal_connect (priv->group, "member-removed",
              G_CALLBACK (tp_chatroom_member_removed_cb),
              chatroom);
    g_signal_connect (priv->group, "local-pending",
              G_CALLBACK (tp_chatroom_local_pending_cb),
              chatroom);

    g_object_unref (channel);
    g_object_unref (tp_conn);
    g_object_unref (connection);
    g_object_unref (mc);

    return chatroom;
}

gboolean
empathy_tp_chatroom_get_invitation (EmpathyTpChatroom  *chatroom,
                    EmpathyContact     **contact,
                    const gchar       **message)
{
    EmpathyTpChatroomPriv *priv;

    g_return_val_if_fail (EMPATHY_IS_TP_CHATROOM (chatroom), FALSE);

    priv = GET_PRIV (chatroom);

    if (contact) {
        *contact = priv->invitor;
    }
    if (message) {
        *message = priv->invit_message;
    }

    return priv->is_invited;
}

void
empathy_tp_chatroom_accept_invitation (EmpathyTpChatroom *chatroom)
{
    EmpathyTpChatroomPriv *priv;
    EmpathyContact        *user;

    g_return_if_fail (EMPATHY_IS_TP_CHATROOM (chatroom));

    priv = GET_PRIV (chatroom);

    if (!priv->is_invited) {
        return;
    }

    /* Clear invitation data */
    priv->is_invited = FALSE;
    if (priv->invitor) {
        g_object_unref (priv->invitor);
        priv->invitor = NULL;
    }
    g_free (priv->invit_message);
    priv->invit_message = NULL;

    /* Add ourself in the members of the room */
    user = empathy_tp_group_get_self_contact (priv->group);
    empathy_tp_group_add_member (priv->group, user, "");
    g_object_unref (user);
}