mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-15 04:45:36 +00:00
7971fb5afb
Credentials can be set through a config file. The config file is parsed by CallsSipProvider in order to add origins for each SIP account.
244 lines
6.2 KiB
C
244 lines
6.2 KiB
C
/*
|
|
* Copyright (C) 2021 Purism SPC
|
|
*
|
|
* This file is part of Calls.
|
|
*
|
|
* Calls 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Calls 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 Calls. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Author: Evangelos Ribeiro Tzaras <evangelos.tzaras@puri.sm>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
*/
|
|
|
|
#include "calls-sip-provider.h"
|
|
|
|
#include "calls-message-source.h"
|
|
#include "calls-provider.h"
|
|
#include "calls-sip-origin.h"
|
|
|
|
#include <libpeas/peas.h>
|
|
|
|
|
|
#define SIP_ACCOUNT_FILE "sip-account.cfg"
|
|
|
|
struct _CallsSipProvider
|
|
{
|
|
CallsProvider parent_instance;
|
|
|
|
GListStore *origins;
|
|
/* SIP */
|
|
|
|
gchar *filename;
|
|
};
|
|
|
|
static void calls_sip_provider_message_source_interface_init (CallsMessageSourceInterface *iface);
|
|
|
|
|
|
G_DEFINE_DYNAMIC_TYPE_EXTENDED
|
|
(CallsSipProvider, calls_sip_provider, CALLS_TYPE_PROVIDER, 0,
|
|
G_IMPLEMENT_INTERFACE_DYNAMIC (CALLS_TYPE_MESSAGE_SOURCE,
|
|
calls_sip_provider_message_source_interface_init))
|
|
|
|
static gboolean
|
|
check_required_keys (GKeyFile *key_file,
|
|
const gchar *group_name)
|
|
{
|
|
gchar *keys[] = {
|
|
"User",
|
|
"Password",
|
|
"Host",
|
|
"Protocol",
|
|
};
|
|
|
|
for (gsize i = 0; i < G_N_ELEMENTS (keys); i++) {
|
|
if (!g_key_file_has_key (key_file, group_name, keys[i], NULL))
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
calls_sip_provider_load_accounts (CallsSipProvider *self)
|
|
{
|
|
g_autoptr (GError) error = NULL;
|
|
g_autoptr (GKeyFile) key_file = g_key_file_new ();
|
|
gchar **groups = NULL;
|
|
|
|
g_assert (CALLS_IS_SIP_PROVIDER (self));
|
|
|
|
if (!g_key_file_load_from_file (key_file, self->filename, G_KEY_FILE_NONE, &error)) {
|
|
g_warning ("Error loading key file: %s", error->message);
|
|
return;
|
|
}
|
|
|
|
groups = g_key_file_get_groups (key_file, NULL);
|
|
|
|
for (gsize i = 0; groups[i] != NULL; i++) {
|
|
g_autofree gchar *user = NULL;
|
|
g_autofree gchar *password = NULL;
|
|
g_autofree gchar *host = NULL;
|
|
g_autofree gchar *protocol = NULL;
|
|
gboolean direct_connection =
|
|
g_key_file_get_boolean (key_file, groups[i], "Direct", NULL);
|
|
|
|
if (direct_connection)
|
|
goto skip;
|
|
|
|
if (!check_required_keys (key_file, groups[i])) {
|
|
g_warning ("Not all required keys found in section %s of file `%s'",
|
|
groups[i], self->filename);
|
|
continue;
|
|
}
|
|
|
|
user = g_key_file_get_string (key_file, groups[i], "User", NULL);
|
|
password = g_key_file_get_string (key_file, groups[i], "Password", NULL);
|
|
host = g_key_file_get_string (key_file, groups[i], "Host", NULL);
|
|
protocol = g_key_file_get_string (key_file, groups[i], "Protocol", NULL);
|
|
|
|
skip:
|
|
if (protocol == NULL)
|
|
protocol = g_strdup ("UDP");
|
|
|
|
g_debug ("Adding origin for SIP account %s", groups[i]);
|
|
|
|
calls_sip_provider_add_origin (self, groups[i], user, password, host, protocol, direct_connection);
|
|
}
|
|
|
|
g_strfreev (groups);
|
|
}
|
|
|
|
static const char *
|
|
calls_sip_provider_get_name (CallsProvider *provider)
|
|
{
|
|
return "SIP provider";
|
|
}
|
|
|
|
static const char *
|
|
calls_sip_provider_get_status (CallsProvider *provider)
|
|
{
|
|
return "Normal";
|
|
}
|
|
|
|
static GListModel *
|
|
calls_sip_provider_get_origins (CallsProvider *provider)
|
|
{
|
|
CallsSipProvider *self = CALLS_SIP_PROVIDER (provider);
|
|
|
|
return G_LIST_MODEL (self->origins);
|
|
}
|
|
|
|
static void
|
|
calls_sip_provider_constructed (GObject *object)
|
|
{
|
|
CallsSipProvider *self = CALLS_SIP_PROVIDER (object);
|
|
|
|
calls_sip_provider_load_accounts (self);
|
|
|
|
G_OBJECT_CLASS (calls_sip_provider_parent_class)->constructed (object);
|
|
}
|
|
|
|
|
|
static void
|
|
calls_sip_provider_dispose (GObject *object)
|
|
{
|
|
CallsSipProvider *self = CALLS_SIP_PROVIDER (object);
|
|
|
|
g_list_store_remove_all (self->origins);
|
|
g_clear_object (&self->origins);
|
|
|
|
g_free (self->filename);
|
|
self->filename = NULL;
|
|
|
|
G_OBJECT_CLASS (calls_sip_provider_parent_class)->dispose (object);
|
|
}
|
|
|
|
|
|
static void
|
|
calls_sip_provider_class_init (CallsSipProviderClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
CallsProviderClass *provider_class = CALLS_PROVIDER_CLASS (klass);
|
|
|
|
object_class->constructed = calls_sip_provider_constructed;
|
|
object_class->dispose = calls_sip_provider_dispose;
|
|
|
|
provider_class->get_name = calls_sip_provider_get_name;
|
|
provider_class->get_status = calls_sip_provider_get_status;
|
|
provider_class->get_origins = calls_sip_provider_get_origins;
|
|
}
|
|
|
|
|
|
static void
|
|
calls_sip_provider_message_source_interface_init (CallsMessageSourceInterface *iface)
|
|
{
|
|
}
|
|
|
|
|
|
static void
|
|
calls_sip_provider_init (CallsSipProvider *self)
|
|
{
|
|
self->origins = g_list_store_new (CALLS_TYPE_SIP_ORIGIN);
|
|
}
|
|
|
|
|
|
void
|
|
calls_sip_provider_add_origin (CallsSipProvider *self,
|
|
const gchar *name,
|
|
const gchar *user,
|
|
const gchar *password,
|
|
const gchar *host,
|
|
const gchar *protocol,
|
|
gboolean direct_connection)
|
|
{
|
|
g_autoptr (CallsSipOrigin) origin =
|
|
calls_sip_origin_new (name,
|
|
user,
|
|
password,
|
|
host,
|
|
protocol,
|
|
direct_connection);
|
|
|
|
|
|
g_list_store_append (self->origins, origin);
|
|
}
|
|
|
|
|
|
CallsSipProvider *
|
|
calls_sip_provider_new ()
|
|
{
|
|
return g_object_new (CALLS_TYPE_SIP_PROVIDER, NULL);
|
|
}
|
|
|
|
|
|
#ifndef FOR_TESTING
|
|
|
|
static void
|
|
calls_sip_provider_class_finalize (CallsSipProviderClass *klass)
|
|
{
|
|
}
|
|
|
|
|
|
G_MODULE_EXPORT void
|
|
peas_register_types (PeasObjectModule *module)
|
|
{
|
|
calls_sip_provider_register_type (G_TYPE_MODULE (module));
|
|
|
|
peas_object_module_register_extension_type (module,
|
|
CALLS_TYPE_PROVIDER,
|
|
CALLS_TYPE_SIP_PROVIDER);
|
|
}
|
|
|
|
#endif /* FOR_TESTING */
|