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

869 lines
28 KiB
C
Raw Normal View History

2012-12-02 01:29:42 +00:00
/*
* accounts.c
*
2014-03-09 01:18:19 +00:00
* Copyright (C) 2012 - 2014 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/>.
*
* In addition, as a special exception, the copyright holders give permission to
* link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two.
*
* You must obey the GNU General Public License in all respects for all of the
* code used other than OpenSSL. If you modify file(s) with this exception, you
* may extend this exception to your version of the file(s), but you are not
* obligated to do so. If you do not wish to do so, delete this exception
* statement from your version. If you delete this exception statement from all
* source files in the program, then also delete it here.
*
2012-12-02 01:29:42 +00:00
*/
#include <stdlib.h>
#include <string.h>
#include <glib.h>
2014-10-18 20:23:42 +00:00
#include <glib/gstdio.h>
2012-12-09 22:14:38 +00:00
#include "accounts.h"
2013-02-02 20:55:58 +00:00
2013-01-26 22:25:00 +00:00
#include "common.h"
2014-01-22 22:22:01 +00:00
#include "config/account.h"
#include "jid.h"
2012-12-02 01:29:42 +00:00
#include "log.h"
#include "tools/autocomplete.h"
2013-02-02 19:47:41 +00:00
#include "xmpp/xmpp.h"
2012-12-02 01:29:42 +00:00
static gchar *accounts_loc;
static GKeyFile *accounts;
static Autocomplete all_ac;
static Autocomplete enabled_ac;
2012-12-02 01:29:42 +00:00
// used to rename account (copies properties to new account)
static gchar *string_keys[] = {
"jid",
"server",
2014-01-18 01:45:05 +00:00
"port",
"resource",
"password",
"presence.last",
"presence.login",
"muc.service",
2014-05-11 13:13:15 +00:00
"muc.nick",
"otr.policy"
};
2013-01-31 01:37:42 +00:00
2013-01-27 18:47:33 +00:00
static void _fix_legacy_accounts(const char * const account_name);
2012-12-02 01:29:42 +00:00
static void _save_accounts(void);
static gchar * _get_accounts_file(void);
static void _remove_from_list(GKeyFile *accounts, const char * const account_name, const char * const key, const char * const contact_jid);
2012-12-02 01:29:42 +00:00
2013-12-26 13:37:22 +00:00
static void
_accounts_load(void)
2012-12-02 01:29:42 +00:00
{
log_info("Loading accounts");
all_ac = autocomplete_new();
enabled_ac = autocomplete_new();
accounts_loc = _get_accounts_file();
2012-12-02 01:29:42 +00:00
2014-10-18 20:23:42 +00:00
if (g_file_test(accounts_loc, G_FILE_TEST_EXISTS)) {
g_chmod(accounts_loc, S_IRUSR | S_IWUSR);
}
2012-12-02 01:29:42 +00:00
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
2013-01-27 17:59:37 +00:00
gsize naccounts;
gchar **account_names =
g_key_file_get_groups(accounts, &naccounts);
2012-12-02 01:29:42 +00:00
gsize i;
2013-01-27 17:59:37 +00:00
for (i = 0; i < naccounts; i++) {
2013-08-26 00:29:50 +00:00
autocomplete_add(all_ac, account_names[i]);
2013-01-27 17:59:37 +00:00
if (g_key_file_get_boolean(accounts, account_names[i], "enabled", NULL)) {
2013-08-26 00:29:50 +00:00
autocomplete_add(enabled_ac, account_names[i]);
}
2013-01-27 18:47:33 +00:00
_fix_legacy_accounts(account_names[i]);
2012-12-02 01:29:42 +00:00
}
2013-08-25 11:54:34 +00:00
g_strfreev(account_names);
2012-12-02 01:29:42 +00:00
}
2013-12-26 13:37:22 +00:00
static void
_accounts_close(void)
2012-12-02 01:29:42 +00:00
{
autocomplete_free(all_ac);
autocomplete_free(enabled_ac);
2012-12-02 01:29:42 +00:00
g_key_file_free(accounts);
}
2013-12-26 13:37:22 +00:00
static char *
_accounts_find_enabled(char *prefix)
{
return autocomplete_complete(enabled_ac, prefix, TRUE);
}
2013-12-26 13:37:22 +00:00
static char *
_accounts_find_all(char *prefix)
2012-12-02 01:29:42 +00:00
{
return autocomplete_complete(all_ac, prefix, TRUE);
2012-12-02 01:29:42 +00:00
}
2013-12-26 13:37:22 +00:00
static void
_accounts_reset_all_search(void)
2012-12-02 01:29:42 +00:00
{
autocomplete_reset(all_ac);
}
2013-12-26 13:37:22 +00:00
static void
_accounts_reset_enabled_search(void)
{
autocomplete_reset(enabled_ac);
2012-12-02 01:29:42 +00:00
}
2013-12-26 13:37:22 +00:00
static void
2014-01-18 20:34:46 +00:00
_accounts_add(const char *account_name, const char *altdomain, const int port)
2012-12-02 01:29:42 +00:00
{
2013-01-27 18:47:33 +00:00
// set account name and resource
const char *barejid = account_name;
const char *resource = "profanity";
Jid *jid = jid_create(account_name);
if (jid != NULL) {
barejid = jid->barejid;
2013-01-27 18:47:33 +00:00
if (jid->resourcepart != NULL) {
resource = jid->resourcepart;
}
}
// doesn't yet exist
if (!g_key_file_has_group(accounts, account_name)) {
g_key_file_set_boolean(accounts, account_name, "enabled", TRUE);
g_key_file_set_string(accounts, account_name, "jid", barejid);
g_key_file_set_string(accounts, account_name, "resource", resource);
2012-12-07 00:10:00 +00:00
if (altdomain != NULL) {
g_key_file_set_string(accounts, account_name, "server", altdomain);
2012-12-07 00:10:00 +00:00
}
2014-01-18 01:45:05 +00:00
if (port != 0) {
g_key_file_set_integer(accounts, account_name, "port", port);
}
Jid *jidp = jid_create(barejid);
GString *muc_service = g_string_new("conference.");
g_string_append(muc_service, jidp->domainpart);
g_key_file_set_string(accounts, account_name, "muc.service", muc_service->str);
g_string_free(muc_service, TRUE);
if (jidp->localpart == NULL) {
g_key_file_set_string(accounts, account_name, "muc.nick", jidp->domainpart);
} else {
g_key_file_set_string(accounts, account_name, "muc.nick", jidp->localpart);
}
jid_destroy(jidp);
g_key_file_set_string(accounts, account_name, "presence.last", "online");
g_key_file_set_string(accounts, account_name, "presence.login", "online");
g_key_file_set_integer(accounts, account_name, "priority.online", 0);
g_key_file_set_integer(accounts, account_name, "priority.chat", 0);
g_key_file_set_integer(accounts, account_name, "priority.away", 0);
g_key_file_set_integer(accounts, account_name, "priority.xa", 0);
g_key_file_set_integer(accounts, account_name, "priority.dnd", 0);
2012-12-07 00:10:00 +00:00
2012-12-02 01:29:42 +00:00
_save_accounts();
2013-08-26 00:29:50 +00:00
autocomplete_add(all_ac, account_name);
autocomplete_add(enabled_ac, account_name);
2012-12-02 01:29:42 +00:00
}
jid_destroy(jid);
}
2013-12-26 13:37:22 +00:00
static gchar**
_accounts_get_list(void)
{
return g_key_file_get_groups(accounts, NULL);
2012-12-02 01:29:42 +00:00
}
2013-12-26 13:37:22 +00:00
static ProfAccount*
_accounts_get_account(const char * const name)
2012-12-09 22:14:38 +00:00
{
if (!g_key_file_has_group(accounts, name)) {
return NULL;
} else {
gchar *jid = g_key_file_get_string(accounts, name, "jid", NULL);
2014-01-22 22:22:01 +00:00
// fix accounts that have no jid property by setting to name
if (jid == NULL) {
2012-12-09 22:14:38 +00:00
g_key_file_set_string(accounts, name, "jid", name);
_save_accounts();
}
gchar *password = g_key_file_get_string(accounts, name, "password", NULL);
2014-01-22 22:22:01 +00:00
gboolean enabled = g_key_file_get_boolean(accounts, name, "enabled", NULL);
2012-12-09 22:14:38 +00:00
gchar *server = g_key_file_get_string(accounts, name, "server", NULL);
2013-01-26 22:25:00 +00:00
gchar *resource = g_key_file_get_string(accounts, name, "resource", NULL);
2014-01-22 22:22:01 +00:00
int port = g_key_file_get_integer(accounts, name, "port", NULL);
2014-01-22 22:22:01 +00:00
gchar *last_presence = g_key_file_get_string(accounts, name, "presence.last", NULL);
gchar *login_presence = g_key_file_get_string(accounts, name, "presence.login", NULL);
2013-08-25 11:54:34 +00:00
2014-01-22 22:22:01 +00:00
int priority_online = g_key_file_get_integer(accounts, name, "priority.online", NULL);
int priority_chat = g_key_file_get_integer(accounts, name, "priority.chat", NULL);
int priority_away = g_key_file_get_integer(accounts, name, "priority.away", NULL);
int priority_xa = g_key_file_get_integer(accounts, name, "priority.xa", NULL);
int priority_dnd = g_key_file_get_integer(accounts, name, "priority.dnd", NULL);
gchar *muc_service = g_key_file_get_string(accounts, name, "muc.service", NULL);
gchar *muc_nick = g_key_file_get_string(accounts, name, "muc.nick", NULL);
2013-05-23 21:29:41 +00:00
2014-05-11 13:13:15 +00:00
gchar *otr_policy = NULL;
if (g_key_file_has_key(accounts, name, "otr.policy", NULL)) {
otr_policy = g_key_file_get_string(accounts, name, "otr.policy", NULL);
}
gsize length;
GList *otr_manual = NULL;
gchar **manual = g_key_file_get_string_list(accounts, name, "otr.manual", &length, NULL);
if (manual != NULL) {
int i = 0;
for (i = 0; i < length; i++) {
otr_manual = g_list_append(otr_manual, strdup(manual[i]));
}
g_strfreev(manual);
}
GList *otr_opportunistic = NULL;
gchar **opportunistic = g_key_file_get_string_list(accounts, name, "otr.opportunistic", &length, NULL);
if (opportunistic != NULL) {
int i = 0;
for (i = 0; i < length; i++) {
otr_opportunistic = g_list_append(otr_opportunistic, strdup(opportunistic[i]));
}
g_strfreev(opportunistic);
}
GList *otr_always = NULL;
gchar **always = g_key_file_get_string_list(accounts, name, "otr.always", &length, NULL);
if (always != NULL) {
int i = 0;
for (i = 0; i < length; i++) {
otr_always = g_list_append(otr_always, strdup(always[i]));
}
g_strfreev(always);
}
2014-01-22 22:22:01 +00:00
ProfAccount *new_account = account_new(name, jid, password, enabled,
server, port, resource, last_presence, login_presence,
priority_online, priority_chat, priority_away, priority_xa,
priority_dnd, muc_service, muc_nick, otr_policy, otr_manual,
otr_opportunistic, otr_always);
2012-12-09 22:14:38 +00:00
2014-01-22 22:22:01 +00:00
g_free(jid);
g_free(password);
g_free(server);
g_free(resource);
g_free(last_presence);
g_free(login_presence);
g_free(muc_service);
g_free(muc_nick);
2014-05-11 13:13:15 +00:00
g_free(otr_policy);
2013-12-15 20:32:30 +00:00
2014-01-22 22:22:01 +00:00
return new_account;
2012-12-09 22:14:38 +00:00
}
}
2013-12-26 13:37:22 +00:00
static gboolean
_accounts_enable(const char * const name)
2012-12-10 00:08:03 +00:00
{
if (g_key_file_has_group(accounts, name)) {
g_key_file_set_boolean(accounts, name, "enabled", TRUE);
_save_accounts();
2013-08-26 00:29:50 +00:00
autocomplete_add(enabled_ac, name);
2012-12-10 00:08:03 +00:00
return TRUE;
} else {
return FALSE;
}
}
2013-12-26 13:37:22 +00:00
static gboolean
_accounts_disable(const char * const name)
2012-12-10 00:08:03 +00:00
{
if (g_key_file_has_group(accounts, name)) {
g_key_file_set_boolean(accounts, name, "enabled", FALSE);
_save_accounts();
2013-08-26 00:29:50 +00:00
autocomplete_remove(enabled_ac, name);
2012-12-10 00:08:03 +00:00
return TRUE;
} else {
return FALSE;
}
}
2013-12-26 13:37:22 +00:00
static gboolean
_accounts_rename(const char * const account_name, const char * const new_name)
2012-12-10 00:08:03 +00:00
{
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));
g_key_file_set_integer(accounts, new_name, "priority.online",
g_key_file_get_integer(accounts, account_name, "priority.online", NULL));
g_key_file_set_integer(accounts, new_name, "priority.chat",
g_key_file_get_integer(accounts, account_name, "priority.chat", NULL));
g_key_file_set_integer(accounts, new_name, "priority.away",
g_key_file_get_integer(accounts, account_name, "priority.away", NULL));
g_key_file_set_integer(accounts, new_name, "priority.xa",
g_key_file_get_integer(accounts, account_name, "priority.xa", NULL));
g_key_file_set_integer(accounts, new_name, "priority.dnd",
g_key_file_get_integer(accounts, account_name, "priority.dnd", NULL));
// copy other string properties
2013-01-31 01:37:42 +00:00
int i;
for (i = 0; i < ARRAY_SIZE(string_keys); i++) {
char *value = g_key_file_get_string(accounts, account_name, string_keys[i], NULL);
if (value != NULL) {
g_key_file_set_string(accounts, new_name, string_keys[i], value);
2013-08-25 11:54:34 +00:00
g_free(value);
2013-01-31 01:37:42 +00:00
}
2013-01-26 22:25:00 +00:00
}
2012-12-10 00:08:03 +00:00
g_key_file_remove_group(accounts, account_name, NULL);
_save_accounts();
2013-08-26 00:29:50 +00:00
autocomplete_remove(all_ac, account_name);
autocomplete_add(all_ac, new_name);
if (g_key_file_get_boolean(accounts, new_name, "enabled", NULL)) {
2013-08-26 00:29:50 +00:00
autocomplete_remove(enabled_ac, account_name);
autocomplete_add(enabled_ac, new_name);
}
2012-12-10 00:08:03 +00:00
return TRUE;
}
2013-12-26 13:37:22 +00:00
static gboolean
_accounts_account_exists(const char * const account_name)
{
return g_key_file_has_group(accounts, account_name);
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_jid(const char * const account_name, const char * const value)
{
Jid *jid = jid_create(value);
if (jid != NULL) {
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "jid", jid->barejid);
if (jid->resourcepart != NULL) {
g_key_file_set_string(accounts, account_name, "resource", jid->resourcepart);
}
GString *muc_service = g_string_new("conference.");
g_string_append(muc_service, jid->domainpart);
g_key_file_set_string(accounts, account_name, "muc.service", muc_service->str);
g_string_free(muc_service, TRUE);
if (jid->localpart == NULL) {
g_key_file_set_string(accounts, account_name, "muc.nick", jid->domainpart);
} else {
g_key_file_set_string(accounts, account_name, "muc.nick", jid->localpart);
}
_save_accounts();
}
}
}
2013-12-26 13:37:22 +00:00
static 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();
}
}
2014-01-18 01:45:05 +00:00
static void
_accounts_set_port(const char * const account_name, const int value)
{
if (value != 0) {
g_key_file_set_integer(accounts, account_name, "port", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_resource(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "resource", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_password(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "password", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_clear_password(const char * const account_name)
{
if (accounts_account_exists(account_name)) {
g_key_file_remove_key(accounts, account_name, "password", NULL);
_save_accounts();
}
}
2014-05-11 14:32:38 +00:00
static void
_accounts_clear_otr(const char * const account_name)
{
if (accounts_account_exists(account_name)) {
g_key_file_remove_key(accounts, account_name, "otr.policy", NULL);
_save_accounts();
}
}
static void
_accounts_add_otr_policy(const char * const account_name, const char * const contact_jid, const char * const policy)
{
if (accounts_account_exists(account_name)) {
GString *key = g_string_new("otr.");
g_string_append(key, policy);
gsize length;
gchar **list = g_key_file_get_string_list(accounts, account_name, key->str, &length, NULL);
GList *glist = NULL;
// list found
if (list != NULL) {
int i = 0;
for (i = 0; i < length; i++) {
// item already in list, exit function
if (strcmp(list[i], contact_jid) == 0) {
g_list_free_full(glist, g_free);
g_strfreev(list);
return;
}
// add item to our g_list
glist = g_list_append(glist, strdup(list[i]));
}
// item not found, add to our g_list
glist = g_list_append(glist, strdup(contact_jid));
// create the new list entry
const gchar* new_list[g_list_length(glist)+1];
GList *curr = glist;
i = 0;
while (curr != NULL) {
new_list[i++] = strdup(curr->data);
curr = g_list_next(curr);
}
new_list[i] = NULL;
g_key_file_set_string_list(accounts, account_name, key->str, new_list, g_list_length(glist));
// list not found
} else {
const gchar* new_list[2];
new_list[0] = strdup(contact_jid);
new_list[1] = NULL;
g_key_file_set_string_list(accounts, account_name, key->str, new_list, 1);
}
g_strfreev(list);
g_list_free_full(glist, g_free);
g_string_free(key, TRUE);
// check for and remove from other lists
if (strcmp(policy, "manual") == 0) {
_remove_from_list(accounts, account_name, "otr.opportunistic", contact_jid);
_remove_from_list(accounts, account_name, "otr.always", contact_jid);
}
if (strcmp(policy, "opportunistic") == 0) {
_remove_from_list(accounts, account_name, "otr.manual", contact_jid);
_remove_from_list(accounts, account_name, "otr.always", contact_jid);
}
if (strcmp(policy, "always") == 0) {
_remove_from_list(accounts, account_name, "otr.opportunistic", contact_jid);
_remove_from_list(accounts, account_name, "otr.manual", contact_jid);
}
_save_accounts();
}
}
static void
_remove_from_list(GKeyFile *accounts, const char * const account_name, const char * const key, const char * const contact_jid)
{
gsize length;
gchar **list = g_key_file_get_string_list(accounts, account_name, key, &length, NULL);
if (list != NULL) {
int i = 0;
GList *glist = NULL;
gboolean deleted = FALSE;
for (i = 0; i < length; i++) {
// item found, mark as deleted
if (strcmp(list[i], contact_jid) == 0) {
deleted = TRUE;
} else {
// add item to our g_list
glist = g_list_append(glist, strdup(list[i]));
}
}
if (deleted) {
if (g_list_length(glist) == 0) {
g_key_file_remove_key(accounts, account_name, key, NULL);
} else {
// create the new list entry
const gchar* new_list[g_list_length(glist)+1];
GList *curr = glist;
i = 0;
while (curr != NULL) {
new_list[i++] = strdup(curr->data);
curr = g_list_next(curr);
}
new_list[i] = NULL;
g_key_file_set_string_list(accounts, account_name, key, new_list, g_list_length(glist));
}
}
g_list_free_full(glist, g_free);
}
g_strfreev(list);
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_muc_service(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "muc.service", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_muc_nick(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "muc.nick", value);
_save_accounts();
}
}
2014-05-11 13:13:15 +00:00
static void
_accounts_set_otr_policy(const char * const account_name, const char * const value)
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "otr.policy", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_priority_online(const char * const account_name, const gint value)
2013-01-31 01:50:37 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_integer(accounts, account_name, "priority.online", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_priority_chat(const char * const account_name, const gint value)
2013-01-31 01:50:37 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_integer(accounts, account_name, "priority.chat", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_priority_away(const char * const account_name, const gint value)
2013-01-31 01:50:37 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_integer(accounts, account_name, "priority.away", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_priority_xa(const char * const account_name, const gint value)
2013-01-31 01:50:37 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_integer(accounts, account_name, "priority.xa", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_priority_dnd(const char * const account_name, const gint value)
2013-01-31 01:50:37 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_integer(accounts, account_name, "priority.dnd", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_priority_all(const char * const account_name, const gint value)
2013-01-31 01:50:37 +00:00
{
if (accounts_account_exists(account_name)) {
accounts_set_priority_online(account_name, value);
accounts_set_priority_chat(account_name, value);
accounts_set_priority_away(account_name, value);
accounts_set_priority_xa(account_name, value);
accounts_set_priority_dnd(account_name, value);
_save_accounts();
}
2013-01-31 01:50:37 +00:00
}
2013-12-26 13:37:22 +00:00
static gint
_accounts_get_priority_for_presence_type(const char * const account_name,
resource_presence_t presence_type)
2013-01-31 01:50:37 +00:00
{
gint result;
switch (presence_type)
{
case (RESOURCE_ONLINE):
result = g_key_file_get_integer(accounts, account_name, "priority.online", NULL);
break;
case (RESOURCE_CHAT):
result = g_key_file_get_integer(accounts, account_name, "priority.chat", NULL);
break;
case (RESOURCE_AWAY):
result = g_key_file_get_integer(accounts, account_name, "priority.away", NULL);
break;
case (RESOURCE_XA):
result = g_key_file_get_integer(accounts, account_name, "priority.xa", NULL);
break;
default:
result = g_key_file_get_integer(accounts, account_name, "priority.dnd", NULL);
break;
}
2013-02-03 23:46:20 +00:00
if (result < JABBER_PRIORITY_MIN || result > JABBER_PRIORITY_MAX)
result = 0;
2013-01-31 01:50:37 +00:00
return result;
2013-01-31 01:50:37 +00:00
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_last_presence(const char * const account_name, const char * const value)
2013-01-27 22:27:30 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "presence.last", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static void
_accounts_set_login_presence(const char * const account_name, const char * const value)
2013-01-27 22:27:30 +00:00
{
if (accounts_account_exists(account_name)) {
g_key_file_set_string(accounts, account_name, "presence.login", value);
_save_accounts();
}
}
2013-12-26 13:37:22 +00:00
static resource_presence_t
_accounts_get_last_presence(const char * const account_name)
{
2013-08-25 11:54:34 +00:00
resource_presence_t result;
gchar *setting = g_key_file_get_string(accounts, account_name, "presence.last", NULL);
2013-08-25 11:54:34 +00:00
if (setting == NULL || (strcmp(setting, "online") == 0)) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_ONLINE;
} else if (strcmp(setting, "chat") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_CHAT;
} else if (strcmp(setting, "away") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_AWAY;
} else if (strcmp(setting, "xa") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_XA;
} else if (strcmp(setting, "dnd") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_DND;
} else {
log_warning("Error reading presence.last for account: '%s', value: '%s', defaulting to 'online'",
account_name, setting);
2013-08-25 11:54:34 +00:00
result = RESOURCE_ONLINE;
}
2013-08-25 11:54:34 +00:00
if (setting != NULL) {
g_free(setting);
}
return result;
}
2013-12-26 13:37:22 +00:00
static resource_presence_t
_accounts_get_login_presence(const char * const account_name)
{
2013-08-25 11:54:34 +00:00
resource_presence_t result;
gchar *setting = g_key_file_get_string(accounts, account_name, "presence.login", NULL);
2013-08-25 11:54:34 +00:00
if (setting == NULL || (strcmp(setting, "online") == 0)) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_ONLINE;
} else if (strcmp(setting, "chat") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_CHAT;
} else if (strcmp(setting, "away") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_AWAY;
} else if (strcmp(setting, "xa") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_XA;
} else if (strcmp(setting, "dnd") == 0) {
2013-08-25 11:54:34 +00:00
result = RESOURCE_DND;
} else if (strcmp(setting, "last") == 0) {
2013-08-25 11:54:34 +00:00
result = accounts_get_last_presence(account_name);
} else {
log_warning("Error reading presence.login for account: '%s', value: '%s', defaulting to 'online'",
account_name, setting);
2013-08-25 11:54:34 +00:00
result = RESOURCE_ONLINE;
}
2013-08-25 11:54:34 +00:00
if (setting != NULL) {
g_free(setting);
}
return result;
}
2013-01-27 18:47:33 +00:00
static void
_fix_legacy_accounts(const char * const account_name)
{
// set barejid and resource
const char *barejid = account_name;
const char *resource = "profanity";
Jid *jid = jid_create(account_name);
if (jid != NULL) {
barejid = jid->barejid;
if (jid->resourcepart != NULL) {
resource = jid->resourcepart;
}
}
// accounts with no jid property
if (!g_key_file_has_key(accounts, account_name, "jid", NULL)) {
g_key_file_set_string(accounts, account_name, "jid", barejid);
_save_accounts();
}
// accounts with no resource, property
if (!g_key_file_has_key(accounts, account_name, "resource", NULL)) {
g_key_file_set_string(accounts, account_name, "resource", resource);
_save_accounts();
}
// acounts with no muc service or nick
if (!g_key_file_has_key(accounts, account_name, "muc.service", NULL)) {
gchar *account_jid = g_key_file_get_string(accounts, account_name, "jid", NULL);
Jid *jidp = jid_create(account_jid);
GString *muc_service = g_string_new("conference.");
g_string_append(muc_service, jidp->domainpart);
g_key_file_set_string(accounts, account_name, "muc.service", muc_service->str);
g_string_free(muc_service, TRUE);
jid_destroy(jidp);
}
if (!g_key_file_has_key(accounts, account_name, "muc.nick", NULL)) {
gchar *account_jid = g_key_file_get_string(accounts, account_name, "jid", NULL);
Jid *jidp = jid_create(account_jid);
if (jidp->localpart == NULL) {
g_key_file_set_string(accounts, account_name, "muc.nick", jidp->domainpart);
} else {
g_key_file_set_string(accounts, account_name, "muc.nick", jidp->localpart);
}
jid_destroy(jidp);
}
2013-01-27 18:47:33 +00:00
jid_destroy(jid);
}
2012-12-02 01:29:42 +00:00
static void
_save_accounts(void)
{
gsize g_data_size;
2013-08-25 11:54:34 +00:00
gchar *g_accounts_data = g_key_file_to_data(accounts, &g_data_size, NULL);
2012-12-02 01:29:42 +00:00
g_file_set_contents(accounts_loc, g_accounts_data, g_data_size, NULL);
2014-10-18 20:23:42 +00:00
g_chmod(accounts_loc, S_IRUSR | S_IWUSR);
2013-08-25 11:54:34 +00:00
g_free(g_accounts_data);
2012-12-02 01:29:42 +00:00
}
static gchar *
_get_accounts_file(void)
{
gchar *xdg_data = xdg_get_data_home();
GString *logfile = g_string_new(xdg_data);
g_string_append(logfile, "/profanity/accounts");
gchar *result = strdup(logfile->str);
g_free(xdg_data);
g_string_free(logfile, TRUE);
return result;
}
2013-12-26 13:37:22 +00:00
void
accounts_init_module(void)
{
accounts_load = _accounts_load;
accounts_close = _accounts_close;
accounts_find_all = _accounts_find_all;
accounts_find_enabled = _accounts_find_enabled;
accounts_reset_all_search = _accounts_reset_all_search;
accounts_reset_enabled_search = _accounts_reset_enabled_search;
accounts_add = _accounts_add;
accounts_get_list = _accounts_get_list;
accounts_get_account = _accounts_get_account;
accounts_enable = _accounts_enable;
accounts_disable = _accounts_disable;
accounts_rename = _accounts_rename;
accounts_account_exists = _accounts_account_exists;
accounts_set_jid = _accounts_set_jid;
accounts_set_server = _accounts_set_server;
2014-01-18 01:45:05 +00:00
accounts_set_port = _accounts_set_port;
2013-12-26 13:37:22 +00:00
accounts_set_resource = _accounts_set_resource;
accounts_set_password = _accounts_set_password;
accounts_set_muc_service = _accounts_set_muc_service;
accounts_set_muc_nick = _accounts_set_muc_nick;
2014-05-11 13:13:15 +00:00
accounts_set_otr_policy = _accounts_set_otr_policy;
2013-12-26 13:37:22 +00:00
accounts_set_last_presence = _accounts_set_last_presence;
accounts_set_login_presence = _accounts_set_login_presence;
accounts_get_last_presence = _accounts_get_last_presence;
accounts_get_login_presence = _accounts_get_login_presence;
accounts_set_priority_online = _accounts_set_priority_online;
accounts_set_priority_chat = _accounts_set_priority_chat;
accounts_set_priority_away = _accounts_set_priority_away;
accounts_set_priority_xa = _accounts_set_priority_xa;
accounts_set_priority_dnd = _accounts_set_priority_dnd;
accounts_set_priority_all = _accounts_set_priority_all;
accounts_get_priority_for_presence_type = _accounts_get_priority_for_presence_type;
accounts_clear_password = _accounts_clear_password;
2014-05-11 14:32:38 +00:00
accounts_clear_otr = _accounts_clear_otr;
accounts_add_otr_policy = _accounts_add_otr_policy;
2013-12-26 13:37:22 +00:00
}