mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-15 04:53:02 +01:00
261 lines
8.5 KiB
C
261 lines
8.5 KiB
C
/* settings.c
|
|
*
|
|
*
|
|
* Copyright (C) 2014 Toxic All Rights Reserved.
|
|
*
|
|
* This file is part of Toxic.
|
|
*
|
|
* Toxic 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.
|
|
*
|
|
* Toxic 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 Toxic. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <libconfig.h>
|
|
|
|
#include "toxic.h"
|
|
#include "windows.h"
|
|
#include "configdir.h"
|
|
#include "notify.h"
|
|
|
|
#ifdef _AUDIO
|
|
#include "device.h"
|
|
#endif /* _AUDIO */
|
|
|
|
#include "settings.h"
|
|
#include "line_info.h"
|
|
|
|
#ifndef PACKAGE_DATADIR
|
|
#define PACKAGE_DATADIR "."
|
|
#endif
|
|
|
|
const struct _ui_strings {
|
|
const char* self;
|
|
const char* timestamps;
|
|
const char* alerts;
|
|
const char* native_colors;
|
|
const char* autolog;
|
|
const char* time_format;
|
|
const char* history_size;
|
|
} ui_strings = {
|
|
"ui",
|
|
"timestamps",
|
|
"alerts",
|
|
"native_colors",
|
|
"autolog",
|
|
"time_format",
|
|
"history_size"
|
|
};
|
|
static void ui_defaults(struct user_settings* settings)
|
|
{
|
|
settings->timestamps = TIMESTAMPS_ON;
|
|
settings->time = TIME_24;
|
|
settings->autolog = AUTOLOG_OFF;
|
|
settings->alerts = ALERTS_ENABLED;
|
|
settings->colour_theme = DFLT_COLS;
|
|
settings->history_size = 700;
|
|
}
|
|
|
|
const struct _tox_strings {
|
|
const char* self;
|
|
const char* download_path;
|
|
} tox_strings = {
|
|
"tox",
|
|
"download_path",
|
|
};
|
|
|
|
static void tox_defaults(struct user_settings* settings)
|
|
{
|
|
strcpy(settings->download_path, ""); /* explicitly set default to pwd */
|
|
}
|
|
|
|
#ifdef _AUDIO
|
|
const struct _audio_strings {
|
|
const char* self;
|
|
const char* input_device;
|
|
const char* output_device;
|
|
const char* VAD_treshold;
|
|
} audio_strings = {
|
|
"audio",
|
|
"input_device",
|
|
"output_device",
|
|
"VAD_treshold",
|
|
};
|
|
static void audio_defaults(struct user_settings* settings)
|
|
{
|
|
settings->audio_in_dev = 0;
|
|
settings->audio_out_dev = 0;
|
|
settings->VAD_treshold = 40.0;
|
|
}
|
|
#endif
|
|
|
|
#ifdef _SOUND_NOTIFY
|
|
const struct _sound_strings {
|
|
const char* self;
|
|
const char* error;
|
|
const char* self_log_in;
|
|
const char* self_log_out;
|
|
const char* user_log_in;
|
|
const char* user_log_out;
|
|
const char* call_incoming;
|
|
const char* call_outgoing;
|
|
const char* generic_message;
|
|
const char* transfer_pending;
|
|
const char* transfer_completed;
|
|
} sound_strings = {
|
|
"sounds",
|
|
"error",
|
|
"self_log_in",
|
|
"self_log_out",
|
|
"user_log_in",
|
|
"user_log_out",
|
|
"call_incoming",
|
|
"call_outgoing",
|
|
"generic_message",
|
|
"transfer_pending",
|
|
"transfer_completed",
|
|
};
|
|
#endif
|
|
|
|
int settings_load(struct user_settings *s, const char *patharg)
|
|
{
|
|
config_t cfg[1];
|
|
config_setting_t *setting;
|
|
const char *str;
|
|
|
|
/* Load default settings */
|
|
ui_defaults(s);
|
|
tox_defaults(s);
|
|
#ifdef _AUDIO
|
|
audio_defaults(s);
|
|
#endif
|
|
|
|
config_init(cfg);
|
|
|
|
char path[MAX_STR_SIZE];
|
|
|
|
/* use default config file path */
|
|
if (patharg == NULL) {
|
|
char *user_config_dir = get_user_config_dir();
|
|
snprintf(path, sizeof(path), "%s%stoxic.conf", user_config_dir, CONFIGDIR);
|
|
free(user_config_dir);
|
|
|
|
/* make sure path exists or is created on first time running */
|
|
FILE *fp = fopen(path, "r");
|
|
|
|
if (fp == NULL) {
|
|
if ((fp = fopen(path, "w")) == NULL)
|
|
return -1;
|
|
}
|
|
|
|
fclose(fp);
|
|
} else {
|
|
snprintf(path, sizeof(path), "%s", patharg);
|
|
}
|
|
|
|
if (!config_read_file(cfg, path)) {
|
|
config_destroy(cfg);
|
|
return -1;
|
|
}
|
|
|
|
/* ui */
|
|
if ((setting = config_lookup(cfg, ui_strings.self)) != NULL) {
|
|
config_setting_lookup_bool(setting, ui_strings.timestamps, &s->timestamps);
|
|
config_setting_lookup_bool(setting, ui_strings.alerts, &s->alerts);
|
|
config_setting_lookup_bool(setting, ui_strings.autolog, &s->autolog);
|
|
config_setting_lookup_bool(setting, ui_strings.native_colors, &s->colour_theme);
|
|
|
|
config_setting_lookup_int(setting, ui_strings.history_size, &s->history_size);
|
|
config_setting_lookup_int(setting, ui_strings.time_format, &s->time);
|
|
s->time = s->time == TIME_24 || s->time == TIME_12 ? s->time : TIME_24; /* Check defaults */
|
|
}
|
|
|
|
if ((setting = config_lookup(cfg, tox_strings.self)) != NULL) {
|
|
if ( config_setting_lookup_string(setting, tox_strings.download_path, &str) ) {
|
|
strcpy(s->download_path, str);
|
|
}
|
|
}
|
|
|
|
#ifdef _AUDIO
|
|
if ((setting = config_lookup(cfg, audio_strings.self)) != NULL) {
|
|
config_setting_lookup_int(setting, audio_strings.input_device, &s->audio_in_dev);
|
|
s->audio_in_dev = s->audio_in_dev < 0 || s->audio_in_dev > MAX_DEVICES ? 0 : s->audio_in_dev;
|
|
|
|
config_setting_lookup_int(setting, audio_strings.output_device, &s->audio_out_dev);
|
|
s->audio_out_dev = s->audio_out_dev < 0 || s->audio_out_dev > MAX_DEVICES ? 0 : s->audio_out_dev;
|
|
|
|
config_setting_lookup_float(setting, audio_strings.VAD_treshold, &s->VAD_treshold);
|
|
}
|
|
#endif
|
|
|
|
#ifdef _SOUND_NOTIFY
|
|
if ((setting = config_lookup(cfg, sound_strings.self)) != NULL) {
|
|
if ( (config_setting_lookup_string(setting, sound_strings.error, &str) != CONFIG_TRUE) ||
|
|
!set_sound(error, str) )
|
|
set_sound(error, PACKAGE_DATADIR "/sounds/Error.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.user_log_in, &str) ||
|
|
!set_sound(user_log_in, str) )
|
|
set_sound(user_log_in, PACKAGE_DATADIR "/sounds/ContactLogsIn.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.self_log_in, &str) ||
|
|
!set_sound(self_log_in, str) )
|
|
set_sound(self_log_in, PACKAGE_DATADIR "/sounds/LogIn.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.user_log_out, &str) ||
|
|
!set_sound(user_log_out, str) )
|
|
set_sound(user_log_out, PACKAGE_DATADIR "/sounds/ContactLogsOut.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.self_log_out, &str) ||
|
|
!set_sound(self_log_out, str) )
|
|
set_sound(self_log_out, PACKAGE_DATADIR "/sounds/LogOut.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.call_incoming, &str) ||
|
|
!set_sound(call_incoming, str) )
|
|
set_sound(call_incoming, PACKAGE_DATADIR "/sounds/IncomingCall.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.call_outgoing, &str) ||
|
|
!set_sound(call_outgoing, str) )
|
|
set_sound(call_outgoing, PACKAGE_DATADIR "/sounds/OutgoingCall.wav");
|
|
|
|
if ( config_setting_lookup_string(setting, sound_strings.generic_message, &str) ||
|
|
!set_sound(generic_message, str) )
|
|
set_sound(generic_message, PACKAGE_DATADIR "/sounds/NewMessage.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.transfer_pending, &str) ||
|
|
!set_sound(transfer_pending, str) )
|
|
set_sound(transfer_pending, PACKAGE_DATADIR "/sounds/TransferPending.wav");
|
|
|
|
if ( !config_setting_lookup_string(setting, sound_strings.transfer_completed, &str) ||
|
|
!set_sound(transfer_completed, str) )
|
|
set_sound(transfer_completed, PACKAGE_DATADIR "/sounds/TransferComplete.wav");
|
|
}
|
|
else {
|
|
set_sound(error, PACKAGE_DATADIR "/sounds/Error.wav");
|
|
set_sound(user_log_in, PACKAGE_DATADIR "/sounds/ContactLogsIn.wav");
|
|
set_sound(self_log_in, PACKAGE_DATADIR "/sounds/LogIn.wav");
|
|
set_sound(user_log_out, PACKAGE_DATADIR "/sounds/ContactLogsOut.wav");
|
|
set_sound(self_log_out, PACKAGE_DATADIR "/sounds/LogOut.wav");
|
|
set_sound(call_incoming, PACKAGE_DATADIR "/sounds/IncomingCall.wav");
|
|
set_sound(call_outgoing, PACKAGE_DATADIR "/sounds/OutgoingCall.wav");
|
|
set_sound(generic_message, PACKAGE_DATADIR "/sounds/NewMessage.wav");
|
|
set_sound(transfer_pending, PACKAGE_DATADIR "/sounds/TransferPending.wav");
|
|
set_sound(transfer_completed, PACKAGE_DATADIR "/sounds/TransferComplete.wav");
|
|
}
|
|
#endif
|
|
|
|
config_destroy(cfg);
|
|
return 0;
|
|
}
|