aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-contact-groups.c
blob: 81a1b3133f681591419f1af467e4fe0acf552959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2005-2007 Imendio AB
 *
 * 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
 *
 * Authors: Martyn Russell <martyn@imendio.com>
 */

#include "config.h"
#include "empathy-contact-groups.h"

#include <sys/stat.h>

#include "empathy-utils.h"

#define DEBUG_FLAG EMPATHY_DEBUG_CONTACT
#include "empathy-debug.h"

#define CONTACT_GROUPS_XML_FILENAME "contact-groups.xml"
#define CONTACT_GROUPS_DTD_RESOURCENAME "/org/gnome/Empathy/empathy-contact-groups.dtd"

typedef struct {
    gchar    *name;
    gboolean  expanded;
} ContactGroup;

static void          contact_groups_file_parse (const gchar  *filename);
static gboolean      contact_groups_file_save  (void);
static ContactGroup *contact_group_new         (const gchar  *name,
                        gboolean      expanded);
static void          contact_group_free        (ContactGroup *group);

static GList *groups = NULL;

void
empathy_contact_groups_get_all (void)
{
    gchar *dir;
    gchar *file_with_path;

    /* If already set up clean up first */
    if (groups) {
        g_list_foreach (groups, (GFunc)contact_group_free, NULL);
        g_list_free (groups);
        groups = NULL;
    }

    dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
    file_with_path = g_build_filename (dir, CONTACT_GROUPS_XML_FILENAME, NULL);
    g_free (dir);

    if (g_file_test (file_with_path, G_FILE_TEST_EXISTS)) {
        contact_groups_file_parse (file_with_path);
    }

    g_free (file_with_path);
}

static void
contact_groups_file_parse (const gchar *filename)
{
    xmlParserCtxtPtr ctxt;
    xmlDocPtr        doc;
    xmlNodePtr       contacts;
    xmlNodePtr       account;
    xmlNodePtr       node;

    DEBUG ("Attempting to parse file:'%s'...", filename);

    ctxt = xmlNewParserCtxt ();

    /* Parse and validate the file. */
    doc = xmlCtxtReadFile (ctxt, filename, NULL, 0);
    if (!doc) {
        g_warning ("Failed to parse file:'%s'", filename);
        xmlFreeParserCtxt (ctxt);
        return;
    }

    if (!empathy_xml_validate_from_resource (doc, CONTACT_GROUPS_DTD_RESOURCENAME)) {
        g_warning ("Failed to validate file:'%s'", filename);
        xmlFreeDoc (doc);
        xmlFreeParserCtxt (ctxt);
        return;
    }

    /* The root node, contacts. */
    contacts = xmlDocGetRootElement (doc);

    account = NULL;
    node = contacts->children;
    while (node) {
        if (strcmp ((gchar *) node->name, "account") == 0) {
            account = node;
            break;
        }
        node = node->next;
    }

    node = NULL;
    if (account) {
        node = account->children;
    }

    while (node) {
        if (strcmp ((gchar *) node->name, "group") == 0) {
            gchar        *name;
            gchar        *expanded_str;
            gboolean      expanded;
            ContactGroup *contact_group;

            name = (gchar *) xmlGetProp (node, (const xmlChar *) "name");
            expanded_str = (gchar *) xmlGetProp (node, (const xmlChar *) "expanded");

            if (expanded_str && strcmp (expanded_str, "yes") == 0) {
                expanded = TRUE;
            } else {
                expanded = FALSE;
            }

            contact_group = contact_group_new (name, expanded);
            groups = g_list_append (groups, contact_group);

            xmlFree (name);
            xmlFree (expanded_str);
        }

        node = node->next;
    }

    DEBUG ("Parsed %d contact groups", g_list_length (groups));

    xmlFreeDoc (doc);
    xmlFreeParserCtxt (ctxt);
}

static ContactGroup *
contact_group_new (const gchar *name,
           gboolean     expanded)
{
    ContactGroup *group;

    group = g_new0 (ContactGroup, 1);

    group->name = g_strdup (name);
    group->expanded = expanded;

    return group;
}

static void
contact_group_free (ContactGroup *group)
{
    g_return_if_fail (group != NULL);

    g_free (group->name);

    g_free (group);
}

static gboolean
contact_groups_file_save (void)
{
    xmlDocPtr   doc;
    xmlNodePtr  root;
    xmlNodePtr  node;
    GList      *l;
    gchar      *dir;
    gchar      *file;

    dir = g_build_filename (g_get_user_config_dir (), PACKAGE_NAME, NULL);
    g_mkdir_with_parents (dir, S_IRUSR | S_IWUSR | S_IXUSR);
    file = g_build_filename (dir, CONTACT_GROUPS_XML_FILENAME, NULL);
    g_free (dir);

    doc = xmlNewDoc ((const xmlChar *) "1.0");
    root = xmlNewNode (NULL, (const xmlChar *) "contacts");
    xmlDocSetRootElement (doc, root);

    node = xmlNewChild (root, NULL, (const xmlChar *) "account", NULL);
    xmlNewProp (node, (const xmlChar *) "name", (const xmlChar *) "Default");

    for (l = groups; l; l = l->next) {
        ContactGroup *cg;
        xmlNodePtr    subnode;

        cg = l->data;

        subnode = xmlNewChild (node, NULL, (const xmlChar *) "group", NULL);
        xmlNewProp (subnode, (const xmlChar *) "expanded", cg->expanded ?
                (const xmlChar *) "yes" : (const xmlChar *) "no");
        xmlNewProp (subnode, (const xmlChar *) "name", (const xmlChar *) cg->name);
    }

    /* Make sure the XML is indented properly */
    xmlIndentTreeOutput = 1;

    DEBUG ("Saving file:'%s'", file);
    xmlSaveFormatFileEnc (file, doc, "utf-8", 1);
    xmlFreeDoc (doc);

    xmlMemoryDump ();

    g_free (file);

    return TRUE;
}

gboolean
empathy_contact_group_get_expanded (const gchar *group)
{
    GList    *l;
    gboolean  default_val = TRUE;

    g_return_val_if_fail (group != NULL, default_val);

    for (l = groups; l; l = l->next) {
        ContactGroup *cg = l->data;

        if (!cg || !cg->name) {
            continue;
        }

        if (strcmp (cg->name, group) == 0) {
            return cg->expanded;
        }
    }

    return default_val;
}

void
empathy_contact_group_set_expanded (const gchar *group,
                   gboolean     expanded)
{
    GList        *l;
    ContactGroup *cg;
    gboolean      changed = FALSE;

    g_return_if_fail (group != NULL);

    for (l = groups; l; l = l->next) {
        cg = l->data;

        if (!cg || !cg->name) {
            continue;
        }

        if (strcmp (cg->name, group) == 0) {
            cg->expanded = expanded;
            changed = TRUE;
            break;
        }
    }

    /* if here... we don't have a ContactGroup for the group. */
    if (!changed) {
        cg = contact_group_new (group, expanded);
        groups = g_list_append (groups, cg);
    }

    contact_groups_file_save ();
}