2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-02-20 15:07:38 -05:00
|
|
|
* profanity.c
|
2019-11-13 06:11:05 -05:00
|
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
2024-01-22 10:03:48 -05:00
|
|
|
* Copyright (C) 2019 - 2024 Michael Vetter <jubalh@iodoru.org>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-02-20 15:07:38 -05: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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-02-20 15:07:38 -05:00
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* 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-02-20 15:07:38 -05:00
|
|
|
*/
|
2016-03-31 16:05:02 -04:00
|
|
|
#include "config.h"
|
2012-07-19 17:38:46 -04:00
|
|
|
|
2016-04-10 19:23:36 -04:00
|
|
|
#ifdef HAVE_GTK
|
2016-07-24 10:10:58 -04:00
|
|
|
#include "ui/tray.h"
|
2016-03-30 16:18:45 -04:00
|
|
|
#endif
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2013-01-02 15:27:37 -05:00
|
|
|
#include <locale.h>
|
2013-02-02 15:55:58 -05:00
|
|
|
#include <signal.h>
|
2012-08-25 20:50:50 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2012-02-09 17:24:03 -05:00
|
|
|
|
2012-09-23 15:30:32 -04:00
|
|
|
#include <glib.h>
|
|
|
|
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "profanity.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "common.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "log.h"
|
2022-06-28 13:52:04 -04:00
|
|
|
#include "chatlog.h"
|
2020-07-07 03:43:28 -04:00
|
|
|
#include "config/files.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "config/tlscerts.h"
|
|
|
|
#include "config/accounts.h"
|
2013-02-02 16:59:29 -05:00
|
|
|
#include "config/preferences.h"
|
|
|
|
#include "config/theme.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "config/tlscerts.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "config/scripts.h"
|
|
|
|
#include "command/cmd_defs.h"
|
2020-07-07 03:43:28 -04:00
|
|
|
#include "plugins/plugins.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "event/client_events.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "ui/ui.h"
|
|
|
|
#include "ui/window_list.h"
|
2020-07-07 07:53:30 -04:00
|
|
|
#include "xmpp/resource.h"
|
|
|
|
#include "xmpp/session.h"
|
|
|
|
#include "xmpp/xmpp.h"
|
|
|
|
#include "xmpp/muc.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
#include "xmpp/chat_session.h"
|
|
|
|
#include "xmpp/chat_state.h"
|
2016-07-24 09:55:32 -04:00
|
|
|
#include "xmpp/contact.h"
|
2016-07-24 10:08:47 -04:00
|
|
|
#include "xmpp/roster_list.h"
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBOTR
|
2014-02-12 17:19:21 -05:00
|
|
|
#include "otr/otr.h"
|
2014-01-11 21:15:16 -05:00
|
|
|
#endif
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-03-21 20:12:14 -04:00
|
|
|
#include "pgp/gpg.h"
|
|
|
|
#endif
|
2016-07-24 10:43:51 -04:00
|
|
|
|
2019-02-19 13:23:50 -05:00
|
|
|
#ifdef HAVE_OMEMO
|
|
|
|
#include "omemo/omemo.h"
|
|
|
|
#endif
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
static void _init(char* log_level, char* config_file, char* log_file, char* theme_name);
|
2012-10-01 20:24:48 -04:00
|
|
|
static void _shutdown(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
static void _connect_default(const char* const account);
|
2012-03-10 15:37:42 -05:00
|
|
|
|
2020-04-17 04:14:27 -04:00
|
|
|
pthread_mutex_t lock;
|
2015-11-10 18:14:59 -05:00
|
|
|
static gboolean force_quit = FALSE;
|
2012-11-30 16:26:28 -05:00
|
|
|
|
2012-07-24 18:19:48 -04:00
|
|
|
void
|
2020-07-07 08:18:57 -04:00
|
|
|
prof_run(char* log_level, char* account_name, char* config_file, char* log_file, char* theme_name)
|
2012-02-09 17:50:19 -05:00
|
|
|
{
|
2024-02-19 11:30:17 -05:00
|
|
|
gboolean cont = TRUE;
|
|
|
|
|
2020-03-24 18:00:39 -04:00
|
|
|
_init(log_level, config_file, log_file, theme_name);
|
2016-02-14 17:28:55 -05:00
|
|
|
plugins_on_start();
|
2015-01-15 15:34:45 -05:00
|
|
|
_connect_default(account_name);
|
2016-02-14 17:28:55 -05:00
|
|
|
|
2014-09-01 14:14:52 -04:00
|
|
|
ui_update();
|
2013-10-14 15:22:46 -04:00
|
|
|
|
2015-01-15 08:22:54 -05:00
|
|
|
log_info("Starting main event loop");
|
2015-01-15 15:46:15 -05:00
|
|
|
|
2016-07-24 11:06:19 -04:00
|
|
|
session_init_activity();
|
2015-09-27 18:08:30 -04:00
|
|
|
|
2024-02-19 11:30:17 -05:00
|
|
|
char* line = NULL;
|
|
|
|
while (cont && !force_quit) {
|
|
|
|
log_stderr_handler();
|
|
|
|
session_check_autoaway();
|
|
|
|
|
|
|
|
line = inp_readline();
|
|
|
|
if (line) {
|
|
|
|
ProfWin* window = wins_get_current();
|
|
|
|
cont = cmd_process_input(window, line);
|
|
|
|
free(line);
|
|
|
|
line = NULL;
|
|
|
|
} else {
|
|
|
|
cont = TRUE;
|
|
|
|
}
|
2022-01-09 15:53:52 -05:00
|
|
|
|
|
|
|
#ifdef HAVE_LIBOTR
|
2024-02-19 11:30:17 -05:00
|
|
|
otr_poll();
|
2022-01-09 15:53:52 -05:00
|
|
|
#endif
|
2024-02-19 11:30:17 -05:00
|
|
|
plugins_run_timed();
|
|
|
|
notify_remind();
|
|
|
|
session_process_events();
|
|
|
|
iq_autoping_check();
|
|
|
|
ui_update();
|
2022-01-09 15:53:52 -05:00
|
|
|
#ifdef HAVE_GTK
|
2024-02-19 11:30:17 -05:00
|
|
|
tray_update();
|
2022-01-09 15:53:52 -05:00
|
|
|
#endif
|
2024-02-19 11:30:17 -05:00
|
|
|
}
|
|
|
|
}
|
2022-01-09 15:53:52 -05:00
|
|
|
|
2024-02-19 11:30:17 -05:00
|
|
|
void
|
|
|
|
prof_set_quit(void)
|
|
|
|
{
|
|
|
|
force_quit = TRUE;
|
2022-01-09 15:53:52 -05:00
|
|
|
}
|
|
|
|
|
2015-01-15 15:34:45 -05:00
|
|
|
static void
|
2020-07-07 08:18:57 -04:00
|
|
|
_connect_default(const char* const account)
|
2012-10-01 20:24:48 -04:00
|
|
|
{
|
2020-07-07 08:18:57 -04:00
|
|
|
ProfWin* window = wins_get_current();
|
2015-01-15 15:34:45 -05:00
|
|
|
if (account) {
|
2015-06-16 17:59:08 -04:00
|
|
|
cmd_execute_connect(window, account);
|
2012-10-01 20:24:48 -04:00
|
|
|
} else {
|
2023-04-18 20:44:19 -04:00
|
|
|
auto_gchar gchar* pref_connect_account = prefs_get_string(PREF_CONNECT_ACCOUNT);
|
2015-01-15 15:34:45 -05:00
|
|
|
if (pref_connect_account) {
|
2015-06-16 17:59:08 -04:00
|
|
|
cmd_execute_connect(window, pref_connect_account);
|
2015-01-15 15:34:45 -05:00
|
|
|
}
|
2012-10-01 20:24:48 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2020-07-07 08:18:57 -04:00
|
|
|
_init(char* log_level, char* config_file, char* log_file, char* theme_name)
|
2012-10-01 20:24:48 -04:00
|
|
|
{
|
2013-01-02 15:27:37 -05:00
|
|
|
setlocale(LC_ALL, "");
|
2012-11-12 16:15:37 -05:00
|
|
|
// ignore SIGPIPE
|
|
|
|
signal(SIGPIPE, SIG_IGN);
|
2015-01-01 23:52:01 -05:00
|
|
|
signal(SIGINT, SIG_IGN);
|
|
|
|
signal(SIGTSTP, SIG_IGN);
|
2015-02-04 18:35:28 -05:00
|
|
|
signal(SIGWINCH, ui_sigwinch_handler);
|
2016-04-11 14:13:18 -04:00
|
|
|
if (pthread_mutex_init(&lock, NULL) != 0) {
|
|
|
|
log_error("Mutex init failed");
|
|
|
|
exit(1);
|
|
|
|
}
|
2020-03-24 18:00:39 -04:00
|
|
|
|
2016-04-11 14:13:18 -04:00
|
|
|
pthread_mutex_lock(&lock);
|
2016-07-24 11:22:15 -04:00
|
|
|
files_create_directories();
|
2022-11-14 09:51:05 -05:00
|
|
|
log_level_t prof_log_level;
|
|
|
|
log_level_from_string(log_level, &prof_log_level);
|
2019-08-02 09:28:28 -04:00
|
|
|
prefs_load(config_file);
|
2020-02-21 15:10:00 -05:00
|
|
|
log_init(prof_log_level, log_file);
|
2015-06-22 07:30:23 -04:00
|
|
|
log_stderr_init(PROF_LEVEL_ERROR);
|
2020-03-24 18:00:39 -04:00
|
|
|
|
2023-07-25 14:58:15 -04:00
|
|
|
auto_gchar gchar* prof_version = prof_get_version();
|
|
|
|
log_info("Starting Profanity (%s)…", prof_version);
|
2020-03-24 18:00:39 -04:00
|
|
|
|
2012-10-01 20:24:48 -04:00
|
|
|
chat_log_init();
|
2013-05-04 19:16:10 -04:00
|
|
|
groupchat_log_init();
|
2012-12-01 20:29:42 -05:00
|
|
|
accounts_load();
|
2020-03-24 18:00:39 -04:00
|
|
|
|
|
|
|
if (theme_name) {
|
|
|
|
theme_init(theme_name);
|
|
|
|
} else {
|
2023-04-18 20:44:19 -04:00
|
|
|
auto_gchar gchar* theme = prefs_get_string(PREF_THEME);
|
2020-03-24 18:00:39 -04:00
|
|
|
theme_init(theme);
|
|
|
|
}
|
|
|
|
|
2012-11-25 19:01:34 -05:00
|
|
|
ui_init();
|
2022-08-19 04:24:26 -04:00
|
|
|
if (prof_log_level == PROF_LEVEL_DEBUG) {
|
|
|
|
ProfWin* console = wins_get_console();
|
|
|
|
win_println(console, THEME_DEFAULT, "-", "Debug mode enabled! Logging to: ");
|
|
|
|
win_println(console, THEME_DEFAULT, "-", get_log_file_location());
|
|
|
|
}
|
2016-05-05 19:53:03 -04:00
|
|
|
session_init();
|
2012-10-01 20:24:48 -04:00
|
|
|
cmd_init();
|
|
|
|
log_info("Initialising contact list");
|
2013-04-24 18:50:47 -04:00
|
|
|
muc_init();
|
2015-09-23 19:18:18 -04:00
|
|
|
tlscerts_init();
|
2015-10-14 20:19:24 -04:00
|
|
|
scripts_init();
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBOTR
|
2013-08-13 17:23:47 -04:00
|
|
|
otr_init();
|
2015-03-21 20:12:14 -04:00
|
|
|
#endif
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-03-21 20:12:14 -04:00
|
|
|
p_gpg_init();
|
2019-02-19 13:23:50 -05:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_OMEMO
|
|
|
|
omemo_init();
|
2013-08-13 17:23:47 -04:00
|
|
|
#endif
|
2012-10-27 13:15:26 -04:00
|
|
|
atexit(_shutdown);
|
2016-02-14 17:28:55 -05:00
|
|
|
plugins_init();
|
2016-04-10 19:23:36 -04:00
|
|
|
#ifdef HAVE_GTK
|
2016-04-17 19:07:15 -04:00
|
|
|
tray_init();
|
2016-03-30 16:18:45 -04:00
|
|
|
#endif
|
2015-11-01 13:56:34 -05:00
|
|
|
inp_nonblocking(TRUE);
|
2016-09-22 19:56:53 -04:00
|
|
|
ui_resize();
|
2012-10-01 20:24:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_shutdown(void)
|
|
|
|
{
|
2016-09-22 16:42:00 -04:00
|
|
|
if (prefs_get_boolean(PREF_WINTITLE_SHOW)) {
|
|
|
|
if (prefs_get_boolean(PREF_WINTITLE_GOODBYE)) {
|
2015-01-11 20:12:42 -05:00
|
|
|
ui_goodbye_title();
|
|
|
|
} else {
|
|
|
|
ui_clear_win_title();
|
|
|
|
}
|
|
|
|
}
|
2016-01-04 19:06:50 -05:00
|
|
|
|
2016-05-05 18:51:49 -04:00
|
|
|
jabber_conn_status_t conn_status = connection_get_status();
|
2016-01-04 19:06:50 -05:00
|
|
|
if (conn_status == JABBER_CONNECTED) {
|
|
|
|
cl_ev_disconnect();
|
|
|
|
}
|
2016-04-10 19:23:36 -04:00
|
|
|
#ifdef HAVE_GTK
|
2016-04-17 19:26:17 -04:00
|
|
|
tray_shutdown();
|
2016-03-30 16:18:45 -04:00
|
|
|
#endif
|
2016-05-05 19:53:03 -04:00
|
|
|
session_shutdown();
|
2016-02-14 17:28:55 -05:00
|
|
|
plugins_on_shutdown();
|
2014-01-30 18:15:39 -05:00
|
|
|
muc_close();
|
2013-01-19 19:35:40 -05:00
|
|
|
caps_close();
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBOTR
|
2014-06-26 18:55:57 -04:00
|
|
|
otr_shutdown();
|
2015-03-23 20:47:13 -04:00
|
|
|
#endif
|
2016-03-31 16:05:02 -04:00
|
|
|
#ifdef HAVE_LIBGPGME
|
2015-03-23 20:47:13 -04:00
|
|
|
p_gpg_close();
|
2019-07-04 04:30:56 -04:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_OMEMO
|
|
|
|
omemo_close();
|
2014-06-26 18:55:57 -04:00
|
|
|
#endif
|
2012-10-21 15:02:20 -04:00
|
|
|
chat_log_close();
|
2012-11-21 16:24:10 -05:00
|
|
|
theme_close();
|
2013-01-10 19:17:18 -05:00
|
|
|
accounts_close();
|
2015-09-23 19:18:18 -04:00
|
|
|
tlscerts_close();
|
2015-06-22 07:30:23 -04:00
|
|
|
log_stderr_close();
|
2016-02-14 17:28:55 -05:00
|
|
|
plugins_shutdown();
|
2016-07-05 17:46:00 -04:00
|
|
|
cmd_uninit();
|
|
|
|
ui_close();
|
2015-06-22 07:43:12 -04:00
|
|
|
prefs_close();
|
2023-11-17 07:49:48 -05:00
|
|
|
log_close();
|
2012-10-01 20:24:48 -04:00
|
|
|
}
|