Link against libsignal-protocol-c

This commit is contained in:
Paul Fariello
2019-02-19 06:24:47 +01:40
parent 6b064cfde4
commit 4a5b672f95
6 changed files with 75 additions and 1 deletions

View File

@@ -2328,7 +2328,25 @@ static struct cmd_t command_defs[] =
CMD_EXAMPLES(
"/cmd list",
"/cmd exec ping")
}
},
{ "/omemo",
parse_args, 1, 3, NULL,
CMD_SUBFUNCS(
{ "init", cmd_omemo_init })
CMD_NOMAINFUNC
CMD_TAGS(
CMD_TAG_CHAT,
CMD_TAG_UI)
CMD_SYN(
"/omemo init")
CMD_DESC(
"Omemo commands to manage keys, and perform encryption during chat sessions.")
CMD_ARGS(
{ "init", "Initialize omemo" })
CMD_EXAMPLES(
"/omemo init")
},
};
static GHashTable *search_index;

View File

@@ -85,6 +85,10 @@
#include "pgp/gpg.h"
#endif
#ifdef HAVE_LIBSIGNAL_PROTOCOL
#include "omemo/omemo.h"
#endif
#ifdef HAVE_GTK
#include "ui/tray.h"
#endif
@@ -7872,3 +7876,22 @@ _cmd_set_boolean_preference(gchar *arg, const char *const command,
g_string_free(enabled, TRUE);
g_string_free(disabled, TRUE);
}
gboolean
cmd_omemo_init(ProfWin *window, const char *const command, gchar **args)
{
#ifdef HAVE_LIBSIGNAL_PROTOCOL
if (connection_get_status() != JABBER_CONNECTED) {
cons_show("You must be connected with an account to initialize omemo");
return TRUE;
}
ProfAccount *account = accounts_get_account(session_get_account_name());
omemo_init(account);
cons_show("Initialized omemo");
return TRUE;
#else
cons_show("This version of Profanity has not been built with Omemo support enabled");
return TRUE;
#endif
}

View File

@@ -214,4 +214,6 @@ gboolean cmd_wins_swap(ProfWin *window, const char *const command, gchar **args)
gboolean cmd_form_field(ProfWin *window, char *tag, gchar **args);
gboolean cmd_omemo_init(ProfWin *window, const char *const command, gchar **args);
#endif