Add prof.encryption_reset to Plugins API

issue #885
This commit is contained in:
James Booth
2017-01-18 22:46:29 +00:00
parent 70e831e08b
commit fccf56be10
8 changed files with 88 additions and 0 deletions

View File

@@ -497,3 +497,25 @@ api_disco_add_feature(char *plugin_name, char *feature)
}
}
void
api_encryption_reset(const char *const barejid)
{
if (barejid == NULL) {
return;
}
ProfChatWin *chatwin = wins_get_chat(barejid);
if (chatwin == NULL) {
return;
}
if (chatwin->pgp_send) {
chatwin->pgp_send = FALSE;
win_println((ProfWin*)chatwin, THEME_DEFAULT, '!', "PGP encryption disabled.");
}
if (chatwin->is_otr) {
chatwin_otr_unsecured(chatwin);
otr_end_session(chatwin->barejid);
}
}

View File

@@ -96,4 +96,6 @@ void api_incoming_message(const char *const barejid, const char *const resource,
void api_disco_add_feature(char *plugin_name, char *feature);
void api_encryption_reset(const char *const barejid);
#endif

View File

@@ -341,6 +341,12 @@ c_api_disco_add_feature(const char *filename, char *feature)
free(plugin_name);
}
static void
c_api_encryption_reset(const char *barejid)
{
api_encryption_reset(barejid);
}
void
c_command_callback(PluginCommand *command, gchar **args)
{
@@ -408,6 +414,7 @@ c_api_init(void)
prof_settings_string_list_clear = c_api_settings_string_list_clear;
prof_incoming_message = c_api_incoming_message;
_prof_disco_add_feature = c_api_disco_add_feature;
prof_encryption_reset = c_api_encryption_reset;
}
static char *

View File

@@ -92,3 +92,5 @@ int (*prof_settings_string_list_clear)(char *group, char *key) = NULL;
void (*prof_incoming_message)(char *barejid, char *resource, char *message) = NULL;
void (*_prof_disco_add_feature)(const char *filename, char *feature) = NULL;
void (*prof_encryption_reset)(const char *barejid) = NULL;

View File

@@ -105,4 +105,6 @@ void (*prof_incoming_message)(char *barejid, char *resource, char *message);
void (*_prof_disco_add_feature)(const char *filename, char *feature);
void (*prof_encryption_reset)(const char *barejid);
#endif

View File

@@ -1031,6 +1031,24 @@ python_api_disco_add_feature(PyObject *self, PyObject *args)
Py_RETURN_NONE;
}
static PyObject*
python_api_encryption_reset(PyObject *self, PyObject *args)
{
PyObject *barejid = NULL;
if (!PyArg_ParseTuple(args, "O", &barejid)) {
Py_RETURN_NONE;
}
char *barejid_str = python_str_or_unicode_to_string(barejid);
allow_python_threads();
api_encryption_reset(barejid_str);
free(barejid_str);
disable_python_threads();
Py_RETURN_NONE;
}
void
python_command_callback(PluginCommand *command, gchar **args)
{
@@ -1139,6 +1157,7 @@ static PyMethodDef apiMethods[] = {
{ "settings_string_list_clear", python_api_settings_string_list_clear, METH_VARARGS, "Remove all items from string list setting." },
{ "incoming_message", python_api_incoming_message, METH_VARARGS, "Show an incoming message." },
{ "disco_add_feature", python_api_disco_add_feature, METH_VARARGS, "Add a feature to disco info response." },
{ "encryption_reset", python_api_encryption_reset, METH_VARARGS, "End encrypted chat session with barejid, if one exists" },
{ NULL, NULL, 0, NULL }
};