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