about summary refs log tree commit diff stats
path: root/src/command
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-11 23:59:20 +0000
committerJames Booth <boothj5@gmail.com>2014-01-11 23:59:20 +0000
commit494aaadba42ebd95566d2b5128b7925c8aa4cde9 (patch)
tree670f6faad3699098a6bfe052dbe61f57d11c786c /src/command
parenta3217bcf8c2a8fe64447a0ec02c0d9d9b39e6686 (diff)
downloadprofani-tty-494aaadba42ebd95566d2b5128b7925c8aa4cde9.tar.gz
Added /otr end command
Diffstat (limited to 'src/command')
-rw-r--r--src/command/commands.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/command/commands.c b/src/command/commands.c
index bb18ff2f..660ec572 100644
--- a/src/command/commands.c
+++ b/src/command/commands.c
@@ -2346,6 +2346,20 @@ cmd_otr(gchar **args, struct cmd_help_t help)
             }
         }
         return TRUE;
+    } else if (strcmp(args[0], "end") == 0) {
+        win_type_t win_type = ui_current_win_type();
+
+        if (win_type != WIN_CHAT) {
+            ui_current_print_line("You must be in a regular chat window to use OTR.");
+        } else if (!ui_current_win_is_otr()) {
+            ui_current_print_line("You are not currently in an OTR session.");
+        } else {
+            char *recipient = ui_current_recipient();
+            ui_gone_insecure(recipient);
+            otr_end_session(recipient);
+        }
+        return TRUE;
+
     } else {
         cons_show("Usage: %s", help.usage);
         return TRUE;