1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-23 21:45:30 +00:00
profanity/src/accounts.c

278 lines
6.9 KiB
C
Raw Normal View History

2012-12-02 01:29:42 +00:00
/*
* accounts.c
*
2013-01-11 02:05:29 +00:00
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
2012-12-02 01:29:42 +00:00
*
* This file is part of Profanity.
*
* Profanity 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.
*
* Profanity 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 Profanity. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2012-12-09 22:14:38 +00:00
#include "accounts.h"
2012-12-02 01:29:42 +00:00
#include "files.h"
#include "log.h"
#include "prof_autocomplete.h"
static gchar *accounts_loc;
static GKeyFile *accounts;
static PAutocomplete all_ac;
static PAutocomplete enabled_ac;
2012-12-02 01:29:42 +00:00
static void _save_accounts(void);
void
accounts_load(void)
{
log_info("Loading accounts");
all_ac = p_autocomplete_new();
enabled_ac = p_autocomplete_new();
2012-12-02 01:29:42 +00:00
accounts_loc = files_get_accounts_file();
accounts = g_key_file_new();
g_key_file_load_from_file(accounts, accounts_loc, G_KEY_FILE_KEEP_COMMENTS,
NULL);
// create the logins searchable list for autocompletion
gsize njids;
gchar **jids =
g_key_file_get_groups(accounts, &njids);
gsize i;
for (i = 0; i < njids; i++) {
if (g_key_file_get_boolean(accounts, jids[i], "enabled", NULL)) {
p_autocomplete_add(enabled_ac, strdup(jids[i]));
}
p_autocomplete_add(all_ac, strdup(jids[i]));
2012-12-02 01:29:42 +00:00
}
for (i = 0; i < njids; i++) {
free(jids[i]);
}
free(jids);
}
void
accounts_close(void)
{
p_autocomplete_free(all_ac);
p_autocomplete_free(enabled_ac);
2012-12-02 01:29:42 +00:00
g_key_file_free(accounts);
}
char *
accounts_find_enabled(char *prefix)
{
return p_autocomplete_complete(enabled_ac, prefix);
}
char *
accounts_find_all(char *prefix)
2012-12-02 01:29:42 +00:00
{
return p_autocomplete_complete(all_ac, prefix);
2012-12-02 01:29:42 +00:00
}
void
accounts_reset_all_search(void)
2012-12-02 01:29:42 +00:00
{
p_autocomplete_reset(all_ac);
}
void
accounts_reset_enabled_search(void)
{
p_autocomplete_reset(enabled_ac);
2012-12-02 01:29:42 +00:00
}
void
2012-12-07 00:10:00 +00:00
accounts_add_login(const char *jid, const char *altdomain)
2012-12-02 01:29:42 +00:00
{
// doesn't yet exist
2012-12-02 01:29:42 +00:00
if (!g_key_file_has_group(accounts, jid)) {
g_key_file_set_boolean(accounts, jid, "enabled", TRUE);
g_key_file_set_string(accounts, jid, "jid", jid);
2012-12-07 00:10:00 +00:00
if (altdomain != NULL) {
g_key_file_set_string(accounts, jid, "server", altdomain);
}
2012-12-02 01:29:42 +00:00
_save_accounts();
p_autocomplete_add(all_ac, strdup(jid));
p_autocomplete_add(enabled_ac, strdup(jid));
// already exists, update old style accounts
} else {
g_key_file_set_string(accounts, jid, "jid", jid);
_save_accounts();
2012-12-02 01:29:42 +00:00
}
}
gchar**
accounts_get_list(void)
{
return g_key_file_get_groups(accounts, NULL);
2012-12-02 01:29:42 +00:00
}
2012-12-09 22:14:38 +00:00
ProfAccount*
accounts_get_account(const char * const name)
{
if (!g_key_file_has_group(accounts, name)) {
return NULL;
} else {
ProfAccount *account = malloc(sizeof(ProfAccount));
account->name = strdup(name);
gchar *jid = g_key_file_get_string(accounts, name, "jid", NULL);
if (jid != NULL) {
account->jid = strdup(jid);
} else {
account->jid = strdup(name);
g_key_file_set_string(accounts, name, "jid", name);
_save_accounts();
}
account->enabled = g_key_file_get_boolean(accounts, name, "enabled", NULL);
gchar *server = g_key_file_get_string(accounts, name, "server", NULL);
if (server != NULL) {
account->server = strdup(server);
} else {
account->server = NULL;
}
return account;
}
}
void
accounts_free_account(ProfAccount *account)
{
if (account != NULL) {
if (account->name != NULL) {
free(account->name);
account->name = NULL;
}
if (account->jid != NULL) {
free(account->jid);
account->jid = NULL;
}
if (account->server != NULL) {
free(account->server);
account->server = NULL;
}
account = NULL;
}
}
2012-12-10 00:08:03 +00:00
gboolean
accounts_enable(const char * const name)
{
if (g_key_file_has_group(accounts, name)) {
g_key_file_set_boolean(accounts, name, "enabled", TRUE);
_save_accounts();
p_autocomplete_add(enabled_ac, strdup(name));
2012-12-10 00:08:03 +00:00
return TRUE;
} else {
return FALSE;
}
}
gboolean
accounts_disable(const char * const name)
{
if (g_key_file_has_group(accounts, name)) {
g_key_file_set_boolean(accounts, name, "enabled", FALSE);
_save_accounts();
p_autocomplete_remove(enabled_ac, strdup(name));
2012-12-10 00:08:03 +00:00
return TRUE;
} else {
return FALSE;
}
}
gboolean
accounts_rename(const char * const account_name, const char * const new_name)
{
if (g_key_file_has_group(accounts, new_name)) {
return FALSE;
}
if (!g_key_file_has_group(accounts, account_name)) {
return FALSE;
}
g_key_file_set_boolean(accounts, new_name, "enabled",
g_key_file_get_boolean(accounts, account_name, "enabled", NULL));
char *jid = g_key_file_get_string(accounts, account_name, "jid", NULL);
if (jid != NULL) {
g_key_file_set_string(accounts, new_name, "jid", jid);
free(jid);
}
char *server = g_key_file_get_string(accounts, account_name, "server", NULL);
if (server != NULL) {
g_key_file_set_string(accounts, new_name, "server", server);
free(server);
}
g_key_file_remove_group(accounts, account_name, NULL);
_save_accounts();
p_autocomplete_remove(all_ac, strdup(account_name));
p_autocomplete_add(all_ac, strdup(new_name));
if (g_key_file_get_boolean(accounts, new_name, "enabled", NULL)) {
p_autocomplete_remove(enabled_ac, strdup(account_name));
p_autocomplete_add(enabled_ac, strdup(new_name));
}
2012-12-10 00:08:03 +00:00
return TRUE;
}
gboolean
accounts_account_exists(const char * const account_name)
{
return g_key_file_has_group(accounts, account_name);
}
void
accounts_set_jid(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "jid", value);
_save_accounts();
}
}
void
accounts_set_server(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "server", value);
_save_accounts();
}
}
2012-12-02 01:29:42 +00:00
static void
_save_accounts(void)
{
gsize g_data_size;
char *g_accounts_data = g_key_file_to_data(accounts, &g_data_size, NULL);
g_file_set_contents(accounts_loc, g_accounts_data, g_data_size, NULL);
}