1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-28 14:49:30 +00:00

contacts-provider: Add API to add new contacts

This commit is contained in:
Evangelos Ribeiro Tzaras 2022-01-06 19:52:06 +01:00
parent c6d867cd72
commit 5588bd934a
2 changed files with 33 additions and 0 deletions

View file

@ -448,4 +448,35 @@ calls_contacts_provider_get_can_add_contacts (CallsContactsProvider *self)
return self->can_add_contacts;
}
void
calls_contacts_provider_add_new_contact (CallsContactsProvider *self,
const char *phone_number)
{
GVariant *contact_parameter;
GVariantBuilder contact_builder;
CallsBestMatch *best_match;
g_return_if_fail (CALLS_IS_CONTACTS_PROVIDER (self));
g_return_if_fail (phone_number || *phone_number);
g_return_if_fail (self->can_add_contacts);
best_match = g_hash_table_lookup (self->best_matches, phone_number);
if (best_match && calls_best_match_has_individual (best_match)) {
g_warning ("Cannot add contact. Contact '%s' with number '%s' already exists",
calls_best_match_get_name (best_match), phone_number);
return;
}
g_variant_builder_init (&contact_builder, G_VARIANT_TYPE_ARRAY);
g_variant_builder_add (&contact_builder, "(ss)",
"phone-numbers",
phone_number);
contact_parameter = g_variant_builder_end (&contact_builder);
g_action_group_activate_action (G_ACTION_GROUP (self->contacts_action_group),
"new-contact-data",
contact_parameter);
}
#undef DBUS_BUS_NAME

View file

@ -57,5 +57,7 @@ void calls_contacts_provider_consume_iter_on_idle (GeeIterato
IdleCallback callback,
gpointer user_data);
gboolean calls_contacts_provider_get_can_add_contacts (CallsContactsProvider *self);
void calls_contacts_provider_add_new_contact (CallsContactsProvider *self,
const char *phone_number);
G_END_DECLS