aboutsummaryrefslogtreecommitdiff
path: root/src/ui/invite_contact.c
blob: 8e188600364d3a967b6db7803cf83f022cc84fe2 (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
/*
   This file is part of GNUnet.
   Copyright (C) 2021 GNUnet e.V.

   GNUnet is free software: you can redistribute it and/or modify it
   under the terms of the GNU Affero General Public License as published
   by the Free Software Foundation, either version 3 of the License,
   or (at your option) any later version.

   GNUnet 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
   Affero General Public License for more details.

   You should have received a copy of the GNU Affero General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.

   SPDX-License-Identifier: AGPL3.0-or-later
 */
/*
 * @author Tobias Frisch
 * @file ui/invite_contact.c
 */

#include "invite_contact.h"

#include "chat_entry.h"
#include "contact_entry.h"
#include "../application.h"

static void
handle_close_button_click(UNUSED GtkButton *button,
			  gpointer user_data)
{
  GtkDialog *dialog = GTK_DIALOG(user_data);
  gtk_window_close(GTK_WINDOW(dialog));
}

static void
handle_contacts_listbox_row_activated(GtkListBox* listbox,
				      GtkListBoxRow* row,
				      gpointer user_data)
{
  MESSENGER_Application *app = (MESSENGER_Application*) user_data;

  GtkTextView *text_view = GTK_TEXT_VIEW(
      g_hash_table_lookup(app->ui.bindings, listbox)
  );

  struct GNUNET_CHAT_Contact *contact = (struct GNUNET_CHAT_Contact*) (
      g_hash_table_lookup(app->ui.bindings, row)
  );

  if ((!contact) || (!GNUNET_CHAT_contact_get_key(contact)) ||
      (GNUNET_YES == GNUNET_CHAT_contact_is_owned(contact)) ||
      (!text_view))
    goto close_dialog;

  struct GNUNET_CHAT_Context *context = g_hash_table_lookup(
      app->ui.bindings, text_view
  );

  if (!context)
    goto close_dialog;

  const struct GNUNET_CHAT_Group *group = GNUNET_CHAT_context_get_group(
      context
  );

  if (group)
    GNUNET_CHAT_group_invite_contact(group, contact);

close_dialog:
  gtk_window_close(GTK_WINDOW(app->ui.invite_contact.dialog));
}

static gboolean
handle_contacts_listbox_filter_func(GtkListBoxRow *row,
				    gpointer user_data)
{
  UI_CONTACTS_Handle *handle = (UI_CONTACTS_Handle*) user_data;

  if (!gtk_list_box_row_get_selectable(row))
    return TRUE;

  const gchar *filter = gtk_entry_get_text(
      GTK_ENTRY(handle->contact_search_entry)
  );

  if (!filter)
    return TRUE;

  struct GNUNET_CHAT_Contact *contact = (struct GNUNET_CHAT_Contact*) (
      g_hash_table_lookup(handle->bindings, row)
  );

  if (!contact)
    return FALSE;

  const gchar *name = GNUNET_CHAT_contact_get_name(contact);

  if (!name)
    return FALSE;

  return g_str_match_string(filter, name, TRUE);
}

static void
handle_contact_search_entry_search_changed(UNUSED GtkSearchEntry* search_entry,
					   gpointer user_data)
{
  GtkListBox *listbox = GTK_LIST_BOX(user_data);

  gtk_list_box_invalidate_filter(listbox);
}

static void
handle_dialog_destroy(UNUSED GtkWidget *window,
		      gpointer user_data)
{
  ui_contacts_dialog_cleanup((UI_CONTACTS_Handle*) user_data);
}

static int
_iterate_contacts(void *cls,
		  UNUSED struct GNUNET_CHAT_Handle *handle,
		  struct GNUNET_CHAT_Contact *contact)
{
  if (GNUNET_YES == GNUNET_CHAT_contact_is_owned(contact))
    return GNUNET_YES;

  MESSENGER_Application *app = (MESSENGER_Application*) cls;

  const char *title;
  title = GNUNET_CHAT_contact_get_name(contact);

  const char *key = GNUNET_CHAT_contact_get_key(contact);

  UI_CONTACT_ENTRY_Handle *entry = ui_contact_entry_new(app);
  gtk_list_box_prepend(
      app->ui.invite_contact.contacts_listbox,
      entry->entry_box
  );

  if (title)
  {
    gtk_label_set_text(entry->title_label, title);
    hdy_avatar_set_text(entry->entry_avatar, title);
  }

  if (key)
    gtk_label_set_text(entry->subtitle_label, key);

  GtkListBoxRow *row = GTK_LIST_BOX_ROW(
      gtk_widget_get_parent(entry->entry_box)
  );

  g_hash_table_insert(app->ui.bindings, row, contact);

  app->ui.invite_contact.contact_entries = g_list_append(
      app->ui.invite_contact.contact_entries,
      entry
  );

  return GNUNET_YES;
}

void
ui_invite_contact_dialog_init(MESSENGER_Application *app,
			      UI_INVITE_CONTACT_Handle *handle)
{
  handle->contact_entries = NULL;
  handle->bindings = app->ui.bindings;

  handle->builder = gtk_builder_new_from_resource(
      application_get_resource_path(app, "ui/invite_contact.ui")
  );

  handle->dialog = GTK_DIALOG(
      gtk_builder_get_object(handle->builder, "invite_contact_dialog")
  );

  gtk_window_set_title(
      GTK_WINDOW(handle->dialog),
      _("Invite Contact")
  );

  gtk_window_set_transient_for(
      GTK_WINDOW(handle->dialog),
      GTK_WINDOW(app->ui.messenger.main_window)
  );

  handle->contact_search_entry = GTK_SEARCH_ENTRY(
      gtk_builder_get_object(handle->builder, "contact_search_entry")
  );

  handle->contacts_listbox = GTK_LIST_BOX(
      gtk_builder_get_object(handle->builder, "contacts_listbox")
  );

  gtk_list_box_set_filter_func(
      handle->contacts_listbox,
      handle_contacts_listbox_filter_func,
      handle,
      NULL
  );

  g_signal_connect(
      handle->contact_search_entry,
      "search-changed",
      G_CALLBACK(handle_contact_search_entry_search_changed),
      handle->contacts_listbox
  );

  g_signal_connect(
      handle->contacts_listbox,
      "row-activated",
      G_CALLBACK(handle_contacts_listbox_row_activated),
      app
  );

  handle->close_button = GTK_BUTTON(
      gtk_builder_get_object(handle->builder, "close_button")
  );

  g_signal_connect(
      handle->close_button,
      "clicked",
      G_CALLBACK(handle_close_button_click),
      handle->dialog
  );

  g_signal_connect(
      handle->dialog,
      "destroy",
      G_CALLBACK(handle_dialog_destroy),
      handle
  );

  GNUNET_CHAT_iterate_contacts(
      app->chat.messenger.handle,
      _iterate_contacts,
      app
  );

  gtk_list_box_invalidate_filter(handle->contacts_listbox);
}

void
ui_invite_contact_dialog_cleanup(UI_INVITE_CONTACT_Handle *handle)
{
  g_object_unref(handle->builder);

  GList *list = handle->contact_entries;

  while (list) {
    if (list->data)
      ui_contact_entry_delete((UI_CONTACT_ENTRY_Handle*) list->data);

    list = list->next;
  }

  if (handle->contact_entries)
    g_list_free(handle->contact_entries);
}