[7d4fbcd] | 1 | #include <stdio.h> |
---|
| 2 | #include <stdlib.h> |
---|
| 3 | #include <unistd.h> |
---|
| 4 | #include <signal.h> |
---|
[789462a] | 5 | #include <netinet/in.h> |
---|
[7d4fbcd] | 6 | #include <string.h> |
---|
| 7 | #include <time.h> |
---|
[2adaf1d] | 8 | #include <sys/types.h> |
---|
| 9 | #include <sys/stat.h> |
---|
[8f44c6b] | 10 | #include <sys/wait.h> |
---|
| 11 | #include <errno.h> |
---|
[d09e5a1] | 12 | #include <signal.h> |
---|
[7d4fbcd] | 13 | #include "owl.h" |
---|
[d564c3d] | 14 | #include "filterproc.h" |
---|
[7d4fbcd] | 15 | |
---|
[e19eb97] | 16 | char *owl_function_command(const char *cmdbuff) |
---|
[d54838d] | 17 | { |
---|
[7d4fbcd] | 18 | owl_function_debugmsg("executing command: %s", cmdbuff); |
---|
| 19 | return owl_cmddict_execute(owl_global_get_cmddict(&g), |
---|
| 20 | owl_global_get_context(&g), cmdbuff); |
---|
| 21 | } |
---|
| 22 | |
---|
[e19eb97] | 23 | char *owl_function_command_argv(const char *const *argv, int argc) |
---|
[c4ba74d] | 24 | { |
---|
| 25 | return owl_cmddict_execute_argv(owl_global_get_cmddict(&g), |
---|
| 26 | owl_global_get_context(&g), |
---|
| 27 | argv, argc); |
---|
| 28 | } |
---|
| 29 | |
---|
[e19eb97] | 30 | void owl_function_command_norv(const char *cmdbuff) |
---|
[d54838d] | 31 | { |
---|
[7d4fbcd] | 32 | char *rv; |
---|
[4b464a4] | 33 | rv=owl_function_command(cmdbuff); |
---|
[7d4fbcd] | 34 | if (rv) owl_free(rv); |
---|
| 35 | } |
---|
| 36 | |
---|
[e19eb97] | 37 | void owl_function_command_alias(const char *alias_from, const char *alias_to) |
---|
[d54838d] | 38 | { |
---|
[7d4fbcd] | 39 | owl_cmddict_add_alias(owl_global_get_cmddict(&g), alias_from, alias_to); |
---|
| 40 | } |
---|
| 41 | |
---|
[0a0fb74] | 42 | const owl_cmd *owl_function_get_cmd(const char *name) |
---|
[d54838d] | 43 | { |
---|
[7d4fbcd] | 44 | return owl_cmddict_find(owl_global_get_cmddict(&g), name); |
---|
| 45 | } |
---|
| 46 | |
---|
[c79a047] | 47 | void owl_function_show_commands(void) |
---|
[d54838d] | 48 | { |
---|
[7d4fbcd] | 49 | owl_list l; |
---|
| 50 | owl_fmtext fm; |
---|
| 51 | |
---|
| 52 | owl_fmtext_init_null(&fm); |
---|
| 53 | owl_fmtext_append_bold(&fm, "Commands: "); |
---|
| 54 | owl_fmtext_append_normal(&fm, "(use 'show command <name>' for details)\n"); |
---|
| 55 | owl_cmddict_get_names(owl_global_get_cmddict(&g), &l); |
---|
| 56 | owl_fmtext_append_list(&fm, &l, "\n", owl_function_cmd_describe); |
---|
| 57 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 58 | owl_function_popless_fmtext(&fm); |
---|
[8d4b521] | 59 | owl_cmddict_namelist_cleanup(&l); |
---|
[7ab0020] | 60 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 61 | } |
---|
| 62 | |
---|
[e19eb97] | 63 | void owl_function_show_view(const char *viewname) |
---|
[ef56a67] | 64 | { |
---|
[9e5c9f3] | 65 | const owl_view *v; |
---|
[ef56a67] | 66 | owl_fmtext fm; |
---|
| 67 | |
---|
| 68 | /* we only have the one view right now */ |
---|
| 69 | v=owl_global_get_current_view(&g); |
---|
| 70 | if (viewname && strcmp(viewname, owl_view_get_name(v))) { |
---|
[ec6ff52] | 71 | owl_function_error("No view named '%s'", viewname); |
---|
[ef56a67] | 72 | return; |
---|
| 73 | } |
---|
| 74 | |
---|
| 75 | owl_fmtext_init_null(&fm); |
---|
| 76 | owl_view_to_fmtext(v, &fm); |
---|
| 77 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 78 | owl_fmtext_cleanup(&fm); |
---|
[ef56a67] | 79 | } |
---|
| 80 | |
---|
[c79a047] | 81 | void owl_function_show_styles(void) { |
---|
[f1e629d] | 82 | owl_list l; |
---|
| 83 | owl_fmtext fm; |
---|
| 84 | |
---|
| 85 | owl_fmtext_init_null(&fm); |
---|
| 86 | owl_fmtext_append_bold(&fm, "Styles:\n"); |
---|
| 87 | owl_global_get_style_names(&g, &l); |
---|
| 88 | owl_fmtext_append_list(&fm, &l, "\n", owl_function_style_describe); |
---|
| 89 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 90 | owl_function_popless_fmtext(&fm); |
---|
[8c59178] | 91 | owl_list_cleanup(&l, owl_free); |
---|
[7ab0020] | 92 | owl_fmtext_cleanup(&fm); |
---|
[f1e629d] | 93 | } |
---|
| 94 | |
---|
[e19eb97] | 95 | char *owl_function_style_describe(const char *name) { |
---|
| 96 | const char *desc; |
---|
[65b2173] | 97 | char *s; |
---|
[1fdab04] | 98 | const owl_style *style; |
---|
[f1e629d] | 99 | style = owl_global_get_style_by_name(&g, name); |
---|
| 100 | if (style) { |
---|
| 101 | desc = owl_style_get_description(style); |
---|
| 102 | } else { |
---|
| 103 | desc = "???"; |
---|
| 104 | } |
---|
| 105 | s = owl_sprintf("%-20s - %s%s", name, |
---|
| 106 | 0==owl_style_validate(style)?"":"[INVALID] ", |
---|
| 107 | desc); |
---|
| 108 | return s; |
---|
| 109 | } |
---|
[ef56a67] | 110 | |
---|
[e19eb97] | 111 | char *owl_function_cmd_describe(const char *name) |
---|
[d54838d] | 112 | { |
---|
[0a0fb74] | 113 | const owl_cmd *cmd = owl_cmddict_find(owl_global_get_cmddict(&g), name); |
---|
[7d4fbcd] | 114 | if (cmd) return owl_cmd_describe(cmd); |
---|
| 115 | else return(NULL); |
---|
| 116 | } |
---|
| 117 | |
---|
[e19eb97] | 118 | void owl_function_show_command(const char *name) |
---|
[d54838d] | 119 | { |
---|
[7d4fbcd] | 120 | owl_function_help_for_command(name); |
---|
| 121 | } |
---|
| 122 | |
---|
[c79a047] | 123 | void owl_function_show_license(void) |
---|
[debb15d] | 124 | { |
---|
[e19eb97] | 125 | const char *text; |
---|
[debb15d] | 126 | |
---|
| 127 | text="" |
---|
[4228f8b] | 128 | "barnowl version " OWL_VERSION_STRING "\n" |
---|
[1cfcab7] | 129 | "Copyright (c) 2006-2010 The BarnOwl Developers. All rights reserved.\n" |
---|
[debb15d] | 130 | "Copyright (c) 2004 James Kretchmar. All rights reserved.\n" |
---|
| 131 | "\n" |
---|
| 132 | "Redistribution and use in source and binary forms, with or without\n" |
---|
| 133 | "modification, are permitted provided that the following conditions are\n" |
---|
| 134 | "met:\n" |
---|
| 135 | "\n" |
---|
| 136 | " * Redistributions of source code must retain the above copyright\n" |
---|
| 137 | " notice, this list of conditions and the following disclaimer.\n" |
---|
| 138 | "\n" |
---|
| 139 | " * Redistributions in binary form must reproduce the above copyright\n" |
---|
| 140 | " notice, this list of conditions and the following disclaimer in\n" |
---|
| 141 | " the documentation and/or other materials provided with the\n" |
---|
| 142 | " distribution.\n" |
---|
| 143 | "\n" |
---|
| 144 | " * Redistributions in any form must be accompanied by information on\n" |
---|
| 145 | " how to obtain complete source code for the Owl software and any\n" |
---|
| 146 | " accompanying software that uses the Owl software. The source code\n" |
---|
| 147 | " must either be included in the distribution or be available for no\n" |
---|
| 148 | " more than the cost of distribution plus a nominal fee, and must be\n" |
---|
| 149 | " freely redistributable under reasonable conditions. For an\n" |
---|
| 150 | " executable file, complete source code means the source code for\n" |
---|
| 151 | " all modules it contains. It does not include source code for\n" |
---|
| 152 | " modules or files that typically accompany the major components of\n" |
---|
| 153 | " the operating system on which the executable file runs.\n" |
---|
| 154 | "\n" |
---|
| 155 | "THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR\n" |
---|
| 156 | "IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n" |
---|
| 157 | "WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR\n" |
---|
| 158 | "NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE\n" |
---|
| 159 | "LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\n" |
---|
| 160 | "CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\n" |
---|
| 161 | "SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR\n" |
---|
| 162 | "BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,\n" |
---|
| 163 | "WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE\n" |
---|
| 164 | "OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN\n" |
---|
| 165 | "IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n"; |
---|
| 166 | owl_function_popless_text(text); |
---|
| 167 | } |
---|
| 168 | |
---|
[c79a047] | 169 | void owl_function_show_quickstart(void) |
---|
[799b60e] | 170 | { |
---|
[e19eb97] | 171 | const char *message = |
---|
[799b60e] | 172 | "Move between messages with the arrow keys, and press 'r' to reply.\n" |
---|
| 173 | "For more info, press 'h' or visit http://barnowl.mit.edu/\n\n" |
---|
| 174 | #ifdef HAVE_LIBZEPHYR |
---|
| 175 | "@b(Zephyr:)\n" |
---|
| 176 | "To send a message to a user, type ':zwrite @b(username)'. You can also\n" |
---|
| 177 | "press 'z' and then type the username. To subscribe to a class, type\n" |
---|
| 178 | "':sub @b(class)', and then type ':zwrite -c @b(class)' to send.\n\n" |
---|
| 179 | #endif |
---|
| 180 | "@b(AIM:)\n" |
---|
| 181 | "Log in to AIM with ':aimlogin @b(screenname)'. Use ':aimwrite @b(screenname)',\n" |
---|
| 182 | "or 'a' and then the screen name, to send someone a message.\n\n" |
---|
| 183 | ; |
---|
| 184 | |
---|
| 185 | if (owl_perlconfig_is_function("BarnOwl::Hooks::_get_quickstart")) { |
---|
| 186 | char *perlquickstart = owl_perlconfig_execute("BarnOwl::Hooks::_get_quickstart()"); |
---|
| 187 | if (perlquickstart) { |
---|
| 188 | char *result = owl_sprintf("%s%s", message, perlquickstart); |
---|
| 189 | owl_function_adminmsg("BarnOwl Quickstart", result); |
---|
| 190 | owl_free(result); |
---|
| 191 | owl_free(perlquickstart); |
---|
| 192 | return; |
---|
| 193 | } |
---|
| 194 | } |
---|
| 195 | owl_function_adminmsg("BarnOwl Quickstart", message); |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | |
---|
[15b34fd] | 199 | /* Create an admin message, append it to the global list of messages |
---|
| 200 | * and redisplay if necessary. |
---|
| 201 | */ |
---|
[e19eb97] | 202 | void owl_function_adminmsg(const char *header, const char *body) |
---|
[d54838d] | 203 | { |
---|
[7d4fbcd] | 204 | owl_message *m; |
---|
[4b464a4] | 205 | |
---|
[7d4fbcd] | 206 | m=owl_malloc(sizeof(owl_message)); |
---|
[15b34fd] | 207 | owl_message_create_admin(m, header, body); |
---|
| 208 | |
---|
[8fec514] | 209 | /* add it to the global list and current view */ |
---|
[7d4fbcd] | 210 | owl_messagelist_append_element(owl_global_get_msglist(&g), m); |
---|
| 211 | owl_view_consider_message(owl_global_get_current_view(&g), m); |
---|
| 212 | |
---|
[15b34fd] | 213 | /* do followlast if necessary */ |
---|
| 214 | if (owl_global_should_followlast(&g)) owl_function_lastmsg_noredisplay(); |
---|
[7d4fbcd] | 215 | |
---|
[15b34fd] | 216 | /* redisplay etc. */ |
---|
[7d4fbcd] | 217 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 218 | } |
---|
| 219 | |
---|
[15b34fd] | 220 | /* Create an outgoing zephyr message and return a pointer to it. Does |
---|
[13fe062] | 221 | * not put it on the global queue, use owl_global_messagequeue_addmsg() for |
---|
[15b34fd] | 222 | * that. |
---|
| 223 | */ |
---|
[987cf3f] | 224 | owl_message *owl_function_make_outgoing_zephyr(const owl_zwrite *z) |
---|
[d09e5a1] | 225 | { |
---|
| 226 | owl_message *m; |
---|
| 227 | |
---|
| 228 | /* create the message */ |
---|
| 229 | m=owl_malloc(sizeof(owl_message)); |
---|
[987cf3f] | 230 | owl_message_create_from_zwrite(m, z, owl_zwrite_get_message(z)); |
---|
[15b34fd] | 231 | |
---|
| 232 | return(m); |
---|
| 233 | } |
---|
| 234 | |
---|
| 235 | /* Create an outgoing AIM message, returns a pointer to the created |
---|
| 236 | * message or NULL if we're not logged into AIM (and thus unable to |
---|
| 237 | * create the message). Does not put it on the global queue. Use |
---|
[13fe062] | 238 | * owl_global_messagequeue_addmsg() for that . |
---|
[15b34fd] | 239 | */ |
---|
[e19eb97] | 240 | owl_message *owl_function_make_outgoing_aim(const char *body, const char *to) |
---|
[15b34fd] | 241 | { |
---|
| 242 | owl_message *m; |
---|
| 243 | |
---|
| 244 | /* error if we're not logged into aim */ |
---|
| 245 | if (!owl_global_is_aimloggedin(&g)) return(NULL); |
---|
| 246 | |
---|
| 247 | m=owl_malloc(sizeof(owl_message)); |
---|
[d559df9] | 248 | owl_message_create_aim(m, |
---|
| 249 | owl_global_get_aim_screenname(&g), |
---|
| 250 | to, |
---|
| 251 | body, |
---|
| 252 | OWL_MESSAGE_DIRECTION_OUT, |
---|
| 253 | 0); |
---|
[15b34fd] | 254 | return(m); |
---|
[d09e5a1] | 255 | } |
---|
| 256 | |
---|
[15b34fd] | 257 | /* Create an outgoing loopback message and return a pointer to it. |
---|
| 258 | * Does not append it to the global queue, use |
---|
[13fe062] | 259 | * owl_global_messagequeue_addmsg() for that. |
---|
[15b34fd] | 260 | */ |
---|
[e19eb97] | 261 | owl_message *owl_function_make_outgoing_loopback(const char *body) |
---|
[37eab7f] | 262 | { |
---|
| 263 | owl_message *m; |
---|
| 264 | |
---|
| 265 | /* create the message */ |
---|
| 266 | m=owl_malloc(sizeof(owl_message)); |
---|
| 267 | owl_message_create_loopback(m, body); |
---|
| 268 | owl_message_set_direction_out(m); |
---|
| 269 | |
---|
[15b34fd] | 270 | return(m); |
---|
[37eab7f] | 271 | } |
---|
| 272 | |
---|
[1b1cd2c] | 273 | void owl_function_start_edit_win(const char *line, void (*callback)(owl_editwin *), void *data, void (*cleanup)(void *)) |
---|
[d54838d] | 274 | { |
---|
[7d4fbcd] | 275 | owl_editwin *e; |
---|
[bdbec0a] | 276 | char *s; |
---|
| 277 | |
---|
| 278 | /* create and setup the editwin */ |
---|
[58d47ca] | 279 | e = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_MULTILINE, |
---|
| 280 | owl_global_get_msg_history(&g)); |
---|
[bdbec0a] | 281 | owl_editwin_set_dotsend(e); |
---|
| 282 | s = owl_sprintf("----> %s\n", line); |
---|
| 283 | owl_editwin_set_locktext(e, s); |
---|
| 284 | owl_free(s); |
---|
| 285 | |
---|
[38cc669] | 286 | owl_editwin_set_cbdata(e, data, cleanup); |
---|
| 287 | owl_editwin_set_callback(e, callback); |
---|
[8bba1ae] | 288 | owl_global_push_context(&g, OWL_CTX_EDITMULTI, e, "editmulti", owl_global_get_typwin_window(&g)); |
---|
[bdbec0a] | 289 | } |
---|
| 290 | |
---|
[987cf3f] | 291 | static void owl_function_write_setup(const char *noun) |
---|
[bdbec0a] | 292 | { |
---|
| 293 | |
---|
| 294 | if (!owl_global_get_lockout_ctrld(&g)) |
---|
| 295 | owl_function_makemsg("Type your %s below. " |
---|
| 296 | "End with ^D or a dot on a line by itself." |
---|
| 297 | " ^C will quit.", noun); |
---|
| 298 | else |
---|
| 299 | owl_function_makemsg("Type your %s below. " |
---|
| 300 | "End with a dot on a line by itself. ^C will quit.", |
---|
| 301 | noun); |
---|
| 302 | } |
---|
| 303 | |
---|
[987cf3f] | 304 | void owl_function_zwrite_setup(owl_zwrite *z) |
---|
[bdbec0a] | 305 | { |
---|
[7d4fbcd] | 306 | /* send a ping if necessary */ |
---|
| 307 | if (owl_global_is_txping(&g)) { |
---|
[987cf3f] | 308 | owl_zwrite_send_ping(z); |
---|
[7d4fbcd] | 309 | } |
---|
| 310 | |
---|
[987cf3f] | 311 | |
---|
| 312 | owl_function_write_setup("zephyr"); |
---|
| 313 | owl_function_start_edit_win(z->zwriteline, |
---|
| 314 | &owl_callback_zwrite, |
---|
| 315 | z, (void(*)(void*))owl_zwrite_delete); |
---|
[7d4fbcd] | 316 | } |
---|
| 317 | |
---|
[e19eb97] | 318 | void owl_function_aimwrite_setup(const char *line) |
---|
[d09e5a1] | 319 | { |
---|
[987cf3f] | 320 | owl_function_write_setup("message"); |
---|
| 321 | owl_function_start_edit_win(line, |
---|
| 322 | &owl_callback_aimwrite, |
---|
| 323 | owl_strdup(line), |
---|
| 324 | owl_free); |
---|
| 325 | |
---|
[d09e5a1] | 326 | } |
---|
| 327 | |
---|
[c79a047] | 328 | void owl_function_loopwrite_setup(void) |
---|
[37eab7f] | 329 | { |
---|
[987cf3f] | 330 | owl_function_write_setup("message"); |
---|
| 331 | owl_function_start_edit_win("loopwrite", |
---|
| 332 | &owl_callback_loopwrite, |
---|
| 333 | "loopwrite", NULL); |
---|
[1b6b2f3] | 334 | } |
---|
| 335 | |
---|
| 336 | void owl_callback_zwrite(owl_editwin *e) { |
---|
[987cf3f] | 337 | owl_zwrite *z = owl_editwin_get_cbdata(e); |
---|
| 338 | owl_function_zwrite(z, owl_editwin_get_text(e)); |
---|
[37eab7f] | 339 | } |
---|
| 340 | |
---|
[9ceee9d] | 341 | /* send, log and display an outgoing zephyr. If 'msg' is NULL |
---|
| 342 | * the message is expected to be set from the zwrite line itself |
---|
| 343 | */ |
---|
[987cf3f] | 344 | void owl_function_zwrite(owl_zwrite *z, const char *msg) |
---|
[d54838d] | 345 | { |
---|
[15b34fd] | 346 | owl_message *m; |
---|
[0743696] | 347 | int ret; |
---|
[d309eb3] | 348 | |
---|
[987cf3f] | 349 | if(strcmp(z->cmd, "zcrypt") == 0) { |
---|
| 350 | owl_function_zcrypt(z, msg); |
---|
[a5fc448] | 351 | return; |
---|
| 352 | } |
---|
| 353 | |
---|
[9ceee9d] | 354 | /* create the zwrite and send the message */ |
---|
[987cf3f] | 355 | owl_zwrite_populate_zsig(z); |
---|
[9ceee9d] | 356 | if (msg) { |
---|
[987cf3f] | 357 | owl_zwrite_set_message(z, msg); |
---|
[d309eb3] | 358 | } |
---|
[0743696] | 359 | ret = owl_zwrite_send_message(z); |
---|
| 360 | if (ret != 0) { |
---|
| 361 | owl_function_makemsg("Error sending zephyr: %s", error_message(ret)); |
---|
| 362 | return; |
---|
| 363 | } |
---|
[9ceee9d] | 364 | owl_function_makemsg("Waiting for ack..."); |
---|
[d309eb3] | 365 | |
---|
[15b34fd] | 366 | /* If it's personal */ |
---|
[987cf3f] | 367 | if (owl_zwrite_is_personal(z)) { |
---|
[15b34fd] | 368 | /* create the outgoing message */ |
---|
[987cf3f] | 369 | m=owl_function_make_outgoing_zephyr(z); |
---|
[d309eb3] | 370 | |
---|
[3c7d086a] | 371 | if (m) { |
---|
[13a3c1db] | 372 | owl_global_messagequeue_addmsg(&g, m); |
---|
[15b34fd] | 373 | } else { |
---|
[3c7d086a] | 374 | owl_function_error("Could not create outgoing zephyr message"); |
---|
[9ceee9d] | 375 | } |
---|
| 376 | } |
---|
[d309eb3] | 377 | } |
---|
| 378 | |
---|
[9ceee9d] | 379 | /* send, log and display an outgoing zcrypt zephyr. If 'msg' is NULL |
---|
[ce7db4d] | 380 | * the message is expected to be set from the zwrite line itself |
---|
| 381 | */ |
---|
[987cf3f] | 382 | void owl_function_zcrypt(owl_zwrite *z, const char *msg) |
---|
[d54838d] | 383 | { |
---|
[9ceee9d] | 384 | char *cryptmsg; |
---|
[15b34fd] | 385 | owl_message *m; |
---|
[d564c3d] | 386 | const char *argv[7]; |
---|
[9a7b4f2] | 387 | char *zcrypt; |
---|
[d564c3d] | 388 | int rv, status; |
---|
[96582d5] | 389 | char *old_msg; |
---|
[7d4fbcd] | 390 | |
---|
| 391 | /* create the zwrite and send the message */ |
---|
[987cf3f] | 392 | owl_zwrite_populate_zsig(z); |
---|
[ce7db4d] | 393 | if (msg) { |
---|
[987cf3f] | 394 | owl_zwrite_set_message(z, msg); |
---|
[ce7db4d] | 395 | } |
---|
[96582d5] | 396 | old_msg = owl_strdup(owl_zwrite_get_message(z)); |
---|
[d564c3d] | 397 | |
---|
[9a7b4f2] | 398 | zcrypt = owl_sprintf("%s/zcrypt", owl_get_bindir()); |
---|
[d564c3d] | 399 | argv[0] = "zcrypt"; |
---|
| 400 | argv[1] = "-E"; |
---|
[987cf3f] | 401 | argv[2] = "-c"; argv[3] = owl_zwrite_get_class(z); |
---|
| 402 | argv[4] = "-i"; argv[5] = owl_zwrite_get_instance(z); |
---|
[d564c3d] | 403 | argv[6] = NULL; |
---|
| 404 | |
---|
[987cf3f] | 405 | rv = call_filter(zcrypt, argv, owl_zwrite_get_message(z), &cryptmsg, &status); |
---|
[9a7b4f2] | 406 | |
---|
| 407 | owl_free(zcrypt); |
---|
[d564c3d] | 408 | |
---|
| 409 | if (rv || status) { |
---|
| 410 | if(cryptmsg) owl_free(cryptmsg); |
---|
[96582d5] | 411 | owl_free(old_msg); |
---|
[ec6ff52] | 412 | owl_function_error("Error in zcrypt, possibly no key found. Message not sent."); |
---|
[9ceee9d] | 413 | owl_function_beep(); |
---|
| 414 | return; |
---|
| 415 | } |
---|
| 416 | |
---|
[7bfc613] | 417 | owl_zwrite_set_message_raw(z, cryptmsg); |
---|
[987cf3f] | 418 | owl_zwrite_set_opcode(z, "crypt"); |
---|
[7bfc613] | 419 | |
---|
[987cf3f] | 420 | owl_zwrite_send_message(z); |
---|
[7d4fbcd] | 421 | owl_function_makemsg("Waiting for ack..."); |
---|
| 422 | |
---|
[15b34fd] | 423 | /* If it's personal */ |
---|
[987cf3f] | 424 | if (owl_zwrite_is_personal(z)) { |
---|
[c43c77b] | 425 | /* Create the outgoing message. Restore the un-crypted message for display. */ |
---|
[7bfc613] | 426 | owl_zwrite_set_message_raw(z, old_msg); |
---|
[987cf3f] | 427 | m=owl_function_make_outgoing_zephyr(z); |
---|
[3c7d086a] | 428 | if (m) { |
---|
[13a3c1db] | 429 | owl_global_messagequeue_addmsg(&g, m); |
---|
[15b34fd] | 430 | } else { |
---|
[3c7d086a] | 431 | owl_function_error("Could not create outgoing zephyr message"); |
---|
[7d4fbcd] | 432 | } |
---|
| 433 | } |
---|
| 434 | |
---|
| 435 | /* free the zwrite */ |
---|
[9ceee9d] | 436 | owl_free(cryptmsg); |
---|
[7d4fbcd] | 437 | } |
---|
| 438 | |
---|
[1b6b2f3] | 439 | void owl_callback_aimwrite(owl_editwin *e) { |
---|
[8dfb59c] | 440 | char *command = owl_editwin_get_cbdata(e); |
---|
| 441 | owl_function_aimwrite(command, |
---|
[1b6b2f3] | 442 | owl_editwin_get_text(e)); |
---|
| 443 | } |
---|
| 444 | |
---|
[e19eb97] | 445 | void owl_function_aimwrite(const char *line, const char *msg) |
---|
[d09e5a1] | 446 | { |
---|
[ec6ff52] | 447 | int ret; |
---|
[e19eb97] | 448 | const char *to; |
---|
[65b2173] | 449 | char *format_msg; |
---|
[15b34fd] | 450 | owl_message *m; |
---|
[f82e233] | 451 | |
---|
[4211f50b] | 452 | to = line + 9; |
---|
| 453 | |
---|
[f82e233] | 454 | /* make a formatted copy of the message */ |
---|
| 455 | format_msg=owl_strdup(msg); |
---|
| 456 | owl_text_wordunwrap(format_msg); |
---|
[ec6ff52] | 457 | |
---|
[f82e233] | 458 | /* send the message */ |
---|
| 459 | ret=owl_aim_send_im(to, format_msg); |
---|
[ec6ff52] | 460 | if (!ret) { |
---|
| 461 | owl_function_makemsg("AIM message sent."); |
---|
| 462 | } else { |
---|
| 463 | owl_function_error("Could not send AIM message."); |
---|
| 464 | } |
---|
[d09e5a1] | 465 | |
---|
[15b34fd] | 466 | /* create the outgoing message */ |
---|
| 467 | m=owl_function_make_outgoing_aim(msg, to); |
---|
| 468 | |
---|
[3c7d086a] | 469 | if (m) { |
---|
[13a3c1db] | 470 | owl_global_messagequeue_addmsg(&g, m); |
---|
[15b34fd] | 471 | } else { |
---|
[3c7d086a] | 472 | owl_function_error("Could not create outgoing AIM message"); |
---|
[d09e5a1] | 473 | } |
---|
[f82e233] | 474 | |
---|
| 475 | owl_free(format_msg); |
---|
[d09e5a1] | 476 | } |
---|
| 477 | |
---|
[e19eb97] | 478 | void owl_function_send_aimawymsg(const char *to, const char *msg) |
---|
[9854278] | 479 | { |
---|
| 480 | int ret; |
---|
| 481 | char *format_msg; |
---|
[15b34fd] | 482 | owl_message *m; |
---|
[9854278] | 483 | |
---|
| 484 | /* make a formatted copy of the message */ |
---|
| 485 | format_msg=owl_strdup(msg); |
---|
| 486 | owl_text_wordunwrap(format_msg); |
---|
| 487 | |
---|
| 488 | /* send the message */ |
---|
| 489 | ret=owl_aim_send_awaymsg(to, format_msg); |
---|
| 490 | if (!ret) { |
---|
| 491 | /* owl_function_makemsg("AIM message sent."); */ |
---|
| 492 | } else { |
---|
| 493 | owl_function_error("Could not send AIM message."); |
---|
| 494 | } |
---|
| 495 | |
---|
[15b34fd] | 496 | /* create the message */ |
---|
| 497 | m=owl_function_make_outgoing_aim(msg, to); |
---|
| 498 | if (m) { |
---|
[13a3c1db] | 499 | owl_global_messagequeue_addmsg(&g, m); |
---|
[15b34fd] | 500 | } else { |
---|
| 501 | owl_function_error("Could not create AIM message"); |
---|
[9854278] | 502 | } |
---|
| 503 | owl_free(format_msg); |
---|
| 504 | } |
---|
| 505 | |
---|
[1b6b2f3] | 506 | void owl_callback_loopwrite(owl_editwin *e) { |
---|
| 507 | owl_function_loopwrite(owl_editwin_get_text(e)); |
---|
| 508 | } |
---|
| 509 | |
---|
[e19eb97] | 510 | void owl_function_loopwrite(const char *msg) |
---|
[37eab7f] | 511 | { |
---|
[15b34fd] | 512 | owl_message *min, *mout; |
---|
[37eab7f] | 513 | |
---|
| 514 | /* create a message and put it on the message queue. This simulates |
---|
| 515 | * an incoming message */ |
---|
[15b34fd] | 516 | min=owl_malloc(sizeof(owl_message)); |
---|
[4211f50b] | 517 | mout=owl_function_make_outgoing_loopback(msg); |
---|
[13a3c1db] | 518 | |
---|
[37eab7f] | 519 | if (owl_global_is_displayoutgoing(&g)) { |
---|
[13a3c1db] | 520 | owl_global_messagequeue_addmsg(&g, mout); |
---|
[15b34fd] | 521 | } else { |
---|
[91634ec] | 522 | owl_message_delete(mout); |
---|
[37eab7f] | 523 | } |
---|
| 524 | |
---|
[13a3c1db] | 525 | owl_message_create_loopback(min, msg); |
---|
| 526 | owl_message_set_direction_in(min); |
---|
| 527 | owl_global_messagequeue_addmsg(&g, min); |
---|
| 528 | |
---|
[37eab7f] | 529 | /* fake a makemsg */ |
---|
| 530 | owl_function_makemsg("loopback message sent"); |
---|
| 531 | } |
---|
| 532 | |
---|
[b950088] | 533 | /* If filter is non-null, looks for the next message matching |
---|
| 534 | * that filter. If skip_deleted, skips any deleted messages. |
---|
| 535 | * If last_if_none, will stop at the last message in the view |
---|
| 536 | * if no matching messages are found. */ |
---|
[e19eb97] | 537 | void owl_function_nextmsg_full(const char *filter, int skip_deleted, int last_if_none) |
---|
[d54838d] | 538 | { |
---|
[b950088] | 539 | int curmsg, i, viewsize, found; |
---|
[9e5c9f3] | 540 | const owl_view *v; |
---|
[4542047] | 541 | const owl_filter *f = NULL; |
---|
[c08c70a] | 542 | const owl_message *m; |
---|
[7d4fbcd] | 543 | |
---|
| 544 | v=owl_global_get_current_view(&g); |
---|
[b950088] | 545 | |
---|
| 546 | if (filter) { |
---|
| 547 | f=owl_global_get_filter(&g, filter); |
---|
| 548 | if (!f) { |
---|
[ec6ff52] | 549 | owl_function_error("No %s filter defined", filter); |
---|
[b950088] | 550 | return; |
---|
| 551 | } |
---|
[7d4fbcd] | 552 | } |
---|
| 553 | |
---|
[b950088] | 554 | curmsg=owl_global_get_curmsg(&g); |
---|
| 555 | viewsize=owl_view_get_size(v); |
---|
| 556 | found=0; |
---|
[7d4fbcd] | 557 | |
---|
[b950088] | 558 | /* just check to make sure we're in bounds... */ |
---|
| 559 | if (curmsg>viewsize-1) curmsg=viewsize-1; |
---|
| 560 | if (curmsg<0) curmsg=0; |
---|
[7d4fbcd] | 561 | |
---|
[b950088] | 562 | for (i=curmsg+1; i<viewsize; i++) { |
---|
| 563 | m=owl_view_get_element(v, i); |
---|
| 564 | if (skip_deleted && owl_message_is_delete(m)) continue; |
---|
| 565 | if (f && !owl_filter_message_match(f, m)) continue; |
---|
| 566 | found = 1; |
---|
| 567 | break; |
---|
| 568 | } |
---|
| 569 | |
---|
| 570 | if (i>owl_view_get_size(v)-1) i=owl_view_get_size(v)-1; |
---|
[5763474] | 571 | if (i<0) i=0; |
---|
[b950088] | 572 | |
---|
| 573 | if (!found) { |
---|
[799b60e] | 574 | owl_function_makemsg("already at last%s message%s%s%s", |
---|
[b950088] | 575 | skip_deleted?" non-deleted":"", |
---|
[799b60e] | 576 | filter?" in ":"", filter?filter:"", |
---|
| 577 | owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g)) ? |
---|
| 578 | ", press Enter to scroll" : ""); |
---|
[5a6e6b9] | 579 | /* if (!skip_deleted) owl_function_beep(); */ |
---|
[7d4fbcd] | 580 | } |
---|
| 581 | |
---|
[b950088] | 582 | if (last_if_none || found) { |
---|
| 583 | owl_global_set_curmsg(&g, i); |
---|
| 584 | owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS); |
---|
| 585 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 586 | owl_global_set_direction_downwards(&g); |
---|
| 587 | } |
---|
| 588 | } |
---|
[7d4fbcd] | 589 | |
---|
[e19eb97] | 590 | void owl_function_prevmsg_full(const char *filter, int skip_deleted, int first_if_none) |
---|
[d54838d] | 591 | { |
---|
[402eb16f] | 592 | int curmsg, i, found; |
---|
[9e5c9f3] | 593 | const owl_view *v; |
---|
[4542047] | 594 | const owl_filter *f = NULL; |
---|
[c08c70a] | 595 | const owl_message *m; |
---|
[7d4fbcd] | 596 | |
---|
| 597 | v=owl_global_get_current_view(&g); |
---|
| 598 | |
---|
[b950088] | 599 | if (filter) { |
---|
| 600 | f=owl_global_get_filter(&g, filter); |
---|
| 601 | if (!f) { |
---|
[ec6ff52] | 602 | owl_function_error("No %s filter defined", filter); |
---|
[b950088] | 603 | return; |
---|
[7d4fbcd] | 604 | } |
---|
[b950088] | 605 | } |
---|
[7d4fbcd] | 606 | |
---|
[b950088] | 607 | curmsg=owl_global_get_curmsg(&g); |
---|
| 608 | found=0; |
---|
| 609 | |
---|
| 610 | /* just check to make sure we're in bounds... */ |
---|
| 611 | if (curmsg<0) curmsg=0; |
---|
| 612 | |
---|
| 613 | for (i=curmsg-1; i>=0; i--) { |
---|
| 614 | m=owl_view_get_element(v, i); |
---|
| 615 | if (skip_deleted && owl_message_is_delete(m)) continue; |
---|
| 616 | if (f && !owl_filter_message_match(f, m)) continue; |
---|
| 617 | found = 1; |
---|
| 618 | break; |
---|
| 619 | } |
---|
| 620 | |
---|
| 621 | if (i<0) i=0; |
---|
| 622 | |
---|
| 623 | if (!found) { |
---|
[f51bc78] | 624 | owl_function_makemsg("already at first%s message%s%s", |
---|
[b950088] | 625 | skip_deleted?" non-deleted":"", |
---|
| 626 | filter?" in ":"", filter?filter:""); |
---|
[5a6e6b9] | 627 | /* if (!skip_deleted) owl_function_beep(); */ |
---|
[b950088] | 628 | } |
---|
| 629 | |
---|
| 630 | if (first_if_none || found) { |
---|
| 631 | owl_global_set_curmsg(&g, i); |
---|
| 632 | owl_function_calculate_topmsg(OWL_DIRECTION_UPWARDS); |
---|
| 633 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 634 | owl_global_set_direction_upwards(&g); |
---|
[7d4fbcd] | 635 | } |
---|
| 636 | } |
---|
| 637 | |
---|
[c79a047] | 638 | void owl_function_nextmsg(void) |
---|
[d54838d] | 639 | { |
---|
[b950088] | 640 | owl_function_nextmsg_full(NULL, 0, 1); |
---|
| 641 | } |
---|
[7d4fbcd] | 642 | |
---|
[c79a047] | 643 | void owl_function_prevmsg(void) |
---|
[d54838d] | 644 | { |
---|
[b950088] | 645 | owl_function_prevmsg_full(NULL, 0, 1); |
---|
| 646 | } |
---|
[7d4fbcd] | 647 | |
---|
[c79a047] | 648 | void owl_function_nextmsg_notdeleted(void) |
---|
[d54838d] | 649 | { |
---|
[b950088] | 650 | owl_function_nextmsg_full(NULL, 1, 1); |
---|
| 651 | } |
---|
[7d4fbcd] | 652 | |
---|
[c79a047] | 653 | void owl_function_prevmsg_notdeleted(void) |
---|
[d54838d] | 654 | { |
---|
[b950088] | 655 | owl_function_prevmsg_full(NULL, 1, 1); |
---|
[7d4fbcd] | 656 | } |
---|
| 657 | |
---|
[b950088] | 658 | /* if move_after is 1, moves after the delete */ |
---|
[d54838d] | 659 | void owl_function_deletecur(int move_after) |
---|
| 660 | { |
---|
[7d4fbcd] | 661 | int curmsg; |
---|
| 662 | owl_view *v; |
---|
| 663 | |
---|
| 664 | v=owl_global_get_current_view(&g); |
---|
| 665 | |
---|
| 666 | /* bail if there's no current message */ |
---|
| 667 | if (owl_view_get_size(v) < 1) { |
---|
[ec6ff52] | 668 | owl_function_error("No current message to delete"); |
---|
[7d4fbcd] | 669 | return; |
---|
| 670 | } |
---|
| 671 | |
---|
| 672 | /* mark the message for deletion */ |
---|
| 673 | curmsg=owl_global_get_curmsg(&g); |
---|
| 674 | owl_view_delete_element(v, curmsg); |
---|
| 675 | |
---|
[b950088] | 676 | if (move_after) { |
---|
| 677 | /* move the poiner in the appropriate direction |
---|
| 678 | * to the next undeleted msg */ |
---|
| 679 | if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) { |
---|
| 680 | owl_function_prevmsg_notdeleted(); |
---|
| 681 | } else { |
---|
| 682 | owl_function_nextmsg_notdeleted(); |
---|
| 683 | } |
---|
[7d4fbcd] | 684 | } |
---|
| 685 | } |
---|
| 686 | |
---|
[d54838d] | 687 | void owl_function_undeletecur(int move_after) |
---|
| 688 | { |
---|
[7d4fbcd] | 689 | int curmsg; |
---|
| 690 | owl_view *v; |
---|
| 691 | |
---|
| 692 | v=owl_global_get_current_view(&g); |
---|
| 693 | |
---|
| 694 | if (owl_view_get_size(v) < 1) { |
---|
[ec6ff52] | 695 | owl_function_error("No current message to undelete"); |
---|
[7d4fbcd] | 696 | return; |
---|
| 697 | } |
---|
| 698 | curmsg=owl_global_get_curmsg(&g); |
---|
| 699 | |
---|
| 700 | owl_view_undelete_element(v, curmsg); |
---|
| 701 | |
---|
[b950088] | 702 | if (move_after) { |
---|
| 703 | if (owl_global_get_direction(&g)==OWL_DIRECTION_UPWARDS) { |
---|
| 704 | if (curmsg>0) { |
---|
| 705 | owl_function_prevmsg(); |
---|
| 706 | } else { |
---|
| 707 | owl_function_nextmsg(); |
---|
| 708 | } |
---|
[7d4fbcd] | 709 | } else { |
---|
[b950088] | 710 | owl_function_nextmsg(); |
---|
[7d4fbcd] | 711 | } |
---|
| 712 | } |
---|
| 713 | |
---|
| 714 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 715 | } |
---|
| 716 | |
---|
[c79a047] | 717 | void owl_function_expunge(void) |
---|
[d54838d] | 718 | { |
---|
[7d4fbcd] | 719 | int curmsg; |
---|
[c08c70a] | 720 | const owl_message *m; |
---|
[7d4fbcd] | 721 | owl_messagelist *ml; |
---|
| 722 | owl_view *v; |
---|
[486688f] | 723 | int lastmsgid=0; |
---|
[7d4fbcd] | 724 | |
---|
| 725 | curmsg=owl_global_get_curmsg(&g); |
---|
| 726 | v=owl_global_get_current_view(&g); |
---|
| 727 | ml=owl_global_get_msglist(&g); |
---|
| 728 | |
---|
| 729 | m=owl_view_get_element(v, curmsg); |
---|
[486688f] | 730 | if (m) lastmsgid = owl_message_get_id(m); |
---|
[7d4fbcd] | 731 | |
---|
| 732 | /* expunge the message list */ |
---|
| 733 | owl_messagelist_expunge(ml); |
---|
| 734 | |
---|
| 735 | /* update all views (we only have one right now) */ |
---|
| 736 | owl_view_recalculate(v); |
---|
| 737 | |
---|
[486688f] | 738 | /* find where the new position should be |
---|
| 739 | (as close as possible to where we last where) */ |
---|
| 740 | curmsg = owl_view_get_nearest_to_msgid(v, lastmsgid); |
---|
| 741 | if (curmsg>owl_view_get_size(v)-1) curmsg = owl_view_get_size(v)-1; |
---|
| 742 | if (curmsg<0) curmsg = 0; |
---|
| 743 | owl_global_set_curmsg(&g, curmsg); |
---|
| 744 | owl_function_calculate_topmsg(OWL_DIRECTION_NONE); |
---|
[7d4fbcd] | 745 | /* if there are no messages set the direction to down in case we |
---|
| 746 | delete everything upwards */ |
---|
| 747 | owl_global_set_direction_downwards(&g); |
---|
| 748 | |
---|
| 749 | owl_function_makemsg("Messages expunged"); |
---|
| 750 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 751 | } |
---|
| 752 | |
---|
[c79a047] | 753 | void owl_function_firstmsg(void) |
---|
[d54838d] | 754 | { |
---|
[7d4fbcd] | 755 | owl_global_set_curmsg(&g, 0); |
---|
| 756 | owl_global_set_topmsg(&g, 0); |
---|
| 757 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 758 | owl_global_set_direction_downwards(&g); |
---|
| 759 | } |
---|
| 760 | |
---|
[c79a047] | 761 | void owl_function_lastmsg_noredisplay(void) |
---|
[d54838d] | 762 | { |
---|
[5eeea3b] | 763 | int oldcurmsg, curmsg; |
---|
[9e5c9f3] | 764 | const owl_view *v; |
---|
[7d4fbcd] | 765 | |
---|
| 766 | v=owl_global_get_current_view(&g); |
---|
[5eeea3b] | 767 | oldcurmsg=owl_global_get_curmsg(&g); |
---|
| 768 | curmsg=owl_view_get_size(v)-1; |
---|
[7d4fbcd] | 769 | if (curmsg<0) curmsg=0; |
---|
| 770 | owl_global_set_curmsg(&g, curmsg); |
---|
[5eeea3b] | 771 | if (oldcurmsg < curmsg) { |
---|
| 772 | owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS); |
---|
| 773 | } else if (curmsg<owl_view_get_size(v)) { |
---|
| 774 | /* If already at the end, blank the screen and move curmsg |
---|
| 775 | * past the end of the messages. */ |
---|
| 776 | owl_global_set_topmsg(&g, curmsg+1); |
---|
| 777 | owl_global_set_curmsg(&g, curmsg+1); |
---|
| 778 | } |
---|
[6b580b0] | 779 | /* owl_mainwin_redisplay(owl_global_get_mainwin(&g)); */ |
---|
[7d4fbcd] | 780 | owl_global_set_direction_downwards(&g); |
---|
| 781 | } |
---|
| 782 | |
---|
[c79a047] | 783 | void owl_function_lastmsg(void) |
---|
[d54838d] | 784 | { |
---|
[7d4fbcd] | 785 | owl_function_lastmsg_noredisplay(); |
---|
| 786 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 787 | } |
---|
| 788 | |
---|
[c79a047] | 789 | void owl_function_shift_right(void) |
---|
[d54838d] | 790 | { |
---|
[7d4fbcd] | 791 | owl_global_set_rightshift(&g, owl_global_get_rightshift(&g)+10); |
---|
| 792 | } |
---|
| 793 | |
---|
[c79a047] | 794 | void owl_function_shift_left(void) |
---|
[d54838d] | 795 | { |
---|
[7d4fbcd] | 796 | int shift; |
---|
| 797 | |
---|
| 798 | shift=owl_global_get_rightshift(&g); |
---|
[8c97fa1] | 799 | if (shift > 0) { |
---|
| 800 | owl_global_set_rightshift(&g, MAX(shift - 10, 0)); |
---|
[7d4fbcd] | 801 | } else { |
---|
| 802 | owl_function_beep(); |
---|
[f51bc78] | 803 | owl_function_makemsg("Already full left"); |
---|
[7d4fbcd] | 804 | } |
---|
| 805 | } |
---|
| 806 | |
---|
[c79a047] | 807 | void owl_function_unsuball(void) |
---|
[d54838d] | 808 | { |
---|
[7d4fbcd] | 809 | unsuball(); |
---|
| 810 | owl_function_makemsg("Unsubscribed from all messages."); |
---|
| 811 | } |
---|
| 812 | |
---|
[95474d7] | 813 | |
---|
| 814 | /* Load zephyr subscriptions from the named 'file' and load zephyr's |
---|
| 815 | * default subscriptions as well. An error message is printed if |
---|
| 816 | * 'file' can't be opened or if zephyr reports an error in |
---|
| 817 | * subscribing. |
---|
| 818 | * |
---|
| 819 | * If 'file' is NULL, this look for the default filename |
---|
| 820 | * $HOME/.zephyr.subs. If the file can not be opened in this case |
---|
| 821 | * only, no error message is printed. |
---|
| 822 | */ |
---|
[e19eb97] | 823 | void owl_function_loadsubs(const char *file) |
---|
[d54838d] | 824 | { |
---|
[4357be8] | 825 | int ret, ret2; |
---|
[e19eb97] | 826 | const char *foo; |
---|
[65b2173] | 827 | char *path; |
---|
[ecd5dc5] | 828 | |
---|
[95474d7] | 829 | if (file==NULL) { |
---|
| 830 | ret=owl_zephyr_loadsubs(NULL, 0); |
---|
| 831 | } else { |
---|
[27d8d83] | 832 | path = owl_util_makepath(file); |
---|
| 833 | ret=owl_zephyr_loadsubs(path, 1); |
---|
[27f6487] | 834 | owl_free(path); |
---|
[95474d7] | 835 | } |
---|
[ecd5dc5] | 836 | |
---|
[4357be8] | 837 | /* for backwards compatibility for now */ |
---|
| 838 | ret2=owl_zephyr_loaddefaultsubs(); |
---|
| 839 | |
---|
[ecd5dc5] | 840 | if (!owl_context_is_interactive(owl_global_get_context(&g))) return; |
---|
[95474d7] | 841 | |
---|
| 842 | foo=file?file:"file"; |
---|
| 843 | if (ret==0 && ret2==0) { |
---|
| 844 | if (!file) { |
---|
| 845 | owl_function_makemsg("Subscribed to messages."); |
---|
| 846 | } else { |
---|
| 847 | owl_function_makemsg("Subscribed to messages from %s", file); |
---|
| 848 | } |
---|
[7d4fbcd] | 849 | } else if (ret==-1) { |
---|
[95474d7] | 850 | owl_function_error("Could not read %s", foo); |
---|
[7d4fbcd] | 851 | } else { |
---|
[95474d7] | 852 | owl_function_error("Error subscribing to messages"); |
---|
[7d4fbcd] | 853 | } |
---|
| 854 | } |
---|
| 855 | |
---|
[e19eb97] | 856 | void owl_function_loadloginsubs(const char *file) |
---|
[d54838d] | 857 | { |
---|
[7933748] | 858 | int ret; |
---|
[ecd5dc5] | 859 | |
---|
[7933748] | 860 | ret=owl_zephyr_loadloginsubs(file); |
---|
[ecd5dc5] | 861 | |
---|
| 862 | if (!owl_context_is_interactive(owl_global_get_context(&g))) return; |
---|
[7933748] | 863 | if (ret==0) { |
---|
| 864 | } else if (ret==-1) { |
---|
[ec6ff52] | 865 | owl_function_error("Could not open file for login subscriptions."); |
---|
[7933748] | 866 | } else { |
---|
[ec6ff52] | 867 | owl_function_error("Error subscribing to login messages from file."); |
---|
[7933748] | 868 | } |
---|
| 869 | } |
---|
| 870 | |
---|
[1b6b2f3] | 871 | void owl_callback_aimlogin(owl_editwin *e) { |
---|
[8dfb59c] | 872 | char *user = owl_editwin_get_cbdata(e); |
---|
| 873 | owl_function_aimlogin(user, |
---|
[db8b00b] | 874 | owl_editwin_get_text(e)); |
---|
[1b6b2f3] | 875 | } |
---|
| 876 | |
---|
[e19eb97] | 877 | void owl_function_aimlogin(const char *user, const char *passwd) { |
---|
[4211f50b] | 878 | int ret; |
---|
| 879 | |
---|
| 880 | /* clear the buddylist */ |
---|
| 881 | owl_buddylist_clear(owl_global_get_buddylist(&g)); |
---|
| 882 | |
---|
| 883 | /* try to login */ |
---|
| 884 | ret=owl_aim_login(user, passwd); |
---|
| 885 | if (ret) owl_function_makemsg("Warning: login for %s failed.\n", user); |
---|
| 886 | } |
---|
| 887 | |
---|
[c79a047] | 888 | void owl_function_suspend(void) |
---|
[d54838d] | 889 | { |
---|
[7d4fbcd] | 890 | endwin(); |
---|
| 891 | printf("\n"); |
---|
| 892 | kill(getpid(), SIGSTOP); |
---|
| 893 | |
---|
| 894 | /* resize to reinitialize all the windows when we come back */ |
---|
| 895 | owl_command_resize(); |
---|
| 896 | } |
---|
| 897 | |
---|
[c79a047] | 898 | void owl_function_zaway_toggle(void) |
---|
[d54838d] | 899 | { |
---|
[7d4fbcd] | 900 | if (!owl_global_is_zaway(&g)) { |
---|
| 901 | owl_global_set_zaway_msg(&g, owl_global_get_zaway_msg_default(&g)); |
---|
| 902 | owl_function_zaway_on(); |
---|
| 903 | } else { |
---|
| 904 | owl_function_zaway_off(); |
---|
| 905 | } |
---|
| 906 | } |
---|
| 907 | |
---|
[c79a047] | 908 | void owl_function_zaway_on(void) |
---|
[d54838d] | 909 | { |
---|
[7d4fbcd] | 910 | owl_global_set_zaway_on(&g); |
---|
[4b660cc] | 911 | owl_function_makemsg("zaway set (%s)", owl_global_get_zaway_msg(&g)); |
---|
[7d4fbcd] | 912 | } |
---|
| 913 | |
---|
[c79a047] | 914 | void owl_function_zaway_off(void) |
---|
[d54838d] | 915 | { |
---|
[7d4fbcd] | 916 | owl_global_set_zaway_off(&g); |
---|
[4b660cc] | 917 | owl_function_makemsg("zaway off"); |
---|
| 918 | } |
---|
| 919 | |
---|
[c79a047] | 920 | void owl_function_aaway_toggle(void) |
---|
[4b660cc] | 921 | { |
---|
| 922 | if (!owl_global_is_aaway(&g)) { |
---|
| 923 | owl_global_set_aaway_msg(&g, owl_global_get_aaway_msg_default(&g)); |
---|
| 924 | owl_function_aaway_on(); |
---|
| 925 | } else { |
---|
| 926 | owl_function_aaway_off(); |
---|
| 927 | } |
---|
| 928 | } |
---|
| 929 | |
---|
[c79a047] | 930 | void owl_function_aaway_on(void) |
---|
[4b660cc] | 931 | { |
---|
| 932 | owl_global_set_aaway_on(&g); |
---|
| 933 | /* owl_aim_set_awaymsg(owl_global_get_zaway_msg(&g)); */ |
---|
| 934 | owl_function_makemsg("AIM away set (%s)", owl_global_get_aaway_msg(&g)); |
---|
| 935 | } |
---|
| 936 | |
---|
[c79a047] | 937 | void owl_function_aaway_off(void) |
---|
[4b660cc] | 938 | { |
---|
| 939 | owl_global_set_aaway_off(&g); |
---|
| 940 | /* owl_aim_set_awaymsg(""); */ |
---|
| 941 | owl_function_makemsg("AIM away off"); |
---|
[7d4fbcd] | 942 | } |
---|
| 943 | |
---|
[c79a047] | 944 | void owl_function_quit(void) |
---|
[d54838d] | 945 | { |
---|
[7d4fbcd] | 946 | char *ret; |
---|
| 947 | |
---|
| 948 | /* zlog out if we need to */ |
---|
[7433402] | 949 | if (owl_global_is_havezephyr(&g) && |
---|
| 950 | owl_global_is_shutdownlogout(&g)) { |
---|
[31e48a3] | 951 | owl_zephyr_zlog_out(); |
---|
[7d4fbcd] | 952 | } |
---|
| 953 | |
---|
| 954 | /* execute the commands in shutdown */ |
---|
[0337203] | 955 | ret = owl_perlconfig_execute("BarnOwl::Hooks::_shutdown();"); |
---|
[7d4fbcd] | 956 | if (ret) owl_free(ret); |
---|
| 957 | |
---|
[d09e5a1] | 958 | /* signal our child process, if any */ |
---|
| 959 | if (owl_global_get_newmsgproc_pid(&g)) { |
---|
| 960 | kill(owl_global_get_newmsgproc_pid(&g), SIGHUP); |
---|
| 961 | } |
---|
[8c46404] | 962 | |
---|
| 963 | /* Quit AIM */ |
---|
| 964 | if (owl_global_is_aimloggedin(&g)) { |
---|
| 965 | owl_aim_logout(); |
---|
| 966 | } |
---|
| 967 | |
---|
[7d4fbcd] | 968 | owl_function_debugmsg("Quitting Owl"); |
---|
[3ecd78b] | 969 | owl_select_quit_loop(); |
---|
[7d4fbcd] | 970 | } |
---|
| 971 | |
---|
[d54838d] | 972 | void owl_function_calculate_topmsg(int direction) |
---|
| 973 | { |
---|
[aa2f33b3] | 974 | int recwinlines, topmsg, curmsg; |
---|
[9e5c9f3] | 975 | const owl_view *v; |
---|
[7d4fbcd] | 976 | |
---|
| 977 | v=owl_global_get_current_view(&g); |
---|
[aa2f33b3] | 978 | curmsg=owl_global_get_curmsg(&g); |
---|
| 979 | topmsg=owl_global_get_topmsg(&g); |
---|
[7d4fbcd] | 980 | recwinlines=owl_global_get_recwin_lines(&g); |
---|
| 981 | |
---|
[f9c43ae] | 982 | /* |
---|
[7d4fbcd] | 983 | if (owl_view_get_size(v) < 1) { |
---|
| 984 | return; |
---|
| 985 | } |
---|
[f9c43ae] | 986 | */ |
---|
[aa2f33b3] | 987 | |
---|
| 988 | switch (owl_global_get_scrollmode(&g)) { |
---|
| 989 | case OWL_SCROLLMODE_TOP: |
---|
[f9c43ae] | 990 | topmsg = owl_function_calculate_topmsg_top(direction, v, curmsg, topmsg, recwinlines); |
---|
[aa2f33b3] | 991 | break; |
---|
| 992 | case OWL_SCROLLMODE_NEARTOP: |
---|
[f9c43ae] | 993 | topmsg = owl_function_calculate_topmsg_neartop(direction, v, curmsg, topmsg, recwinlines); |
---|
[aa2f33b3] | 994 | break; |
---|
| 995 | case OWL_SCROLLMODE_CENTER: |
---|
[f9c43ae] | 996 | topmsg = owl_function_calculate_topmsg_center(direction, v, curmsg, topmsg, recwinlines); |
---|
[aa2f33b3] | 997 | break; |
---|
| 998 | case OWL_SCROLLMODE_PAGED: |
---|
[f9c43ae] | 999 | topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 0); |
---|
[aa2f33b3] | 1000 | break; |
---|
| 1001 | case OWL_SCROLLMODE_PAGEDCENTER: |
---|
[f9c43ae] | 1002 | topmsg = owl_function_calculate_topmsg_paged(direction, v, curmsg, topmsg, recwinlines, 1); |
---|
[aa2f33b3] | 1003 | break; |
---|
| 1004 | case OWL_SCROLLMODE_NORMAL: |
---|
| 1005 | default: |
---|
[f9c43ae] | 1006 | topmsg = owl_function_calculate_topmsg_normal(direction, v, curmsg, topmsg, recwinlines); |
---|
[aa2f33b3] | 1007 | } |
---|
[3a2daac] | 1008 | owl_function_debugmsg("Calculated a topmsg of %i", topmsg); |
---|
[aa2f33b3] | 1009 | owl_global_set_topmsg(&g, topmsg); |
---|
| 1010 | } |
---|
| 1011 | |
---|
| 1012 | /* Returns what the new topmsg should be. |
---|
| 1013 | * Passed the last direction of movement, |
---|
| 1014 | * the current view, |
---|
| 1015 | * the current message number in the view, |
---|
| 1016 | * the top message currently being displayed, |
---|
| 1017 | * and the number of lines in the recwin. |
---|
| 1018 | */ |
---|
[9e5c9f3] | 1019 | int owl_function_calculate_topmsg_top(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines) |
---|
[d54838d] | 1020 | { |
---|
[f9c43ae] | 1021 | return(curmsg); |
---|
[aa2f33b3] | 1022 | } |
---|
| 1023 | |
---|
[9e5c9f3] | 1024 | int owl_function_calculate_topmsg_neartop(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines) |
---|
[d54838d] | 1025 | { |
---|
[aa2f33b3] | 1026 | if (curmsg>0 |
---|
| 1027 | && (owl_message_get_numlines(owl_view_get_element(v, curmsg-1)) |
---|
| 1028 | < recwinlines/2)) { |
---|
[f9c43ae] | 1029 | return(curmsg-1); |
---|
[aa2f33b3] | 1030 | } else { |
---|
[f9c43ae] | 1031 | return(curmsg); |
---|
[aa2f33b3] | 1032 | } |
---|
| 1033 | } |
---|
| 1034 | |
---|
[9e5c9f3] | 1035 | int owl_function_calculate_topmsg_center(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines) |
---|
[d54838d] | 1036 | { |
---|
[aa2f33b3] | 1037 | int i, last, lines; |
---|
| 1038 | |
---|
| 1039 | last = curmsg; |
---|
| 1040 | lines = 0; |
---|
| 1041 | for (i=curmsg-1; i>=0; i--) { |
---|
| 1042 | lines += owl_message_get_numlines(owl_view_get_element(v, i)); |
---|
| 1043 | if (lines > recwinlines/2) break; |
---|
| 1044 | last = i; |
---|
| 1045 | } |
---|
[f9c43ae] | 1046 | return(last); |
---|
[aa2f33b3] | 1047 | } |
---|
| 1048 | |
---|
[9e5c9f3] | 1049 | int owl_function_calculate_topmsg_paged(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines, int center_on_page) |
---|
[d54838d] | 1050 | { |
---|
[aa2f33b3] | 1051 | int i, last, lines, savey; |
---|
| 1052 | |
---|
| 1053 | /* If we're off the top of the screen, scroll up such that the |
---|
| 1054 | * curmsg is near the botton of the screen. */ |
---|
| 1055 | if (curmsg < topmsg) { |
---|
| 1056 | last = curmsg; |
---|
| 1057 | lines = 0; |
---|
| 1058 | for (i=curmsg; i>=0; i--) { |
---|
| 1059 | lines += owl_message_get_numlines(owl_view_get_element(v, i)); |
---|
| 1060 | if (lines > recwinlines) break; |
---|
| 1061 | last = i; |
---|
| 1062 | } |
---|
| 1063 | if (center_on_page) { |
---|
[f9c43ae] | 1064 | return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines)); |
---|
[aa2f33b3] | 1065 | } else { |
---|
[f9c43ae] | 1066 | return(last); |
---|
[aa2f33b3] | 1067 | } |
---|
| 1068 | } |
---|
| 1069 | |
---|
| 1070 | /* Find number of lines from top to bottom of curmsg (store in savey) */ |
---|
| 1071 | savey=0; |
---|
| 1072 | for (i=topmsg; i<=curmsg; i++) { |
---|
| 1073 | savey+=owl_message_get_numlines(owl_view_get_element(v, i)); |
---|
| 1074 | } |
---|
| 1075 | |
---|
| 1076 | /* if we're off the bottom of the screen, scroll down */ |
---|
| 1077 | if (savey > recwinlines) { |
---|
| 1078 | if (center_on_page) { |
---|
[f9c43ae] | 1079 | return(owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines)); |
---|
[aa2f33b3] | 1080 | } else { |
---|
[f9c43ae] | 1081 | return(curmsg); |
---|
[aa2f33b3] | 1082 | } |
---|
| 1083 | } |
---|
| 1084 | |
---|
| 1085 | /* else just stay as we are... */ |
---|
[f9c43ae] | 1086 | return(topmsg); |
---|
[aa2f33b3] | 1087 | } |
---|
| 1088 | |
---|
[9e5c9f3] | 1089 | int owl_function_calculate_topmsg_normal(int direction, const owl_view *v, int curmsg, int topmsg, int recwinlines) |
---|
[d54838d] | 1090 | { |
---|
[801b7ac] | 1091 | int savey, i, foo, y; |
---|
[f9c43ae] | 1092 | |
---|
[88736cb] | 1093 | if (curmsg<0) return(topmsg); |
---|
| 1094 | |
---|
[f9c43ae] | 1095 | /* If we're off the top of the screen then center */ |
---|
| 1096 | if (curmsg<topmsg) { |
---|
| 1097 | topmsg=owl_function_calculate_topmsg_center(direction, v, curmsg, 0, recwinlines); |
---|
| 1098 | } |
---|
| 1099 | |
---|
[801b7ac] | 1100 | /* If curmsg is so far past topmsg that there are more messages than |
---|
| 1101 | lines, skip the line counting that follows because we're |
---|
| 1102 | certainly off screen. */ |
---|
| 1103 | savey=curmsg-topmsg; |
---|
| 1104 | if (savey <= recwinlines) { |
---|
| 1105 | /* Find number of lines from top to bottom of curmsg (store in savey) */ |
---|
| 1106 | savey = 0; |
---|
| 1107 | for (i=topmsg; i<=curmsg; i++) { |
---|
| 1108 | savey+=owl_message_get_numlines(owl_view_get_element(v, i)); |
---|
| 1109 | } |
---|
[7d4fbcd] | 1110 | } |
---|
| 1111 | |
---|
[f9c43ae] | 1112 | /* If we're off the bottom of the screen, set the topmsg to curmsg |
---|
| 1113 | * and scroll upwards */ |
---|
| 1114 | if (savey > recwinlines) { |
---|
| 1115 | topmsg=curmsg; |
---|
[801b7ac] | 1116 | savey=owl_message_get_numlines(owl_view_get_element(v, curmsg)); |
---|
[f9c43ae] | 1117 | direction=OWL_DIRECTION_UPWARDS; |
---|
[7d4fbcd] | 1118 | } |
---|
[f9c43ae] | 1119 | |
---|
[7d4fbcd] | 1120 | /* If our bottom line is less than 1/4 down the screen then scroll up */ |
---|
| 1121 | if (direction == OWL_DIRECTION_UPWARDS || direction == OWL_DIRECTION_NONE) { |
---|
| 1122 | if (savey < (recwinlines / 4)) { |
---|
| 1123 | y=0; |
---|
[801b7ac] | 1124 | for (i=curmsg; i>=0; i--) { |
---|
| 1125 | foo=owl_message_get_numlines(owl_view_get_element(v, i)); |
---|
[7d4fbcd] | 1126 | /* will we run the curmsg off the screen? */ |
---|
| 1127 | if ((foo+y) >= recwinlines) { |
---|
[801b7ac] | 1128 | i++; |
---|
| 1129 | if (i>curmsg) i=curmsg; |
---|
[7d4fbcd] | 1130 | break; |
---|
| 1131 | } |
---|
| 1132 | /* have saved 1/2 the screen space? */ |
---|
| 1133 | y+=foo; |
---|
| 1134 | if (y > (recwinlines / 2)) break; |
---|
| 1135 | } |
---|
[801b7ac] | 1136 | if (i<0) i=0; |
---|
| 1137 | return(i); |
---|
[7d4fbcd] | 1138 | } |
---|
| 1139 | } |
---|
| 1140 | |
---|
| 1141 | if (direction == OWL_DIRECTION_DOWNWARDS || direction == OWL_DIRECTION_NONE) { |
---|
| 1142 | /* If curmsg bottom line is more than 3/4 down the screen then scroll down */ |
---|
| 1143 | if (savey > ((recwinlines * 3)/4)) { |
---|
| 1144 | y=0; |
---|
| 1145 | /* count lines from the top until we can save 1/2 the screen size */ |
---|
[801b7ac] | 1146 | for (i=topmsg; i<curmsg; i++) { |
---|
| 1147 | y+=owl_message_get_numlines(owl_view_get_element(v, i)); |
---|
[7d4fbcd] | 1148 | if (y > (recwinlines / 2)) break; |
---|
| 1149 | } |
---|
[801b7ac] | 1150 | if (i==curmsg) { |
---|
| 1151 | i--; |
---|
[7d4fbcd] | 1152 | } |
---|
[801b7ac] | 1153 | return(i+1); |
---|
[7d4fbcd] | 1154 | } |
---|
| 1155 | } |
---|
[aa2f33b3] | 1156 | |
---|
[f9c43ae] | 1157 | return(topmsg); |
---|
[7d4fbcd] | 1158 | } |
---|
| 1159 | |
---|
[c79a047] | 1160 | void owl_function_resize(void) |
---|
[d54838d] | 1161 | { |
---|
[7d4fbcd] | 1162 | owl_global_set_resize_pending(&g); |
---|
| 1163 | } |
---|
| 1164 | |
---|
[e19eb97] | 1165 | void owl_function_debugmsg(const char *fmt, ...) |
---|
[d54838d] | 1166 | { |
---|
[7d4fbcd] | 1167 | FILE *file; |
---|
| 1168 | time_t now; |
---|
| 1169 | va_list ap; |
---|
| 1170 | va_start(ap, fmt); |
---|
| 1171 | |
---|
[52761cc] | 1172 | if (!owl_global_is_debug_fast(&g)) |
---|
| 1173 | return; |
---|
[7d4fbcd] | 1174 | |
---|
[d12a8c7] | 1175 | file = owl_global_get_debug_file_handle(&g); |
---|
[52761cc] | 1176 | if (!file) /* XXX should report this */ |
---|
| 1177 | return; |
---|
[7d4fbcd] | 1178 | |
---|
[52761cc] | 1179 | now = time(NULL); |
---|
[7d4fbcd] | 1180 | |
---|
[52761cc] | 1181 | fprintf(file, "[%d - %.24s - %lds]: ", |
---|
| 1182 | (int) getpid(), ctime(&now), now - owl_global_get_starttime(&g)); |
---|
[7d4fbcd] | 1183 | vfprintf(file, fmt, ap); |
---|
[52761cc] | 1184 | putc('\n', file); |
---|
[d12a8c7] | 1185 | fflush(file); |
---|
[7d4fbcd] | 1186 | |
---|
| 1187 | va_end(ap); |
---|
| 1188 | } |
---|
| 1189 | |
---|
[c79a047] | 1190 | void owl_function_beep(void) |
---|
[d54838d] | 1191 | { |
---|
[7d4fbcd] | 1192 | if (owl_global_is_bell(&g)) { |
---|
| 1193 | beep(); |
---|
| 1194 | } |
---|
| 1195 | } |
---|
| 1196 | |
---|
[e19eb97] | 1197 | int owl_function_subscribe(const char *class, const char *inst, const char *recip) |
---|
[d54838d] | 1198 | { |
---|
[7d4fbcd] | 1199 | int ret; |
---|
| 1200 | |
---|
| 1201 | ret=owl_zephyr_sub(class, inst, recip); |
---|
| 1202 | if (ret) { |
---|
[ec6ff52] | 1203 | owl_function_error("Error subscribing."); |
---|
[7d4fbcd] | 1204 | } else { |
---|
| 1205 | owl_function_makemsg("Subscribed."); |
---|
| 1206 | } |
---|
[3617286] | 1207 | return(ret); |
---|
[7d4fbcd] | 1208 | } |
---|
| 1209 | |
---|
[e19eb97] | 1210 | void owl_function_unsubscribe(const char *class, const char *inst, const char *recip) |
---|
[d54838d] | 1211 | { |
---|
[7d4fbcd] | 1212 | int ret; |
---|
| 1213 | |
---|
| 1214 | ret=owl_zephyr_unsub(class, inst, recip); |
---|
| 1215 | if (ret) { |
---|
[ec6ff52] | 1216 | owl_function_error("Error subscribing."); |
---|
[7d4fbcd] | 1217 | } else { |
---|
| 1218 | owl_function_makemsg("Unsubscribed."); |
---|
| 1219 | } |
---|
| 1220 | } |
---|
| 1221 | |
---|
[e8128c5] | 1222 | static void _dirty_everything(owl_window *w) { |
---|
| 1223 | if (!owl_window_is_realized(w)) |
---|
| 1224 | return; |
---|
| 1225 | owl_window_dirty(w); |
---|
| 1226 | owl_window_children_foreach(w, (GFunc)_dirty_everything, NULL); |
---|
[7d4fbcd] | 1227 | } |
---|
| 1228 | |
---|
[c79a047] | 1229 | void owl_function_full_redisplay(void) |
---|
[d54838d] | 1230 | { |
---|
[e8128c5] | 1231 | _dirty_everything(owl_window_get_screen()); |
---|
[7d4fbcd] | 1232 | } |
---|
| 1233 | |
---|
[e19eb97] | 1234 | void owl_function_popless_text(const char *text) |
---|
[d54838d] | 1235 | { |
---|
[7d4fbcd] | 1236 | owl_popwin *pw; |
---|
| 1237 | owl_viewwin *v; |
---|
| 1238 | |
---|
| 1239 | v=owl_global_get_viewwin(&g); |
---|
| 1240 | |
---|
[03ca005] | 1241 | if (owl_global_get_popwin(&g)) { |
---|
[4cf7b1b] | 1242 | owl_function_error("Popwin already in use."); |
---|
| 1243 | return; |
---|
| 1244 | } |
---|
[03ca005] | 1245 | pw = owl_popwin_new(); |
---|
| 1246 | owl_global_set_popwin(&g, pw); |
---|
| 1247 | owl_popwin_up(pw); |
---|
[07b59ea] | 1248 | owl_global_push_context(&g, OWL_CTX_POPLESS, v, "popless", NULL); |
---|
[68f63a2] | 1249 | owl_viewwin_init_text(v, owl_popwin_get_content(pw), text); |
---|
[7d4fbcd] | 1250 | } |
---|
| 1251 | |
---|
[075ba92] | 1252 | void owl_function_popless_fmtext(const owl_fmtext *fm) |
---|
[d54838d] | 1253 | { |
---|
[7d4fbcd] | 1254 | owl_popwin *pw; |
---|
| 1255 | owl_viewwin *v; |
---|
| 1256 | |
---|
| 1257 | v=owl_global_get_viewwin(&g); |
---|
| 1258 | |
---|
[03ca005] | 1259 | if (owl_global_get_popwin(&g)) { |
---|
[4cf7b1b] | 1260 | owl_function_error("Popwin already in use."); |
---|
| 1261 | return; |
---|
| 1262 | } |
---|
[03ca005] | 1263 | pw = owl_popwin_new(); |
---|
| 1264 | owl_global_set_popwin(&g, pw); |
---|
| 1265 | owl_popwin_up(pw); |
---|
[07b59ea] | 1266 | owl_global_push_context(&g, OWL_CTX_POPLESS, v, "popless", NULL); |
---|
[68f63a2] | 1267 | owl_viewwin_init_fmtext(v, owl_popwin_get_content(pw), fm); |
---|
[f17bff98] | 1268 | } |
---|
| 1269 | |
---|
[e19eb97] | 1270 | void owl_function_popless_file(const char *filename) |
---|
[f17bff98] | 1271 | { |
---|
| 1272 | owl_fmtext fm; |
---|
| 1273 | FILE *file; |
---|
[b7ee89b] | 1274 | char *s = NULL; |
---|
[f17bff98] | 1275 | |
---|
| 1276 | file=fopen(filename, "r"); |
---|
| 1277 | if (!file) { |
---|
| 1278 | owl_function_error("Could not open file: %s", filename); |
---|
| 1279 | return; |
---|
| 1280 | } |
---|
| 1281 | |
---|
| 1282 | owl_fmtext_init_null(&fm); |
---|
[b7ee89b] | 1283 | while (owl_getline(&s, file)) |
---|
| 1284 | owl_fmtext_append_normal(&fm, s); |
---|
| 1285 | owl_free(s); |
---|
[f17bff98] | 1286 | |
---|
| 1287 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1288 | owl_fmtext_cleanup(&fm); |
---|
[f17bff98] | 1289 | fclose(file); |
---|
[7d4fbcd] | 1290 | } |
---|
| 1291 | |
---|
[c79a047] | 1292 | void owl_function_about(void) |
---|
[d54838d] | 1293 | { |
---|
[2101a50] | 1294 | owl_function_popless_text( |
---|
| 1295 | "This is barnowl version " OWL_VERSION_STRING ".\n\n" |
---|
| 1296 | "barnowl is a fork of the Owl zephyr client, written and\n" |
---|
| 1297 | "maintained by Alejandro Sedeno and Nelson Elhage at the\n" |
---|
| 1298 | "Massachusetts Institute of Technology. \n" |
---|
| 1299 | "\n" |
---|
| 1300 | "Owl was written by James Kretchmar. The first version, 0.5, was\n" |
---|
| 1301 | "released in March 2002.\n" |
---|
| 1302 | "\n" |
---|
| 1303 | "The name 'owl' was chosen in reference to the owls in the\n" |
---|
| 1304 | "Harry Potter novels, who are tasked with carrying messages\n" |
---|
| 1305 | "between Witches and Wizards. The name 'barnowl' was chosen\n" |
---|
| 1306 | "because we feel our owls should live closer to our ponies.\n" |
---|
| 1307 | "\n" |
---|
[1cfcab7] | 1308 | "Copyright (c) 2006-2010 The BarnOwl Developers. All rights reserved.\n" |
---|
[2101a50] | 1309 | "Copyright (c) 2004 James Kretchmar. All rights reserved.\n" |
---|
| 1310 | "Copyright 2002 Massachusetts Institute of Technology\n" |
---|
| 1311 | "\n" |
---|
| 1312 | "This program is free software. You can redistribute it and/or\n" |
---|
| 1313 | "modify under the terms of the Sleepycat License. Use the \n" |
---|
| 1314 | "':show license' command to display the full license\n" |
---|
| 1315 | ); |
---|
[7d4fbcd] | 1316 | } |
---|
| 1317 | |
---|
[c79a047] | 1318 | void owl_function_info(void) |
---|
[d54838d] | 1319 | { |
---|
[c08c70a] | 1320 | const owl_message *m; |
---|
[5789230] | 1321 | owl_fmtext fm, attrfm; |
---|
[9e5c9f3] | 1322 | const owl_view *v; |
---|
[09489b89] | 1323 | #ifdef HAVE_LIBZEPHYR |
---|
[1077891a] | 1324 | const ZNotice_t *n; |
---|
[09489b89] | 1325 | #endif |
---|
[7d4fbcd] | 1326 | |
---|
[d0d65df] | 1327 | owl_fmtext_init_null(&fm); |
---|
| 1328 | |
---|
[7d4fbcd] | 1329 | v=owl_global_get_current_view(&g); |
---|
[5eeea3b] | 1330 | m=owl_view_get_element(v, owl_global_get_curmsg(&g)); |
---|
| 1331 | if (!m || owl_view_get_size(v)==0) { |
---|
[ec6ff52] | 1332 | owl_function_error("No message selected\n"); |
---|
[7d4fbcd] | 1333 | return; |
---|
| 1334 | } |
---|
| 1335 | |
---|
[5789230] | 1336 | owl_fmtext_append_bold(&fm, "General Information:\n"); |
---|
[57609b3] | 1337 | owl_fmtext_appendf_normal(&fm, " Msg Id : %i\n", owl_message_get_id(m)); |
---|
[df0d93a] | 1338 | |
---|
[5789230] | 1339 | owl_fmtext_append_normal(&fm, " Type : "); |
---|
[37eab7f] | 1340 | owl_fmtext_append_bold(&fm, owl_message_get_type(m)); |
---|
[df0d93a] | 1341 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 1342 | |
---|
[4b464a4] | 1343 | if (owl_message_is_direction_in(m)) { |
---|
[5789230] | 1344 | owl_fmtext_append_normal(&fm, " Direction : in\n"); |
---|
[4b464a4] | 1345 | } else if (owl_message_is_direction_out(m)) { |
---|
[5789230] | 1346 | owl_fmtext_append_normal(&fm, " Direction : out\n"); |
---|
[4b464a4] | 1347 | } else if (owl_message_is_direction_none(m)) { |
---|
[5789230] | 1348 | owl_fmtext_append_normal(&fm, " Direction : none\n"); |
---|
[4b464a4] | 1349 | } else { |
---|
[5789230] | 1350 | owl_fmtext_append_normal(&fm, " Direction : unknown\n"); |
---|
[4b464a4] | 1351 | } |
---|
[df0d93a] | 1352 | |
---|
[57609b3] | 1353 | owl_fmtext_appendf_normal(&fm, " Time : %s\n", owl_message_get_timestr(m)); |
---|
[4b464a4] | 1354 | |
---|
[df0d93a] | 1355 | if (!owl_message_is_type_admin(m)) { |
---|
[57609b3] | 1356 | owl_fmtext_appendf_normal(&fm, " Sender : %s\n", owl_message_get_sender(m)); |
---|
| 1357 | owl_fmtext_appendf_normal(&fm, " Recipient : %s\n", owl_message_get_recipient(m)); |
---|
[df0d93a] | 1358 | } |
---|
[57609b3] | 1359 | |
---|
[0ff8fb57] | 1360 | if (owl_message_is_type_zephyr(m)) { |
---|
[5789230] | 1361 | owl_fmtext_append_bold(&fm, "\nZephyr Specific Information:\n"); |
---|
[0ff8fb57] | 1362 | |
---|
[57609b3] | 1363 | owl_fmtext_appendf_normal(&fm, " Class : %s\n", owl_message_get_class(m)); |
---|
| 1364 | owl_fmtext_appendf_normal(&fm, " Instance : %s\n", owl_message_get_instance(m)); |
---|
| 1365 | owl_fmtext_appendf_normal(&fm, " Opcode : %s\n", owl_message_get_opcode(m)); |
---|
[09489b89] | 1366 | #ifdef HAVE_LIBZEPHYR |
---|
[d0d65df] | 1367 | if (owl_message_is_direction_in(m)) { |
---|
[09489b89] | 1368 | char *ptr, tmpbuff[1024]; |
---|
| 1369 | int i, j, fields, len; |
---|
| 1370 | |
---|
[d0d65df] | 1371 | n=owl_message_get_notice(m); |
---|
[df0d93a] | 1372 | |
---|
[5a95b69] | 1373 | if (!owl_message_is_pseudo(m)) { |
---|
| 1374 | owl_fmtext_append_normal(&fm, " Kind : "); |
---|
| 1375 | if (n->z_kind==UNSAFE) { |
---|
| 1376 | owl_fmtext_append_normal(&fm, "UNSAFE\n"); |
---|
| 1377 | } else if (n->z_kind==UNACKED) { |
---|
| 1378 | owl_fmtext_append_normal(&fm, "UNACKED\n"); |
---|
| 1379 | } else if (n->z_kind==ACKED) { |
---|
| 1380 | owl_fmtext_append_normal(&fm, "ACKED\n"); |
---|
| 1381 | } else if (n->z_kind==HMACK) { |
---|
| 1382 | owl_fmtext_append_normal(&fm, "HMACK\n"); |
---|
| 1383 | } else if (n->z_kind==HMCTL) { |
---|
| 1384 | owl_fmtext_append_normal(&fm, "HMCTL\n"); |
---|
| 1385 | } else if (n->z_kind==SERVACK) { |
---|
| 1386 | owl_fmtext_append_normal(&fm, "SERVACK\n"); |
---|
| 1387 | } else if (n->z_kind==SERVNAK) { |
---|
| 1388 | owl_fmtext_append_normal(&fm, "SERVNACK\n"); |
---|
| 1389 | } else if (n->z_kind==CLIENTACK) { |
---|
| 1390 | owl_fmtext_append_normal(&fm, "CLIENTACK\n"); |
---|
| 1391 | } else if (n->z_kind==STAT) { |
---|
| 1392 | owl_fmtext_append_normal(&fm, "STAT\n"); |
---|
| 1393 | } else { |
---|
| 1394 | owl_fmtext_append_normal(&fm, "ILLEGAL VALUE\n"); |
---|
| 1395 | } |
---|
[d0d65df] | 1396 | } |
---|
[57609b3] | 1397 | owl_fmtext_appendf_normal(&fm, " Host : %s\n", owl_message_get_hostname(m)); |
---|
[5a95b69] | 1398 | |
---|
| 1399 | if (!owl_message_is_pseudo(m)) { |
---|
| 1400 | owl_fmtext_append_normal(&fm, "\n"); |
---|
[57609b3] | 1401 | owl_fmtext_appendf_normal(&fm, " Port : %i\n", ntohs(n->z_port)); |
---|
[f12d199] | 1402 | owl_fmtext_appendf_normal(&fm, " Auth : %s\n", owl_zephyr_get_authstr(n)); |
---|
[57609b3] | 1403 | |
---|
| 1404 | /* FIXME make these more descriptive */ |
---|
[f12d199] | 1405 | owl_fmtext_appendf_normal(&fm, " Checkd Ath: %i\n", n->z_checked_auth); |
---|
[57609b3] | 1406 | owl_fmtext_appendf_normal(&fm, " Multi notc: %s\n", n->z_multinotice); |
---|
| 1407 | owl_fmtext_appendf_normal(&fm, " Num other : %i\n", n->z_num_other_fields); |
---|
| 1408 | owl_fmtext_appendf_normal(&fm, " Msg Len : %i\n", n->z_message_len); |
---|
[5a95b69] | 1409 | |
---|
| 1410 | fields=owl_zephyr_get_num_fields(n); |
---|
[57609b3] | 1411 | owl_fmtext_appendf_normal(&fm, " Fields : %i\n", fields); |
---|
| 1412 | |
---|
[5a95b69] | 1413 | for (i=0; i<fields; i++) { |
---|
[5376a95] | 1414 | ptr=owl_zephyr_get_field_as_utf8(n, i+1); |
---|
[b0430a6] | 1415 | len=strlen(ptr); |
---|
[5a95b69] | 1416 | if (len<30) { |
---|
| 1417 | strncpy(tmpbuff, ptr, len); |
---|
| 1418 | tmpbuff[len]='\0'; |
---|
| 1419 | } else { |
---|
| 1420 | strncpy(tmpbuff, ptr, 30); |
---|
| 1421 | tmpbuff[30]='\0'; |
---|
| 1422 | strcat(tmpbuff, "..."); |
---|
| 1423 | } |
---|
[b0430a6] | 1424 | owl_free(ptr); |
---|
[57609b3] | 1425 | |
---|
[5a95b69] | 1426 | for (j=0; j<strlen(tmpbuff); j++) { |
---|
| 1427 | if (tmpbuff[j]=='\n') tmpbuff[j]='~'; |
---|
| 1428 | if (tmpbuff[j]=='\r') tmpbuff[j]='!'; |
---|
| 1429 | } |
---|
[57609b3] | 1430 | |
---|
| 1431 | owl_fmtext_appendf_normal(&fm, " Field %i : %s\n", i+1, tmpbuff); |
---|
[5a95b69] | 1432 | } |
---|
[57609b3] | 1433 | owl_fmtext_appendf_normal(&fm, " Default Fm: %s\n", n->z_default_format); |
---|
[d0d65df] | 1434 | } |
---|
[57609b3] | 1435 | |
---|
[7d4fbcd] | 1436 | } |
---|
[57609b3] | 1437 | #endif |
---|
[7d4fbcd] | 1438 | } |
---|
[0ff8fb57] | 1439 | |
---|
[5789230] | 1440 | owl_fmtext_append_bold(&fm, "\nOwl Message Attributes:\n"); |
---|
| 1441 | owl_message_attributes_tofmtext(m, &attrfm); |
---|
| 1442 | owl_fmtext_append_fmtext(&fm, &attrfm); |
---|
[d0d65df] | 1443 | |
---|
| 1444 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1445 | owl_fmtext_cleanup(&fm); |
---|
| 1446 | owl_fmtext_cleanup(&attrfm); |
---|
[7d4fbcd] | 1447 | } |
---|
| 1448 | |
---|
[5639bf2] | 1449 | /* print the current message in a popup window. |
---|
| 1450 | * Use the 'default' style regardless of whatever |
---|
| 1451 | * style the user may be using |
---|
| 1452 | */ |
---|
[c79a047] | 1453 | void owl_function_curmsg_to_popwin(void) |
---|
[d54838d] | 1454 | { |
---|
[9e5c9f3] | 1455 | const owl_view *v; |
---|
[c08c70a] | 1456 | const owl_message *m; |
---|
[1fdab04] | 1457 | const owl_style *s; |
---|
[5639bf2] | 1458 | owl_fmtext fm; |
---|
[7d4fbcd] | 1459 | |
---|
[5639bf2] | 1460 | v=owl_global_get_current_view(&g); |
---|
| 1461 | s=owl_global_get_style_by_name(&g, "default"); |
---|
[7d4fbcd] | 1462 | |
---|
[5eeea3b] | 1463 | m=owl_view_get_element(v, owl_global_get_curmsg(&g)); |
---|
| 1464 | |
---|
| 1465 | if (!m || owl_view_get_size(v)==0) { |
---|
[ec6ff52] | 1466 | owl_function_error("No current message"); |
---|
[7d4fbcd] | 1467 | return; |
---|
| 1468 | } |
---|
| 1469 | |
---|
[5639bf2] | 1470 | owl_fmtext_init_null(&fm); |
---|
| 1471 | owl_style_get_formattext(s, &fm, m); |
---|
| 1472 | |
---|
| 1473 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1474 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 1475 | } |
---|
| 1476 | |
---|
[d54838d] | 1477 | void owl_function_page_curmsg(int step) |
---|
| 1478 | { |
---|
[7d4fbcd] | 1479 | /* scroll down or up within the current message IF the message is truncated */ |
---|
| 1480 | |
---|
| 1481 | int offset, curmsg, lines; |
---|
[9e5c9f3] | 1482 | const owl_view *v; |
---|
[7d4fbcd] | 1483 | owl_message *m; |
---|
| 1484 | |
---|
| 1485 | offset=owl_global_get_curmsg_vert_offset(&g); |
---|
| 1486 | v=owl_global_get_current_view(&g); |
---|
| 1487 | curmsg=owl_global_get_curmsg(&g); |
---|
| 1488 | m=owl_view_get_element(v, curmsg); |
---|
[5eeea3b] | 1489 | if (!m || owl_view_get_size(v)==0) return; |
---|
[7d4fbcd] | 1490 | lines=owl_message_get_numlines(m); |
---|
| 1491 | |
---|
| 1492 | if (offset==0) { |
---|
| 1493 | /* Bail if the curmsg isn't the last one displayed */ |
---|
| 1494 | if (curmsg != owl_mainwin_get_last_msg(owl_global_get_mainwin(&g))) { |
---|
[f51bc78] | 1495 | owl_function_makemsg("The entire message is already displayed"); |
---|
[7d4fbcd] | 1496 | return; |
---|
| 1497 | } |
---|
| 1498 | |
---|
| 1499 | /* Bail if we're not truncated */ |
---|
| 1500 | if (!owl_mainwin_is_curmsg_truncated(owl_global_get_mainwin(&g))) { |
---|
[f51bc78] | 1501 | owl_function_makemsg("The entire message is already displayed"); |
---|
[7d4fbcd] | 1502 | return; |
---|
| 1503 | } |
---|
| 1504 | } |
---|
| 1505 | |
---|
| 1506 | |
---|
| 1507 | /* don't scroll past the last line */ |
---|
| 1508 | if (step>0) { |
---|
| 1509 | if (offset+step > lines-1) { |
---|
| 1510 | owl_global_set_curmsg_vert_offset(&g, lines-1); |
---|
| 1511 | } else { |
---|
| 1512 | owl_global_set_curmsg_vert_offset(&g, offset+step); |
---|
| 1513 | } |
---|
| 1514 | } |
---|
| 1515 | |
---|
| 1516 | /* would we be before the beginning of the message? */ |
---|
| 1517 | if (step<0) { |
---|
| 1518 | if (offset+step<0) { |
---|
| 1519 | owl_global_set_curmsg_vert_offset(&g, 0); |
---|
| 1520 | } else { |
---|
| 1521 | owl_global_set_curmsg_vert_offset(&g, offset+step); |
---|
| 1522 | } |
---|
| 1523 | } |
---|
| 1524 | |
---|
| 1525 | /* redisplay */ |
---|
| 1526 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 1527 | } |
---|
| 1528 | |
---|
[d54838d] | 1529 | void owl_function_resize_typwin(int newsize) |
---|
| 1530 | { |
---|
[7d4fbcd] | 1531 | owl_global_set_typwin_lines(&g, newsize); |
---|
[f6fae8d] | 1532 | owl_mainpanel_layout_contents(&g.mainpanel); |
---|
[7d4fbcd] | 1533 | } |
---|
| 1534 | |
---|
[c79a047] | 1535 | void owl_function_mainwin_pagedown(void) |
---|
[d54838d] | 1536 | { |
---|
[7d4fbcd] | 1537 | int i; |
---|
| 1538 | |
---|
| 1539 | i=owl_mainwin_get_last_msg(owl_global_get_mainwin(&g)); |
---|
| 1540 | if (i<0) return; |
---|
[f2e36b5] | 1541 | if (owl_mainwin_is_last_msg_truncated(owl_global_get_mainwin(&g)) |
---|
| 1542 | && (owl_global_get_curmsg(&g) < i) |
---|
| 1543 | && (i>0)) { |
---|
| 1544 | i--; |
---|
| 1545 | } |
---|
[7d4fbcd] | 1546 | owl_global_set_curmsg(&g, i); |
---|
| 1547 | owl_function_nextmsg(); |
---|
| 1548 | } |
---|
| 1549 | |
---|
[c79a047] | 1550 | void owl_function_mainwin_pageup(void) |
---|
[d54838d] | 1551 | { |
---|
[7d4fbcd] | 1552 | owl_global_set_curmsg(&g, owl_global_get_topmsg(&g)); |
---|
| 1553 | owl_function_prevmsg(); |
---|
| 1554 | } |
---|
| 1555 | |
---|
[c79a047] | 1556 | void owl_function_getsubs(void) |
---|
[d54838d] | 1557 | { |
---|
[09489b89] | 1558 | char *buff; |
---|
[7d4fbcd] | 1559 | |
---|
[09489b89] | 1560 | buff=owl_zephyr_getsubs(); |
---|
[7d4fbcd] | 1561 | |
---|
[09489b89] | 1562 | if (buff) { |
---|
| 1563 | owl_function_popless_text(buff); |
---|
| 1564 | } else { |
---|
| 1565 | owl_function_popless_text("Error getting subscriptions"); |
---|
[7d4fbcd] | 1566 | } |
---|
[09489b89] | 1567 | |
---|
[1c6c4d3] | 1568 | owl_free(buff); |
---|
[7d4fbcd] | 1569 | } |
---|
| 1570 | |
---|
[c79a047] | 1571 | void owl_function_printallvars(void) |
---|
[d54838d] | 1572 | { |
---|
[e19eb97] | 1573 | const char *name; |
---|
[b4c270c] | 1574 | char var[LINE]; |
---|
[7d4fbcd] | 1575 | owl_list varnames; |
---|
[b4c270c] | 1576 | int i, numvarnames; |
---|
| 1577 | GString *str = g_string_new(""); |
---|
[7d4fbcd] | 1578 | |
---|
[b4c270c] | 1579 | g_string_append_printf(str, "%-20s = %s\n", "VARIABLE", "VALUE"); |
---|
| 1580 | g_string_append_printf(str, "%-20s %s\n", "--------", "-----"); |
---|
[7d4fbcd] | 1581 | owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames); |
---|
| 1582 | numvarnames = owl_list_get_size(&varnames); |
---|
| 1583 | for (i=0; i<numvarnames; i++) { |
---|
| 1584 | name = owl_list_get_element(&varnames, i); |
---|
| 1585 | if (name && name[0]!='_') { |
---|
[b4c270c] | 1586 | g_string_append_printf(str, "\n%-20s = ", name); |
---|
| 1587 | owl_variable_get_tostring(owl_global_get_vardict(&g), name, var, LINE); |
---|
| 1588 | g_string_append(str, var); |
---|
[7d4fbcd] | 1589 | } |
---|
| 1590 | } |
---|
[b4c270c] | 1591 | g_string_append(str, "\n"); |
---|
[0e57335] | 1592 | owl_variable_dict_namelist_cleanup(&varnames); |
---|
[b4c270c] | 1593 | |
---|
| 1594 | owl_function_popless_text(str->str); |
---|
| 1595 | g_string_free(str, TRUE); |
---|
[7d4fbcd] | 1596 | } |
---|
| 1597 | |
---|
[c79a047] | 1598 | void owl_function_show_variables(void) |
---|
[d54838d] | 1599 | { |
---|
[7d4fbcd] | 1600 | owl_list varnames; |
---|
| 1601 | owl_fmtext fm; |
---|
| 1602 | int i, numvarnames; |
---|
[e19eb97] | 1603 | const char *varname; |
---|
[7d4fbcd] | 1604 | |
---|
| 1605 | owl_fmtext_init_null(&fm); |
---|
| 1606 | owl_fmtext_append_bold(&fm, |
---|
| 1607 | "Variables: (use 'show variable <name>' for details)\n"); |
---|
| 1608 | owl_variable_dict_get_names(owl_global_get_vardict(&g), &varnames); |
---|
| 1609 | numvarnames = owl_list_get_size(&varnames); |
---|
| 1610 | for (i=0; i<numvarnames; i++) { |
---|
| 1611 | varname = owl_list_get_element(&varnames, i); |
---|
| 1612 | if (varname && varname[0]!='_') { |
---|
[aa2f33b3] | 1613 | owl_variable_describe(owl_global_get_vardict(&g), varname, &fm); |
---|
[7d4fbcd] | 1614 | } |
---|
| 1615 | } |
---|
[0e57335] | 1616 | owl_variable_dict_namelist_cleanup(&varnames); |
---|
[7d4fbcd] | 1617 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1618 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 1619 | } |
---|
| 1620 | |
---|
[e19eb97] | 1621 | void owl_function_show_variable(const char *name) |
---|
[d54838d] | 1622 | { |
---|
[7d4fbcd] | 1623 | owl_fmtext fm; |
---|
| 1624 | |
---|
| 1625 | owl_fmtext_init_null(&fm); |
---|
| 1626 | owl_variable_get_help(owl_global_get_vardict(&g), name, &fm); |
---|
| 1627 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1628 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 1629 | } |
---|
| 1630 | |
---|
| 1631 | /* note: this applies to global message list, not to view. |
---|
| 1632 | * If flag is 1, deletes. If flag is 0, undeletes. */ |
---|
[d54838d] | 1633 | void owl_function_delete_by_id(int id, int flag) |
---|
| 1634 | { |
---|
[3eb599d] | 1635 | const owl_messagelist *ml; |
---|
[7d4fbcd] | 1636 | owl_message *m; |
---|
| 1637 | ml = owl_global_get_msglist(&g); |
---|
| 1638 | m = owl_messagelist_get_by_id(ml, id); |
---|
| 1639 | if (m) { |
---|
| 1640 | if (flag == 1) { |
---|
| 1641 | owl_message_mark_delete(m); |
---|
| 1642 | } else if (flag == 0) { |
---|
| 1643 | owl_message_unmark_delete(m); |
---|
| 1644 | } |
---|
| 1645 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 1646 | } else { |
---|
[ec6ff52] | 1647 | owl_function_error("No message with id %d: unable to mark for (un)delete",id); |
---|
[7d4fbcd] | 1648 | } |
---|
| 1649 | } |
---|
| 1650 | |
---|
[c79a047] | 1651 | void owl_function_delete_automsgs(void) |
---|
[d54838d] | 1652 | { |
---|
[7d4fbcd] | 1653 | /* mark for deletion all messages in the current view that match the |
---|
| 1654 | * 'trash' filter */ |
---|
| 1655 | |
---|
| 1656 | int i, j, count; |
---|
| 1657 | owl_message *m; |
---|
[9e5c9f3] | 1658 | const owl_view *v; |
---|
[4542047] | 1659 | const owl_filter *f; |
---|
[7d4fbcd] | 1660 | |
---|
| 1661 | /* get the trash filter */ |
---|
| 1662 | f=owl_global_get_filter(&g, "trash"); |
---|
| 1663 | if (!f) { |
---|
[ec6ff52] | 1664 | owl_function_error("No trash filter defined"); |
---|
[7d4fbcd] | 1665 | return; |
---|
| 1666 | } |
---|
| 1667 | |
---|
| 1668 | v=owl_global_get_current_view(&g); |
---|
| 1669 | |
---|
| 1670 | count=0; |
---|
| 1671 | j=owl_view_get_size(v); |
---|
| 1672 | for (i=0; i<j; i++) { |
---|
| 1673 | m=owl_view_get_element(v, i); |
---|
| 1674 | if (owl_filter_message_match(f, m)) { |
---|
| 1675 | count++; |
---|
| 1676 | owl_message_mark_delete(m); |
---|
| 1677 | } |
---|
| 1678 | } |
---|
| 1679 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
[1c6c4d3] | 1680 | owl_function_makemsg("%i messages marked for deletion", count); |
---|
[7d4fbcd] | 1681 | } |
---|
| 1682 | |
---|
[c79a047] | 1683 | void owl_function_status(void) |
---|
[d54838d] | 1684 | { |
---|
[49a8434] | 1685 | char buff[MAXPATHLEN+1]; |
---|
[7d4fbcd] | 1686 | time_t start; |
---|
| 1687 | int up, days, hours, minutes; |
---|
[a352335c] | 1688 | owl_fmtext fm; |
---|
| 1689 | |
---|
| 1690 | owl_fmtext_init_null(&fm); |
---|
[7d4fbcd] | 1691 | |
---|
| 1692 | start=owl_global_get_starttime(&g); |
---|
| 1693 | |
---|
[d9b0b972] | 1694 | owl_fmtext_append_normal(&fm, "General Information:\n"); |
---|
| 1695 | |
---|
| 1696 | owl_fmtext_append_normal(&fm, " Version: "); |
---|
[a352335c] | 1697 | owl_fmtext_append_normal(&fm, OWL_VERSION_STRING); |
---|
| 1698 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 1699 | |
---|
[cdd3959] | 1700 | owl_fmtext_append_normal(&fm, " Startup Arguments: "); |
---|
[a352335c] | 1701 | owl_fmtext_append_normal(&fm, owl_global_get_startupargs(&g)); |
---|
| 1702 | owl_fmtext_append_normal(&fm, "\n"); |
---|
[b6a7367] | 1703 | |
---|
| 1704 | owl_fmtext_append_normal(&fm, " Current Directory: "); |
---|
[49a8434] | 1705 | if(getcwd(buff, MAXPATHLEN) == NULL) { |
---|
| 1706 | owl_fmtext_append_normal(&fm, "<Error in getcwd>"); |
---|
| 1707 | } else { |
---|
| 1708 | owl_fmtext_append_normal(&fm, buff); |
---|
| 1709 | } |
---|
[b6a7367] | 1710 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 1711 | |
---|
[c1d166b] | 1712 | owl_fmtext_appendf_normal(&fm, " Startup Time: %s", ctime(&start)); |
---|
[7d4fbcd] | 1713 | |
---|
| 1714 | up=owl_global_get_runtime(&g); |
---|
| 1715 | days=up/86400; |
---|
| 1716 | up-=days*86400; |
---|
| 1717 | hours=up/3600; |
---|
| 1718 | up-=hours*3600; |
---|
| 1719 | minutes=up/60; |
---|
| 1720 | up-=minutes*60; |
---|
[c1d166b] | 1721 | owl_fmtext_appendf_normal(&fm, " Run Time: %i days %2.2i:%2.2i:%2.2i\n", days, hours, minutes, up); |
---|
[7d4fbcd] | 1722 | |
---|
[d9b0b972] | 1723 | owl_fmtext_append_normal(&fm, "\nProtocol Options:\n"); |
---|
| 1724 | owl_fmtext_append_normal(&fm, " Zephyr included : "); |
---|
| 1725 | if (owl_global_is_havezephyr(&g)) { |
---|
| 1726 | owl_fmtext_append_normal(&fm, "yes\n"); |
---|
[7d4fbcd] | 1727 | } else { |
---|
[d9b0b972] | 1728 | owl_fmtext_append_normal(&fm, "no\n"); |
---|
[7d4fbcd] | 1729 | } |
---|
[d9b0b972] | 1730 | owl_fmtext_append_normal(&fm, " AIM included : yes\n"); |
---|
| 1731 | owl_fmtext_append_normal(&fm, " Loopback included : yes\n"); |
---|
| 1732 | |
---|
[8262340] | 1733 | |
---|
[d9b0b972] | 1734 | owl_fmtext_append_normal(&fm, "\nBuild Options:\n"); |
---|
| 1735 | owl_fmtext_append_normal(&fm, " Stderr redirection : "); |
---|
| 1736 | #if OWL_STDERR_REDIR |
---|
| 1737 | owl_fmtext_append_normal(&fm, "yes\n"); |
---|
| 1738 | #else |
---|
| 1739 | owl_fmtext_append_normal(&fm, "no\n"); |
---|
| 1740 | #endif |
---|
| 1741 | |
---|
| 1742 | |
---|
| 1743 | owl_fmtext_append_normal(&fm, "\nAIM Status:\n"); |
---|
| 1744 | owl_fmtext_append_normal(&fm, " Logged in: "); |
---|
[a352335c] | 1745 | if (owl_global_is_aimloggedin(&g)) { |
---|
| 1746 | owl_fmtext_append_normal(&fm, owl_global_get_aim_screenname(&g)); |
---|
| 1747 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 1748 | } else { |
---|
[d9b0b972] | 1749 | owl_fmtext_append_normal(&fm, "(not logged in)\n"); |
---|
[a352335c] | 1750 | } |
---|
[d9b0b972] | 1751 | |
---|
| 1752 | owl_fmtext_append_normal(&fm, " Processing events: "); |
---|
[a352335c] | 1753 | if (owl_global_is_doaimevents(&g)) { |
---|
[d9b0b972] | 1754 | owl_fmtext_append_normal(&fm, "yes\n"); |
---|
[a352335c] | 1755 | } else { |
---|
[d9b0b972] | 1756 | owl_fmtext_append_normal(&fm, "no\n"); |
---|
[a352335c] | 1757 | } |
---|
| 1758 | |
---|
| 1759 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1760 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 1761 | } |
---|
| 1762 | |
---|
[c79a047] | 1763 | void owl_function_show_term(void) |
---|
[d54838d] | 1764 | { |
---|
[7d4fbcd] | 1765 | owl_fmtext fm; |
---|
| 1766 | |
---|
| 1767 | owl_fmtext_init_null(&fm); |
---|
[c1d166b] | 1768 | owl_fmtext_appendf_normal(&fm, "Terminal Lines: %i\nTerminal Columns: %i\n", |
---|
[7d4fbcd] | 1769 | owl_global_get_lines(&g), |
---|
| 1770 | owl_global_get_cols(&g)); |
---|
| 1771 | |
---|
| 1772 | if (owl_global_get_hascolors(&g)) { |
---|
| 1773 | owl_fmtext_append_normal(&fm, "Color: Yes\n"); |
---|
[c1d166b] | 1774 | owl_fmtext_appendf_normal(&fm, "Number of color pairs: %i\n", owl_global_get_colorpairs(&g)); |
---|
| 1775 | owl_fmtext_appendf_normal(&fm, "Can change colors: %s\n", can_change_color() ? "yes" : "no"); |
---|
[7d4fbcd] | 1776 | } else { |
---|
| 1777 | owl_fmtext_append_normal(&fm, "Color: No\n"); |
---|
| 1778 | } |
---|
| 1779 | |
---|
| 1780 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1781 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 1782 | } |
---|
| 1783 | |
---|
[e7cc1c3] | 1784 | /* if type = 0 then normal reply. |
---|
| 1785 | * if type = 1 then it's a reply to sender |
---|
| 1786 | * if enter = 0 then allow the command to be edited |
---|
| 1787 | * if enter = 1 then don't wait for editing |
---|
| 1788 | */ |
---|
[d54838d] | 1789 | void owl_function_reply(int type, int enter) |
---|
| 1790 | { |
---|
[740d5f7] | 1791 | char *buff=NULL; |
---|
[c08c70a] | 1792 | const owl_message *m; |
---|
[4542047] | 1793 | const owl_filter *f; |
---|
[7d4fbcd] | 1794 | |
---|
| 1795 | if (owl_view_get_size(owl_global_get_current_view(&g))==0) { |
---|
[ec6ff52] | 1796 | owl_function_error("No message selected"); |
---|
[7d4fbcd] | 1797 | } else { |
---|
[5ebc202] | 1798 | char *cmd; |
---|
[7d4fbcd] | 1799 | |
---|
| 1800 | m=owl_view_get_element(owl_global_get_current_view(&g), owl_global_get_curmsg(&g)); |
---|
[5eeea3b] | 1801 | if (!m) { |
---|
[ec6ff52] | 1802 | owl_function_error("No message selected"); |
---|
[5eeea3b] | 1803 | return; |
---|
| 1804 | } |
---|
| 1805 | |
---|
[7d4fbcd] | 1806 | /* first check if we catch the reply-lockout filter */ |
---|
| 1807 | f=owl_global_get_filter(&g, "reply-lockout"); |
---|
| 1808 | if (f) { |
---|
| 1809 | if (owl_filter_message_match(f, m)) { |
---|
[ec6ff52] | 1810 | owl_function_error("Sorry, replies to this message have been disabled by the reply-lockout filter"); |
---|
[7d4fbcd] | 1811 | return; |
---|
| 1812 | } |
---|
| 1813 | } |
---|
[4b464a4] | 1814 | |
---|
[2c09826] | 1815 | /* then check if it's a question and just bring up the command prompt */ |
---|
| 1816 | if (owl_message_is_question(m)) { |
---|
| 1817 | owl_function_start_command(""); |
---|
| 1818 | return; |
---|
| 1819 | } |
---|
| 1820 | |
---|
[740d5f7] | 1821 | if((type == 0 && |
---|
| 1822 | (cmd=owl_perlconfig_message_call_method(m, "replycmd", 0, NULL))) || |
---|
| 1823 | (type == 1 && |
---|
| 1824 | (cmd=owl_perlconfig_message_call_method(m, "replysendercmd", 0, NULL)))) { |
---|
| 1825 | buff = cmd; |
---|
[d09e5a1] | 1826 | } |
---|
[1b6b2f3] | 1827 | |
---|
[e0540e4] | 1828 | if(!buff) { |
---|
| 1829 | owl_function_error("I don't know how to reply to that message."); |
---|
| 1830 | return; |
---|
| 1831 | } |
---|
[740d5f7] | 1832 | |
---|
[d09e5a1] | 1833 | if (enter) { |
---|
| 1834 | owl_history *hist = owl_global_get_cmd_history(&g); |
---|
| 1835 | owl_history_store(hist, buff); |
---|
| 1836 | owl_history_reset(hist); |
---|
| 1837 | owl_function_command_norv(buff); |
---|
| 1838 | } else { |
---|
| 1839 | owl_function_start_command(buff); |
---|
[7d4fbcd] | 1840 | } |
---|
[d09e5a1] | 1841 | owl_free(buff); |
---|
[7d4fbcd] | 1842 | } |
---|
| 1843 | } |
---|
| 1844 | |
---|
[e19eb97] | 1845 | void owl_function_zlocate(int argc, const char *const *argv, int auth) |
---|
[d54838d] | 1846 | { |
---|
[2527615] | 1847 | owl_fmtext fm; |
---|
[dca3b27] | 1848 | char *ptr; |
---|
| 1849 | char *result; |
---|
[2527615] | 1850 | int i; |
---|
| 1851 | |
---|
| 1852 | owl_fmtext_init_null(&fm); |
---|
[7d4fbcd] | 1853 | |
---|
[2527615] | 1854 | for (i=0; i<argc; i++) { |
---|
[dca3b27] | 1855 | ptr = long_zuser(argv[i]); |
---|
| 1856 | result = owl_zephyr_zlocate(ptr, auth); |
---|
| 1857 | owl_fmtext_append_normal(&fm, result); |
---|
| 1858 | owl_free(result); |
---|
[2527615] | 1859 | owl_free(ptr); |
---|
[7d4fbcd] | 1860 | } |
---|
| 1861 | |
---|
[2527615] | 1862 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 1863 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 1864 | } |
---|
| 1865 | |
---|
[5934b87] | 1866 | void owl_callback_command(owl_editwin *e) |
---|
| 1867 | { |
---|
| 1868 | char *rv; |
---|
| 1869 | const char *line = owl_editwin_get_text(e); |
---|
| 1870 | |
---|
| 1871 | rv = owl_function_command(line); |
---|
| 1872 | if (rv) { |
---|
| 1873 | owl_function_makemsg("%s", rv); |
---|
| 1874 | owl_free(rv); |
---|
| 1875 | } |
---|
| 1876 | } |
---|
| 1877 | |
---|
[e19eb97] | 1878 | void owl_function_start_command(const char *line) |
---|
[d54838d] | 1879 | { |
---|
[7d4fbcd] | 1880 | owl_editwin *tw; |
---|
| 1881 | |
---|
[58d47ca] | 1882 | tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g)); |
---|
[10b866d] | 1883 | |
---|
[7d4fbcd] | 1884 | owl_editwin_set_locktext(tw, "command: "); |
---|
| 1885 | |
---|
[47519e1b] | 1886 | owl_editwin_insert_string(tw, line); |
---|
[cf83b7a] | 1887 | |
---|
[8bba1ae] | 1888 | owl_global_push_context(&g, OWL_CTX_EDITLINE, tw, "editline", owl_global_get_typwin_window(&g)); |
---|
[5934b87] | 1889 | owl_editwin_set_callback(tw, owl_callback_command); |
---|
[cf83b7a] | 1890 | } |
---|
| 1891 | |
---|
[9186c75] | 1892 | owl_editwin *owl_function_start_question(const char *line) |
---|
[cf83b7a] | 1893 | { |
---|
| 1894 | owl_editwin *tw; |
---|
| 1895 | |
---|
[58d47ca] | 1896 | tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, owl_global_get_cmd_history(&g)); |
---|
[cf83b7a] | 1897 | |
---|
| 1898 | owl_editwin_set_locktext(tw, line); |
---|
| 1899 | |
---|
[8bba1ae] | 1900 | owl_global_push_context(&g, OWL_CTX_EDITRESPONSE, tw, "editresponse", owl_global_get_typwin_window(&g)); |
---|
[9186c75] | 1901 | return tw; |
---|
[7d4fbcd] | 1902 | } |
---|
| 1903 | |
---|
[9186c75] | 1904 | owl_editwin *owl_function_start_password(const char *line) |
---|
[453bd70] | 1905 | { |
---|
| 1906 | owl_editwin *tw; |
---|
| 1907 | |
---|
[58d47ca] | 1908 | tw = owl_global_set_typwin_active(&g, OWL_EDITWIN_STYLE_ONELINE, NULL); |
---|
| 1909 | |
---|
[453bd70] | 1910 | owl_editwin_set_echochar(tw, '*'); |
---|
| 1911 | |
---|
| 1912 | owl_editwin_set_locktext(tw, line); |
---|
| 1913 | |
---|
[8bba1ae] | 1914 | owl_global_push_context(&g, OWL_CTX_EDITRESPONSE, tw, "editresponse", owl_global_get_typwin_window(&g)); |
---|
[9186c75] | 1915 | return tw; |
---|
[453bd70] | 1916 | } |
---|
| 1917 | |
---|
[e19eb97] | 1918 | char *owl_function_exec(int argc, const char *const *argv, const char *buff, int type) |
---|
[d54838d] | 1919 | { |
---|
[7d4fbcd] | 1920 | /* if type == 1 display in a popup |
---|
| 1921 | * if type == 2 display an admin messages |
---|
| 1922 | * if type == 0 return output |
---|
| 1923 | * else display in a popup |
---|
| 1924 | */ |
---|
[e19eb97] | 1925 | const char *redirect = " 2>&1 < /dev/null"; |
---|
[65b2173] | 1926 | char *newbuff; |
---|
[b7ee89b] | 1927 | char *out; |
---|
[7d4fbcd] | 1928 | FILE *p; |
---|
| 1929 | |
---|
[2a2bb60] | 1930 | #if OWL_STDERR_REDIR |
---|
| 1931 | redirect = " < /dev/null"; |
---|
| 1932 | #endif |
---|
| 1933 | |
---|
[7d4fbcd] | 1934 | if (argc<2) { |
---|
[ec6ff52] | 1935 | owl_function_error("Wrong number of arguments to the exec command"); |
---|
[7d4fbcd] | 1936 | return NULL; |
---|
| 1937 | } |
---|
| 1938 | |
---|
| 1939 | buff = skiptokens(buff, 1); |
---|
[36486be] | 1940 | newbuff = owl_sprintf("%s%s", buff, redirect); |
---|
[7d4fbcd] | 1941 | |
---|
[7ba9e0de] | 1942 | if (type == OWL_OUTPUT_POPUP) { |
---|
[afbf668] | 1943 | owl_popexec_new(newbuff); |
---|
[7d4fbcd] | 1944 | } else { |
---|
[b7ee89b] | 1945 | p = popen(newbuff, "r"); |
---|
| 1946 | out = owl_slurp(p); |
---|
[afbf668] | 1947 | pclose(p); |
---|
| 1948 | |
---|
[2cfc6d7] | 1949 | if (type == OWL_OUTPUT_RETURN) { |
---|
[b85c1c4] | 1950 | owl_free(newbuff); |
---|
[afbf668] | 1951 | return out; |
---|
[7ba9e0de] | 1952 | } else if (type == OWL_OUTPUT_ADMINMSG) { |
---|
[afbf668] | 1953 | owl_function_adminmsg(buff, out); |
---|
| 1954 | } |
---|
| 1955 | owl_free(out); |
---|
[7d4fbcd] | 1956 | } |
---|
[b85c1c4] | 1957 | owl_free(newbuff); |
---|
[7d4fbcd] | 1958 | return NULL; |
---|
| 1959 | } |
---|
| 1960 | |
---|
[e19eb97] | 1961 | char *owl_function_perl(int argc, const char *const *argv, const char *buff, int type) |
---|
[d54838d] | 1962 | { |
---|
[7d4fbcd] | 1963 | /* if type == 1 display in a popup |
---|
| 1964 | * if type == 2 display an admin messages |
---|
| 1965 | * if type == 0 return output |
---|
| 1966 | * else display in a popup |
---|
| 1967 | */ |
---|
| 1968 | char *perlout; |
---|
| 1969 | |
---|
| 1970 | if (argc<2) { |
---|
[ec6ff52] | 1971 | owl_function_error("Wrong number of arguments to perl command"); |
---|
[7d4fbcd] | 1972 | return NULL; |
---|
| 1973 | } |
---|
| 1974 | |
---|
| 1975 | /* consume first token (argv[0]) */ |
---|
| 1976 | buff = skiptokens(buff, 1); |
---|
| 1977 | |
---|
[f1e629d] | 1978 | perlout = owl_perlconfig_execute(buff); |
---|
[7d4fbcd] | 1979 | if (perlout) { |
---|
[7ba9e0de] | 1980 | if (type == OWL_OUTPUT_POPUP) { |
---|
[7d4fbcd] | 1981 | owl_function_popless_text(perlout); |
---|
[7ba9e0de] | 1982 | } else if (type == OWL_OUTPUT_ADMINMSG) { |
---|
[7d4fbcd] | 1983 | owl_function_adminmsg(buff, perlout); |
---|
[7ba9e0de] | 1984 | } else if (type == OWL_OUTPUT_RETURN) { |
---|
[7d4fbcd] | 1985 | return perlout; |
---|
| 1986 | } |
---|
| 1987 | owl_free(perlout); |
---|
| 1988 | } |
---|
| 1989 | return NULL; |
---|
| 1990 | } |
---|
| 1991 | |
---|
[5e0b690] | 1992 | /* Change the filter associated with the current view. |
---|
| 1993 | * This also figures out which message in the new filter |
---|
| 1994 | * should have the pointer. |
---|
| 1995 | */ |
---|
[e19eb97] | 1996 | void owl_function_change_currentview_filter(const char *filtname) |
---|
[c3ab155] | 1997 | { |
---|
| 1998 | owl_view *v; |
---|
| 1999 | owl_filter *f; |
---|
| 2000 | int curid=-1, newpos, curmsg; |
---|
[c08c70a] | 2001 | const owl_message *curm=NULL; |
---|
[c3ab155] | 2002 | |
---|
| 2003 | v=owl_global_get_current_view(&g); |
---|
| 2004 | |
---|
| 2005 | curmsg=owl_global_get_curmsg(&g); |
---|
| 2006 | if (curmsg==-1) { |
---|
| 2007 | owl_function_debugmsg("Hit the curmsg==-1 case in change_view"); |
---|
| 2008 | } else { |
---|
| 2009 | curm=owl_view_get_element(v, curmsg); |
---|
| 2010 | if (curm) { |
---|
| 2011 | curid=owl_message_get_id(curm); |
---|
| 2012 | owl_view_save_curmsgid(v, curid); |
---|
| 2013 | } |
---|
| 2014 | } |
---|
| 2015 | |
---|
| 2016 | f=owl_global_get_filter(&g, filtname); |
---|
| 2017 | if (!f) { |
---|
[ec6ff52] | 2018 | owl_function_error("Unknown filter %s", filtname); |
---|
[c3ab155] | 2019 | return; |
---|
| 2020 | } |
---|
| 2021 | |
---|
| 2022 | owl_view_new_filter(v, f); |
---|
| 2023 | |
---|
| 2024 | /* Figure out what to set the current message to. |
---|
| 2025 | * - If the view we're leaving has messages in it, go to the closest message |
---|
| 2026 | * to the last message pointed to in that view. |
---|
| 2027 | * - If the view we're leaving is empty, try to restore the position |
---|
| 2028 | * from the last time we were in the new view. */ |
---|
| 2029 | if (curm) { |
---|
| 2030 | newpos = owl_view_get_nearest_to_msgid(v, curid); |
---|
| 2031 | } else { |
---|
| 2032 | newpos = owl_view_get_nearest_to_saved(v); |
---|
| 2033 | } |
---|
| 2034 | |
---|
| 2035 | owl_global_set_curmsg(&g, newpos); |
---|
| 2036 | owl_function_calculate_topmsg(OWL_DIRECTION_DOWNWARDS); |
---|
| 2037 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 2038 | owl_global_set_direction_downwards(&g); |
---|
| 2039 | } |
---|
[7d4fbcd] | 2040 | |
---|
[5e0b690] | 2041 | /* Create a new filter, or replace an existing one |
---|
| 2042 | * with a new definition. |
---|
| 2043 | */ |
---|
[e19eb97] | 2044 | void owl_function_create_filter(int argc, const char *const *argv) |
---|
[d54838d] | 2045 | { |
---|
[7d4fbcd] | 2046 | owl_filter *f; |
---|
[9e5c9f3] | 2047 | const owl_view *v; |
---|
[23fddad] | 2048 | int inuse = 0; |
---|
[7d4fbcd] | 2049 | |
---|
| 2050 | if (argc < 2) { |
---|
[ec6ff52] | 2051 | owl_function_error("Wrong number of arguments to filter command"); |
---|
[7d4fbcd] | 2052 | return; |
---|
| 2053 | } |
---|
| 2054 | |
---|
[3895e23] | 2055 | owl_function_debugmsg("owl_function_create_filter: starting to create filter named %s", argv[1]); |
---|
| 2056 | |
---|
[7d4fbcd] | 2057 | v=owl_global_get_current_view(&g); |
---|
| 2058 | |
---|
| 2059 | /* don't touch the all filter */ |
---|
| 2060 | if (!strcmp(argv[1], "all")) { |
---|
[ec6ff52] | 2061 | owl_function_error("You may not change the 'all' filter."); |
---|
[7d4fbcd] | 2062 | return; |
---|
| 2063 | } |
---|
| 2064 | |
---|
| 2065 | /* deal with the case of trying change the filter color */ |
---|
| 2066 | if (argc==4 && !strcmp(argv[2], "-c")) { |
---|
| 2067 | f=owl_global_get_filter(&g, argv[1]); |
---|
| 2068 | if (!f) { |
---|
[ec6ff52] | 2069 | owl_function_error("The filter '%s' does not exist.", argv[1]); |
---|
[7d4fbcd] | 2070 | return; |
---|
| 2071 | } |
---|
[601733d] | 2072 | if (owl_util_string_to_color(argv[3])==OWL_COLOR_INVALID) { |
---|
[12c35df] | 2073 | owl_function_error("The color '%s' is not available.", argv[3]); |
---|
| 2074 | return; |
---|
| 2075 | } |
---|
[8fa9562] | 2076 | owl_filter_set_fgcolor(f, owl_util_string_to_color(argv[3])); |
---|
| 2077 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 2078 | return; |
---|
| 2079 | } |
---|
| 2080 | if (argc==4 && !strcmp(argv[2], "-b")) { |
---|
| 2081 | f=owl_global_get_filter(&g, argv[1]); |
---|
| 2082 | if (!f) { |
---|
| 2083 | owl_function_error("The filter '%s' does not exist.", argv[1]); |
---|
| 2084 | return; |
---|
| 2085 | } |
---|
[601733d] | 2086 | if (owl_util_string_to_color(argv[3])==OWL_COLOR_INVALID) { |
---|
[8fa9562] | 2087 | owl_function_error("The color '%s' is not available.", argv[3]); |
---|
| 2088 | return; |
---|
| 2089 | } |
---|
| 2090 | owl_filter_set_bgcolor(f, owl_util_string_to_color(argv[3])); |
---|
[7d4fbcd] | 2091 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 2092 | return; |
---|
| 2093 | } |
---|
| 2094 | |
---|
| 2095 | /* create the filter and check for errors */ |
---|
[23fddad] | 2096 | f = owl_filter_new(argv[1], argc-2, argv+2); |
---|
| 2097 | if (f == NULL) { |
---|
[40458b9] | 2098 | owl_function_error("Invalid filter"); |
---|
[7d4fbcd] | 2099 | return; |
---|
| 2100 | } |
---|
| 2101 | |
---|
| 2102 | /* if the named filter is in use by the current view, remember it */ |
---|
| 2103 | if (!strcmp(owl_view_get_filtname(v), argv[1])) { |
---|
| 2104 | inuse=1; |
---|
| 2105 | } |
---|
| 2106 | |
---|
| 2107 | /* if the named filter already exists, nuke it */ |
---|
| 2108 | if (owl_global_get_filter(&g, argv[1])) { |
---|
| 2109 | owl_global_remove_filter(&g, argv[1]); |
---|
| 2110 | } |
---|
| 2111 | |
---|
| 2112 | /* add the filter */ |
---|
| 2113 | owl_global_add_filter(&g, f); |
---|
| 2114 | |
---|
| 2115 | /* if it was in use by the current view then update */ |
---|
| 2116 | if (inuse) { |
---|
[3895e23] | 2117 | owl_function_change_currentview_filter(argv[1]); |
---|
[7d4fbcd] | 2118 | } |
---|
| 2119 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 2120 | } |
---|
| 2121 | |
---|
[3895e23] | 2122 | /* If 'filtername' does not start with 'not-' create a filter named |
---|
| 2123 | * 'not-<filtername>' defined as "not filter <filtername>". If the |
---|
| 2124 | * filter 'not-<filtername>' already exists, do not overwrite it. If |
---|
| 2125 | * 'filtername' begins with 'not-' and a filter 'filtername' already |
---|
| 2126 | * exists, then do nothing. If the filter 'filtername' does not |
---|
| 2127 | * exist, create it and define it as 'not filter <filtername>' |
---|
| 2128 | * |
---|
| 2129 | * Returns the name of the negated filter, which the caller must free. |
---|
| 2130 | */ |
---|
[e19eb97] | 2131 | char *owl_function_create_negative_filter(const char *filtername) |
---|
[3895e23] | 2132 | { |
---|
| 2133 | char *newname; |
---|
[4542047] | 2134 | const owl_filter *tmpfilt; |
---|
[e19eb97] | 2135 | const char *argv[5]; |
---|
[3895e23] | 2136 | |
---|
| 2137 | owl_function_debugmsg("owl_function_create_negative_filter"); |
---|
| 2138 | |
---|
| 2139 | if (!strncmp(filtername, "not-", 4)) { |
---|
| 2140 | newname=owl_strdup(filtername+4); |
---|
| 2141 | } else { |
---|
| 2142 | newname=owl_sprintf("not-%s", filtername); |
---|
| 2143 | } |
---|
| 2144 | |
---|
| 2145 | tmpfilt=owl_global_get_filter(&g, newname); |
---|
| 2146 | if (!tmpfilt) { |
---|
| 2147 | argv[0]="filter"; /* anything is fine here */ |
---|
| 2148 | argv[1]=newname; |
---|
| 2149 | argv[2]="not"; |
---|
| 2150 | argv[3]="filter"; |
---|
| 2151 | argv[4]=filtername; |
---|
| 2152 | owl_function_create_filter(5, argv); |
---|
| 2153 | } |
---|
| 2154 | |
---|
| 2155 | owl_function_debugmsg("owl_function_create_negative_filter: returning with %s", newname); |
---|
| 2156 | return(newname); |
---|
| 2157 | } |
---|
| 2158 | |
---|
[c79a047] | 2159 | void owl_function_show_filters(void) |
---|
[d54838d] | 2160 | { |
---|
[4542047] | 2161 | const owl_filter *f; |
---|
[129e609] | 2162 | GList *fl; |
---|
[7d4fbcd] | 2163 | owl_fmtext fm; |
---|
| 2164 | |
---|
| 2165 | owl_fmtext_init_null(&fm); |
---|
| 2166 | |
---|
| 2167 | owl_fmtext_append_bold(&fm, "Filters:\n"); |
---|
| 2168 | |
---|
[129e609] | 2169 | for (fl = g.filterlist; fl; fl = g_list_next(fl)) { |
---|
| 2170 | f = fl->data; |
---|
[7d4fbcd] | 2171 | owl_fmtext_append_normal(&fm, " "); |
---|
| 2172 | if (owl_global_get_hascolors(&g)) { |
---|
[8fa9562] | 2173 | owl_fmtext_append_normal_color(&fm, owl_filter_get_name(f), owl_filter_get_fgcolor(f), owl_filter_get_bgcolor(f)); |
---|
[7d4fbcd] | 2174 | } else { |
---|
| 2175 | owl_fmtext_append_normal(&fm, owl_filter_get_name(f)); |
---|
| 2176 | } |
---|
| 2177 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 2178 | } |
---|
| 2179 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 2180 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 2181 | } |
---|
| 2182 | |
---|
[e19eb97] | 2183 | void owl_function_show_filter(const char *name) |
---|
[d54838d] | 2184 | { |
---|
[4542047] | 2185 | const owl_filter *f; |
---|
[cdc6ff1] | 2186 | char *buff, *tmp; |
---|
[7d4fbcd] | 2187 | |
---|
| 2188 | f=owl_global_get_filter(&g, name); |
---|
| 2189 | if (!f) { |
---|
[ec6ff52] | 2190 | owl_function_error("There is no filter named %s", name); |
---|
[7d4fbcd] | 2191 | return; |
---|
| 2192 | } |
---|
[cdc6ff1] | 2193 | tmp = owl_filter_print(f); |
---|
| 2194 | buff = owl_sprintf("%s: %s", owl_filter_get_name(f), tmp); |
---|
[7d4fbcd] | 2195 | owl_function_popless_text(buff); |
---|
[0504f63] | 2196 | owl_free(buff); |
---|
[cdc6ff1] | 2197 | owl_free(tmp); |
---|
[7d4fbcd] | 2198 | } |
---|
| 2199 | |
---|
[c79a047] | 2200 | void owl_function_show_zpunts(void) |
---|
[d54838d] | 2201 | { |
---|
[4542047] | 2202 | const owl_filter *f; |
---|
[77bced3] | 2203 | const owl_list *fl; |
---|
[7d4fbcd] | 2204 | char buff[5000]; |
---|
[0504f63] | 2205 | char *tmp; |
---|
[7d4fbcd] | 2206 | owl_fmtext fm; |
---|
| 2207 | int i, j; |
---|
| 2208 | |
---|
| 2209 | owl_fmtext_init_null(&fm); |
---|
| 2210 | |
---|
| 2211 | fl=owl_global_get_puntlist(&g); |
---|
| 2212 | j=owl_list_get_size(fl); |
---|
| 2213 | owl_fmtext_append_bold(&fm, "Active zpunt filters:\n"); |
---|
| 2214 | |
---|
| 2215 | for (i=0; i<j; i++) { |
---|
| 2216 | f=owl_list_get_element(fl, i); |
---|
[ce7b824] | 2217 | snprintf(buff, sizeof(buff), "[% 2d] ", i+1); |
---|
| 2218 | owl_fmtext_append_normal(&fm, buff); |
---|
[0504f63] | 2219 | tmp = owl_filter_print(f); |
---|
| 2220 | owl_fmtext_append_normal(&fm, tmp); |
---|
| 2221 | owl_free(tmp); |
---|
[7d4fbcd] | 2222 | } |
---|
| 2223 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 2224 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 2225 | } |
---|
| 2226 | |
---|
[3abf28b] | 2227 | /* Create a filter for a class, instance if one doesn't exist. If |
---|
| 2228 | * instance is NULL then catch all messgaes in the class. Returns the |
---|
| 2229 | * name of the filter, which the caller must free. |
---|
[66e409c] | 2230 | * If 'related' is nonzero, encompass unclasses and .d classes as well. |
---|
[3abf28b] | 2231 | */ |
---|
[66e409c] | 2232 | char *owl_function_classinstfilt(const char *c, const char *i, int related) |
---|
[d54838d] | 2233 | { |
---|
[7d4fbcd] | 2234 | owl_filter *f; |
---|
| 2235 | char *argbuff, *filtname; |
---|
[d54838d] | 2236 | char *tmpclass, *tmpinstance = NULL; |
---|
[7a20e4c] | 2237 | char *class, *instance = NULL; |
---|
[7d4fbcd] | 2238 | |
---|
[66e409c] | 2239 | if (related) { |
---|
| 2240 | class = owl_util_baseclass(c); |
---|
| 2241 | if (i) { |
---|
| 2242 | instance = owl_util_baseclass(i); |
---|
| 2243 | } |
---|
| 2244 | } else { |
---|
| 2245 | class = owl_strdup(c); |
---|
| 2246 | if (i) { |
---|
| 2247 | instance = owl_strdup(i); |
---|
| 2248 | } |
---|
[7a20e4c] | 2249 | } |
---|
| 2250 | |
---|
[7d4fbcd] | 2251 | /* name for the filter */ |
---|
| 2252 | if (!instance) { |
---|
[66e409c] | 2253 | filtname = owl_sprintf("%sclass-%s", related ? "related-" : "", class); |
---|
[7d4fbcd] | 2254 | } else { |
---|
[66e409c] | 2255 | filtname = owl_sprintf("%sclass-%s-instance-%s", related ? "related-" : "", class, instance); |
---|
[7d4fbcd] | 2256 | } |
---|
[ed2412d] | 2257 | /* downcase it */ |
---|
[28ee32b] | 2258 | { |
---|
| 2259 | char *temp = g_utf8_strdown(filtname, -1); |
---|
| 2260 | if (temp) { |
---|
| 2261 | owl_free(filtname); |
---|
| 2262 | filtname = temp; |
---|
| 2263 | } |
---|
| 2264 | } |
---|
[4099cf8] | 2265 | /* turn spaces, single quotes, and double quotes into dots */ |
---|
[e3d9c77] | 2266 | owl_text_tr(filtname, ' ', '.'); |
---|
[4099cf8] | 2267 | owl_text_tr(filtname, '\'', '.'); |
---|
| 2268 | owl_text_tr(filtname, '"', '.'); |
---|
[ed2412d] | 2269 | |
---|
[7d4fbcd] | 2270 | /* if it already exists then go with it. This lets users override */ |
---|
| 2271 | if (owl_global_get_filter(&g, filtname)) { |
---|
[ff426f9] | 2272 | goto done; |
---|
[7d4fbcd] | 2273 | } |
---|
| 2274 | |
---|
| 2275 | /* create the new filter */ |
---|
[995eb4b] | 2276 | tmpclass=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
[12c35df] | 2277 | owl_text_tr(tmpclass, ' ', '.'); |
---|
[4099cf8] | 2278 | owl_text_tr(tmpclass, '\'', '.'); |
---|
| 2279 | owl_text_tr(tmpclass, '"', '.'); |
---|
[ed2412d] | 2280 | if (instance) { |
---|
[995eb4b] | 2281 | tmpinstance=owl_text_quote(instance, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
[12c35df] | 2282 | owl_text_tr(tmpinstance, ' ', '.'); |
---|
[4099cf8] | 2283 | owl_text_tr(tmpinstance, '\'', '.'); |
---|
| 2284 | owl_text_tr(tmpinstance, '"', '.'); |
---|
[ed2412d] | 2285 | } |
---|
[a0e6082] | 2286 | |
---|
[66e409c] | 2287 | argbuff = owl_sprintf(related ? "class ^(un)*%s(\\.d)*$" : "class ^%s$", tmpclass); |
---|
[d54838d] | 2288 | if (tmpinstance) { |
---|
[a0e6082] | 2289 | char *tmp = argbuff; |
---|
[66e409c] | 2290 | argbuff = owl_sprintf(related ? "%s and ( instance ^(un)*%s(\\.d)*$ )" : "%s and instance ^%s$", tmp, tmpinstance); |
---|
[a0e6082] | 2291 | owl_free(tmp); |
---|
[7d4fbcd] | 2292 | } |
---|
[ed2412d] | 2293 | owl_free(tmpclass); |
---|
[d54838d] | 2294 | if (tmpinstance) owl_free(tmpinstance); |
---|
[7d4fbcd] | 2295 | |
---|
[23fddad] | 2296 | f = owl_filter_new_fromstring(filtname, argbuff); |
---|
[7d4fbcd] | 2297 | |
---|
| 2298 | /* add it to the global list */ |
---|
| 2299 | owl_global_add_filter(&g, f); |
---|
| 2300 | |
---|
| 2301 | owl_free(argbuff); |
---|
[ff426f9] | 2302 | done: |
---|
[be5aa09] | 2303 | owl_free(class); |
---|
| 2304 | if (instance) { |
---|
| 2305 | owl_free(instance); |
---|
| 2306 | } |
---|
[ed2412d] | 2307 | return(filtname); |
---|
[7d4fbcd] | 2308 | } |
---|
| 2309 | |
---|
[3abf28b] | 2310 | /* Create a filter for personal zephyrs to or from the specified |
---|
| 2311 | * zephyr user. Includes login/logout notifications for the user. |
---|
| 2312 | * The name of the filter will be 'user-<user>'. If a filter already |
---|
| 2313 | * exists with this name, no new filter will be created. This allows |
---|
| 2314 | * the configuration to override this function. Returns the name of |
---|
| 2315 | * the filter, which the caller must free. |
---|
| 2316 | */ |
---|
[e19eb97] | 2317 | char *owl_function_zuserfilt(const char *user) |
---|
[d54838d] | 2318 | { |
---|
[7d4fbcd] | 2319 | owl_filter *f; |
---|
[1d12db24] | 2320 | char *argbuff, *longuser, *esclonguser, *shortuser, *filtname; |
---|
[7d4fbcd] | 2321 | |
---|
| 2322 | /* stick the local realm on if it's not there */ |
---|
[4b464a4] | 2323 | longuser=long_zuser(user); |
---|
| 2324 | shortuser=short_zuser(user); |
---|
[7d4fbcd] | 2325 | |
---|
| 2326 | /* name for the filter */ |
---|
[9a2ae6c] | 2327 | filtname=owl_sprintf("user-%s", shortuser); |
---|
[7d4fbcd] | 2328 | |
---|
| 2329 | /* if it already exists then go with it. This lets users override */ |
---|
| 2330 | if (owl_global_get_filter(&g, filtname)) { |
---|
[6cc3306] | 2331 | return filtname; |
---|
[7d4fbcd] | 2332 | } |
---|
| 2333 | |
---|
| 2334 | /* create the new-internal filter */ |
---|
[1d12db24] | 2335 | esclonguser = owl_text_quote(longuser, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
| 2336 | |
---|
[9a2ae6c] | 2337 | argbuff=owl_sprintf("( type ^zephyr$ and filter personal and " |
---|
| 2338 | "( ( direction ^in$ and sender ^%1$s$ ) or ( direction ^out$ and " |
---|
| 2339 | "recipient ^%1$s$ ) ) ) or ( ( class ^login$ ) and ( sender ^%1$s$ ) )", |
---|
[1d12db24] | 2340 | esclonguser); |
---|
[7d4fbcd] | 2341 | |
---|
[23fddad] | 2342 | f = owl_filter_new_fromstring(filtname, argbuff); |
---|
[7d4fbcd] | 2343 | |
---|
| 2344 | /* add it to the global list */ |
---|
| 2345 | owl_global_add_filter(&g, f); |
---|
| 2346 | |
---|
| 2347 | /* free stuff */ |
---|
| 2348 | owl_free(argbuff); |
---|
| 2349 | owl_free(longuser); |
---|
[1d12db24] | 2350 | owl_free(esclonguser); |
---|
[7d4fbcd] | 2351 | owl_free(shortuser); |
---|
[7360fab] | 2352 | |
---|
[ed2412d] | 2353 | return(filtname); |
---|
[7d4fbcd] | 2354 | } |
---|
| 2355 | |
---|
[3abf28b] | 2356 | /* Create a filter for AIM IM messages to or from the specified |
---|
| 2357 | * screenname. The name of the filter will be 'aimuser-<user>'. If a |
---|
| 2358 | * filter already exists with this name, no new filter will be |
---|
| 2359 | * created. This allows the configuration to override this function. |
---|
| 2360 | * Returns the name of the filter, which the caller must free. |
---|
| 2361 | */ |
---|
[e19eb97] | 2362 | char *owl_function_aimuserfilt(const char *user) |
---|
[3abf28b] | 2363 | { |
---|
| 2364 | owl_filter *f; |
---|
| 2365 | char *argbuff, *filtname; |
---|
[af9b92e] | 2366 | char *escuser; |
---|
[3abf28b] | 2367 | |
---|
| 2368 | /* name for the filter */ |
---|
[9a2ae6c] | 2369 | filtname=owl_sprintf("aimuser-%s", user); |
---|
[3abf28b] | 2370 | |
---|
| 2371 | /* if it already exists then go with it. This lets users override */ |
---|
| 2372 | if (owl_global_get_filter(&g, filtname)) { |
---|
| 2373 | return(owl_strdup(filtname)); |
---|
| 2374 | } |
---|
| 2375 | |
---|
| 2376 | /* create the new-internal filter */ |
---|
[af9b92e] | 2377 | escuser = owl_text_quote(user, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
| 2378 | |
---|
[9a2ae6c] | 2379 | argbuff = owl_sprintf( |
---|
| 2380 | "( type ^aim$ and ( ( sender ^%1$s$ and recipient ^%2$s$ ) or " |
---|
| 2381 | "( sender ^%2$s$ and recipient ^%1$s$ ) ) )", |
---|
| 2382 | escuser, owl_global_get_aim_screenname_for_filters(&g)); |
---|
[3abf28b] | 2383 | |
---|
[23fddad] | 2384 | f = owl_filter_new_fromstring(filtname, argbuff); |
---|
[3abf28b] | 2385 | |
---|
| 2386 | /* add it to the global list */ |
---|
| 2387 | owl_global_add_filter(&g, f); |
---|
| 2388 | |
---|
| 2389 | /* free stuff */ |
---|
| 2390 | owl_free(argbuff); |
---|
[af9b92e] | 2391 | owl_free(escuser); |
---|
[3abf28b] | 2392 | |
---|
| 2393 | return(filtname); |
---|
| 2394 | } |
---|
| 2395 | |
---|
[e19eb97] | 2396 | char *owl_function_typefilt(const char *type) |
---|
[d54838d] | 2397 | { |
---|
[f73e519] | 2398 | owl_filter *f; |
---|
[1d12db24] | 2399 | char *argbuff, *filtname, *esctype; |
---|
[f73e519] | 2400 | |
---|
| 2401 | /* name for the filter */ |
---|
| 2402 | filtname=owl_sprintf("type-%s", type); |
---|
| 2403 | |
---|
| 2404 | /* if it already exists then go with it. This lets users override */ |
---|
| 2405 | if (owl_global_get_filter(&g, filtname)) { |
---|
| 2406 | return filtname; |
---|
| 2407 | } |
---|
| 2408 | |
---|
| 2409 | /* create the new-internal filter */ |
---|
[1d12db24] | 2410 | esctype = owl_text_quote(type, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
| 2411 | |
---|
| 2412 | argbuff = owl_sprintf("type ^%s$", esctype); |
---|
[f73e519] | 2413 | |
---|
[23fddad] | 2414 | f = owl_filter_new_fromstring(filtname, argbuff); |
---|
[f73e519] | 2415 | |
---|
| 2416 | /* add it to the global list */ |
---|
| 2417 | owl_global_add_filter(&g, f); |
---|
| 2418 | |
---|
| 2419 | /* free stuff */ |
---|
| 2420 | owl_free(argbuff); |
---|
[1d12db24] | 2421 | owl_free(esctype); |
---|
[f73e519] | 2422 | |
---|
| 2423 | return filtname; |
---|
| 2424 | } |
---|
| 2425 | |
---|
[7d4fbcd] | 2426 | /* If flag is 1, marks for deletion. If flag is 0, |
---|
| 2427 | * unmarks for deletion. */ |
---|
[d54838d] | 2428 | void owl_function_delete_curview_msgs(int flag) |
---|
| 2429 | { |
---|
[9e5c9f3] | 2430 | const owl_view *v; |
---|
[7d4fbcd] | 2431 | int i, j; |
---|
| 2432 | |
---|
| 2433 | v=owl_global_get_current_view(&g); |
---|
| 2434 | j=owl_view_get_size(v); |
---|
| 2435 | for (i=0; i<j; i++) { |
---|
| 2436 | if (flag == 1) { |
---|
| 2437 | owl_message_mark_delete(owl_view_get_element(v, i)); |
---|
| 2438 | } else if (flag == 0) { |
---|
| 2439 | owl_message_unmark_delete(owl_view_get_element(v, i)); |
---|
| 2440 | } |
---|
| 2441 | } |
---|
| 2442 | |
---|
| 2443 | owl_function_makemsg("%i messages marked for %sdeletion", j, flag?"":"un"); |
---|
| 2444 | |
---|
| 2445 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 2446 | } |
---|
| 2447 | |
---|
[ecaec21] | 2448 | static char *owl_function_smartfilter_cc(const owl_message *m) { |
---|
| 2449 | const char *ccs; |
---|
| 2450 | char *filtname; |
---|
| 2451 | char *text; |
---|
| 2452 | owl_filter *f; |
---|
| 2453 | |
---|
| 2454 | ccs = owl_message_get_attribute_value(m, "zephyr_ccs"); |
---|
| 2455 | |
---|
| 2456 | filtname = owl_sprintf("conversation-%s", ccs); |
---|
| 2457 | owl_text_tr(filtname, ' ', '-'); |
---|
| 2458 | |
---|
| 2459 | if (owl_global_get_filter(&g, filtname)) { |
---|
| 2460 | return filtname; |
---|
| 2461 | } |
---|
| 2462 | |
---|
| 2463 | text = owl_sprintf("type ^zephyr$ and filter personal and " |
---|
| 2464 | "zephyr_ccs ^%s%s%s$", |
---|
| 2465 | owl_getquoting(ccs), ccs, owl_getquoting(ccs)); |
---|
| 2466 | |
---|
| 2467 | f = owl_filter_new_fromstring(filtname, text); |
---|
| 2468 | |
---|
| 2469 | owl_global_add_filter(&g, f); |
---|
| 2470 | |
---|
| 2471 | owl_free(text); |
---|
| 2472 | |
---|
| 2473 | return filtname; |
---|
| 2474 | } |
---|
| 2475 | |
---|
[3abf28b] | 2476 | /* Create a filter based on the current message. Returns the name of |
---|
| 2477 | * a filter or null. The caller must free this name. |
---|
| 2478 | * |
---|
| 2479 | * if the curmsg is a personal zephyr return a filter name |
---|
[e6d989f] | 2480 | * to the zephyr conversation with that user. |
---|
[3abf28b] | 2481 | * If the curmsg is a zephyr class message, instance foo, recip *, |
---|
| 2482 | * return a filter name to the class, inst. |
---|
| 2483 | * If the curmsg is a zephyr class message and type==0 then |
---|
| 2484 | * return a filter name for just the class. |
---|
| 2485 | * If the curmsg is a zephyr class message and type==1 then |
---|
| 2486 | * return a filter name for the class and instance. |
---|
| 2487 | * If the curmsg is a personal AIM message returna filter |
---|
| 2488 | * name to the AIM conversation with that user |
---|
| 2489 | */ |
---|
[8a5b5a1] | 2490 | char *owl_function_smartfilter(int type, int invert_related) |
---|
[d54838d] | 2491 | { |
---|
[9e5c9f3] | 2492 | const owl_view *v; |
---|
[c08c70a] | 2493 | const owl_message *m; |
---|
[4b464a4] | 2494 | char *zperson, *filtname=NULL; |
---|
[66e409c] | 2495 | const char *argv[2]; |
---|
[8a5b5a1] | 2496 | int related = owl_global_is_narrow_related(&g) ^ invert_related; |
---|
| 2497 | |
---|
[7d4fbcd] | 2498 | v=owl_global_get_current_view(&g); |
---|
| 2499 | m=owl_view_get_element(v, owl_global_get_curmsg(&g)); |
---|
| 2500 | |
---|
[5eeea3b] | 2501 | if (!m || owl_view_get_size(v)==0) { |
---|
[ec6ff52] | 2502 | owl_function_error("No message selected\n"); |
---|
[4b464a4] | 2503 | return(NULL); |
---|
[7d4fbcd] | 2504 | } |
---|
| 2505 | |
---|
[f73e519] | 2506 | /* very simple handling of admin messages for now */ |
---|
[4b464a4] | 2507 | if (owl_message_is_type_admin(m)) { |
---|
[3abf28b] | 2508 | return(owl_function_typefilt("admin")); |
---|
| 2509 | } |
---|
| 2510 | |
---|
[995eb4b] | 2511 | /* very simple handling of loopback messages for now */ |
---|
| 2512 | if (owl_message_is_type_loopback(m)) { |
---|
| 2513 | return(owl_function_typefilt("loopback")); |
---|
| 2514 | } |
---|
| 2515 | |
---|
[3abf28b] | 2516 | /* aim messages */ |
---|
| 2517 | if (owl_message_is_type_aim(m)) { |
---|
| 2518 | if (owl_message_is_direction_in(m)) { |
---|
| 2519 | filtname=owl_function_aimuserfilt(owl_message_get_sender(m)); |
---|
| 2520 | } else if (owl_message_is_direction_out(m)) { |
---|
| 2521 | filtname=owl_function_aimuserfilt(owl_message_get_recipient(m)); |
---|
| 2522 | } |
---|
| 2523 | return(filtname); |
---|
[7d4fbcd] | 2524 | } |
---|
| 2525 | |
---|
[4b464a4] | 2526 | /* narrow personal and login messages to the sender or recip as appropriate */ |
---|
[25729b2] | 2527 | if (owl_message_is_type_zephyr(m)) { |
---|
[0ef0e8f] | 2528 | if (owl_message_is_personal(m) || owl_message_is_loginout(m)) { |
---|
[ecaec21] | 2529 | if (owl_message_get_attribute_value(m, "zephyr_ccs") != NULL) { |
---|
| 2530 | return owl_function_smartfilter_cc(m); |
---|
| 2531 | } |
---|
| 2532 | |
---|
[4b464a4] | 2533 | if (owl_message_is_direction_in(m)) { |
---|
[25729b2] | 2534 | zperson=short_zuser(owl_message_get_sender(m)); |
---|
[4b464a4] | 2535 | } else { |
---|
[25729b2] | 2536 | zperson=short_zuser(owl_message_get_recipient(m)); |
---|
[4b464a4] | 2537 | } |
---|
[3abf28b] | 2538 | filtname=owl_function_zuserfilt(zperson); |
---|
[4b464a4] | 2539 | owl_free(zperson); |
---|
| 2540 | return(filtname); |
---|
[7d4fbcd] | 2541 | } |
---|
| 2542 | |
---|
[25729b2] | 2543 | /* narrow class MESSAGE, instance foo, recip * messages to class, inst */ |
---|
[ce74deb] | 2544 | if (!strcasecmp(owl_message_get_class(m), "message")) { |
---|
[66e409c] | 2545 | filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m), related); |
---|
[25729b2] | 2546 | return(filtname); |
---|
| 2547 | } |
---|
| 2548 | |
---|
| 2549 | /* otherwise narrow to the class */ |
---|
| 2550 | if (type==0) { |
---|
[66e409c] | 2551 | filtname=owl_function_classinstfilt(owl_message_get_class(m), NULL, related); |
---|
[25729b2] | 2552 | } else if (type==1) { |
---|
[66e409c] | 2553 | filtname=owl_function_classinstfilt(owl_message_get_class(m), owl_message_get_instance(m), related); |
---|
[25729b2] | 2554 | } |
---|
[4b464a4] | 2555 | return(filtname); |
---|
[7d4fbcd] | 2556 | } |
---|
| 2557 | |
---|
[25729b2] | 2558 | /* pass it off to perl */ |
---|
[66e409c] | 2559 | argv[0] = type ? "1" : "0"; |
---|
| 2560 | argv[1] = related ? "1" : "0"; |
---|
| 2561 | return owl_perlconfig_message_call_method(m, "smartfilter", 2, argv); |
---|
[7d4fbcd] | 2562 | } |
---|
| 2563 | |
---|
[d54838d] | 2564 | void owl_function_smartzpunt(int type) |
---|
| 2565 | { |
---|
[d36f2cb] | 2566 | /* Starts a zpunt command based on the current class,instance pair. |
---|
| 2567 | * If type=0, uses just class. If type=1, uses instance as well. */ |
---|
[9e5c9f3] | 2568 | const owl_view *v; |
---|
[c08c70a] | 2569 | const owl_message *m; |
---|
[e19eb97] | 2570 | const char *cmdprefix, *mclass, *minst; |
---|
[65b2173] | 2571 | char *cmd; |
---|
[d36f2cb] | 2572 | |
---|
| 2573 | v=owl_global_get_current_view(&g); |
---|
| 2574 | m=owl_view_get_element(v, owl_global_get_curmsg(&g)); |
---|
| 2575 | |
---|
[5eeea3b] | 2576 | if (!m || owl_view_get_size(v)==0) { |
---|
[ec6ff52] | 2577 | owl_function_error("No message selected\n"); |
---|
[d36f2cb] | 2578 | return; |
---|
| 2579 | } |
---|
| 2580 | |
---|
| 2581 | /* for now we skip admin messages. */ |
---|
[4b464a4] | 2582 | if (owl_message_is_type_admin(m) |
---|
[5789230] | 2583 | || owl_message_is_loginout(m) |
---|
[4b464a4] | 2584 | || !owl_message_is_type_zephyr(m)) { |
---|
[ec6ff52] | 2585 | owl_function_error("smartzpunt doesn't support this message type."); |
---|
[d36f2cb] | 2586 | return; |
---|
| 2587 | } |
---|
| 2588 | |
---|
[cee1f25] | 2589 | mclass = owl_message_get_class(m); |
---|
| 2590 | minst = owl_message_get_instance(m); |
---|
[d36f2cb] | 2591 | if (!mclass || !*mclass || *mclass==' ' |
---|
| 2592 | || (!strcasecmp(mclass, "message") && !strcasecmp(minst, "personal")) |
---|
| 2593 | || (type && (!minst || !*minst|| *minst==' '))) { |
---|
[ec6ff52] | 2594 | owl_function_error("smartzpunt can't safely do this for <%s,%s>", |
---|
[d36f2cb] | 2595 | mclass, minst); |
---|
| 2596 | } else { |
---|
| 2597 | cmdprefix = "start-command zpunt "; |
---|
[cee1f25] | 2598 | cmd = owl_malloc(strlen(cmdprefix)+strlen(mclass)+strlen(minst)+10); |
---|
[d36f2cb] | 2599 | strcpy(cmd, cmdprefix); |
---|
[cee1f25] | 2600 | strcat(cmd, owl_getquoting(mclass)); |
---|
[d36f2cb] | 2601 | strcat(cmd, mclass); |
---|
[cee1f25] | 2602 | strcat(cmd, owl_getquoting(mclass)); |
---|
[d36f2cb] | 2603 | if (type) { |
---|
| 2604 | strcat(cmd, " "); |
---|
[cee1f25] | 2605 | strcat(cmd, owl_getquoting(minst)); |
---|
[d36f2cb] | 2606 | strcat(cmd, minst); |
---|
[cee1f25] | 2607 | strcat(cmd, owl_getquoting(minst)); |
---|
[d36f2cb] | 2608 | } else { |
---|
| 2609 | strcat(cmd, " *"); |
---|
| 2610 | } |
---|
| 2611 | owl_function_command(cmd); |
---|
| 2612 | owl_free(cmd); |
---|
| 2613 | } |
---|
| 2614 | } |
---|
| 2615 | |
---|
[5e0b690] | 2616 | /* Set the color of the current view's filter to |
---|
| 2617 | * be 'color' |
---|
| 2618 | */ |
---|
[e19eb97] | 2619 | void owl_function_color_current_filter(const char *fgcolor, const char *bgcolor) |
---|
[d54838d] | 2620 | { |
---|
[e19eb97] | 2621 | const char *name; |
---|
[7d4fbcd] | 2622 | |
---|
| 2623 | name=owl_view_get_filtname(owl_global_get_current_view(&g)); |
---|
[8fa9562] | 2624 | owl_function_color_filter(name, fgcolor, bgcolor); |
---|
[5e0b690] | 2625 | } |
---|
| 2626 | |
---|
| 2627 | /* Set the color of the filter 'filter' to be 'color'. If the color |
---|
| 2628 | * name does not exist, return -1, if the filter does not exist or is |
---|
| 2629 | * the "all" filter, return -2. Return 0 on success |
---|
| 2630 | */ |
---|
[e19eb97] | 2631 | int owl_function_color_filter(const char *filtname, const char *fgcolor, const char *bgcolor) |
---|
[5e0b690] | 2632 | { |
---|
| 2633 | owl_filter *f; |
---|
| 2634 | |
---|
| 2635 | f=owl_global_get_filter(&g, filtname); |
---|
[7d4fbcd] | 2636 | if (!f) { |
---|
[ec6ff52] | 2637 | owl_function_error("Unknown filter"); |
---|
[5e0b690] | 2638 | return(-2); |
---|
[7d4fbcd] | 2639 | } |
---|
| 2640 | |
---|
| 2641 | /* don't touch the all filter */ |
---|
[5e0b690] | 2642 | if (!strcmp(filtname, "all")) { |
---|
[ec6ff52] | 2643 | owl_function_error("You may not change the 'all' filter."); |
---|
[5e0b690] | 2644 | return(-2); |
---|
[7d4fbcd] | 2645 | } |
---|
| 2646 | |
---|
[601733d] | 2647 | if (owl_util_string_to_color(fgcolor)==OWL_COLOR_INVALID) { |
---|
[8fa9562] | 2648 | owl_function_error("No color named '%s' avilable.", fgcolor); |
---|
[5e0b690] | 2649 | return(-1); |
---|
[12c35df] | 2650 | } |
---|
[8fa9562] | 2651 | |
---|
| 2652 | |
---|
| 2653 | if (bgcolor != NULL) { |
---|
[601733d] | 2654 | if (owl_util_string_to_color(bgcolor)==OWL_COLOR_INVALID) { |
---|
[8fa9562] | 2655 | owl_function_error("No color named '%s' avilable.", bgcolor); |
---|
| 2656 | return(-1); |
---|
| 2657 | } |
---|
| 2658 | owl_filter_set_bgcolor(f, owl_util_string_to_color(bgcolor)); |
---|
| 2659 | } |
---|
| 2660 | owl_filter_set_fgcolor(f, owl_util_string_to_color(fgcolor)); |
---|
| 2661 | |
---|
[7d4fbcd] | 2662 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
[5e0b690] | 2663 | return(0); |
---|
[7d4fbcd] | 2664 | } |
---|
| 2665 | |
---|
[c79a047] | 2666 | void owl_function_show_colors(void) |
---|
[d54838d] | 2667 | { |
---|
[7d4fbcd] | 2668 | owl_fmtext fm; |
---|
[c2c5c77] | 2669 | int i; |
---|
| 2670 | |
---|
[7d4fbcd] | 2671 | owl_fmtext_init_null(&fm); |
---|
[ca9142e] | 2672 | owl_fmtext_append_normal(&fm, "default: "); |
---|
[8fa9562] | 2673 | owl_fmtext_append_normal_color(&fm, "default\n", OWL_COLOR_DEFAULT, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2674 | |
---|
| 2675 | owl_fmtext_append_normal(&fm,"red: "); |
---|
[8fa9562] | 2676 | owl_fmtext_append_normal_color(&fm, "red\n", OWL_COLOR_RED, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2677 | |
---|
| 2678 | owl_fmtext_append_normal(&fm,"green: "); |
---|
[8fa9562] | 2679 | owl_fmtext_append_normal_color(&fm, "green\n", OWL_COLOR_GREEN, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2680 | |
---|
| 2681 | owl_fmtext_append_normal(&fm,"yellow: "); |
---|
[8fa9562] | 2682 | owl_fmtext_append_normal_color(&fm, "yellow\n", OWL_COLOR_YELLOW, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2683 | |
---|
| 2684 | owl_fmtext_append_normal(&fm,"blue: "); |
---|
[8fa9562] | 2685 | owl_fmtext_append_normal_color(&fm, "blue\n", OWL_COLOR_BLUE, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2686 | |
---|
| 2687 | owl_fmtext_append_normal(&fm,"magenta: "); |
---|
[8fa9562] | 2688 | owl_fmtext_append_normal_color(&fm, "magenta\n", OWL_COLOR_MAGENTA, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2689 | |
---|
| 2690 | owl_fmtext_append_normal(&fm,"cyan: "); |
---|
[8fa9562] | 2691 | owl_fmtext_append_normal_color(&fm, "cyan\n", OWL_COLOR_CYAN, OWL_COLOR_DEFAULT); |
---|
[ca9142e] | 2692 | |
---|
| 2693 | owl_fmtext_append_normal(&fm,"white: "); |
---|
[8fa9562] | 2694 | owl_fmtext_append_normal_color(&fm, "white\n", OWL_COLOR_WHITE, OWL_COLOR_DEFAULT); |
---|
[7d4fbcd] | 2695 | |
---|
[c2c5c77] | 2696 | for(i = 8; i < COLORS; ++i) { |
---|
| 2697 | char* str1 = owl_sprintf("%4i: ",i); |
---|
| 2698 | char* str2 = owl_sprintf("%i\n",i); |
---|
| 2699 | owl_fmtext_append_normal(&fm,str1); |
---|
| 2700 | owl_fmtext_append_normal_color(&fm, str2, i, OWL_COLOR_DEFAULT); |
---|
| 2701 | owl_free(str1); |
---|
| 2702 | owl_free(str2); |
---|
| 2703 | } |
---|
| 2704 | |
---|
[7d4fbcd] | 2705 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 2706 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 2707 | } |
---|
| 2708 | |
---|
[5bb6c21] | 2709 | /* add the given class, inst, recip to the punt list for filtering. |
---|
| 2710 | * if direction==0 then punt |
---|
| 2711 | * if direction==1 then unpunt |
---|
| 2712 | */ |
---|
[e19eb97] | 2713 | void owl_function_zpunt(const char *class, const char *inst, const char *recip, int direction) |
---|
[d54838d] | 2714 | { |
---|
[c894c15] | 2715 | char *puntexpr, *classexpr, *instexpr, *recipexpr; |
---|
[bc08664] | 2716 | char *quoted; |
---|
[7d4fbcd] | 2717 | |
---|
[5bb6c21] | 2718 | if (!strcmp(class, "*")) { |
---|
[c894c15] | 2719 | classexpr = owl_sprintf("class .*"); |
---|
[5bb6c21] | 2720 | } else { |
---|
[bc08664] | 2721 | quoted=owl_text_quote(class, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
[cee1f25] | 2722 | owl_text_tr(quoted, ' ', '.'); |
---|
[4099cf8] | 2723 | owl_text_tr(quoted, '\'', '.'); |
---|
| 2724 | owl_text_tr(quoted, '"', '.'); |
---|
[c894c15] | 2725 | classexpr = owl_sprintf("class ^(un)*%s(\\.d)*$", quoted); |
---|
[bc08664] | 2726 | owl_free(quoted); |
---|
[5bb6c21] | 2727 | } |
---|
| 2728 | if (!strcmp(inst, "*")) { |
---|
[c894c15] | 2729 | instexpr = owl_sprintf(" and instance .*"); |
---|
[7d4fbcd] | 2730 | } else { |
---|
[bc08664] | 2731 | quoted=owl_text_quote(inst, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
[cee1f25] | 2732 | owl_text_tr(quoted, ' ', '.'); |
---|
[4099cf8] | 2733 | owl_text_tr(quoted, '\'', '.'); |
---|
| 2734 | owl_text_tr(quoted, '"', '.'); |
---|
[c894c15] | 2735 | instexpr = owl_sprintf(" and instance ^(un)*%s(\\.d)*$", quoted); |
---|
[bc08664] | 2736 | owl_free(quoted); |
---|
[7d4fbcd] | 2737 | } |
---|
[c894c15] | 2738 | if (!strcmp(recip, "*")) { |
---|
| 2739 | recipexpr = owl_sprintf(""); |
---|
| 2740 | } else { |
---|
[e6c59ba] | 2741 | if(!strcmp(recip, "%me%")) { |
---|
| 2742 | recip = owl_zephyr_get_sender(); |
---|
| 2743 | } |
---|
[bc08664] | 2744 | quoted=owl_text_quote(recip, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
[cee1f25] | 2745 | owl_text_tr(quoted, ' ', '.'); |
---|
[4099cf8] | 2746 | owl_text_tr(quoted, '\'', '.'); |
---|
| 2747 | owl_text_tr(quoted, '"', '.'); |
---|
[7980fb2] | 2748 | recipexpr = owl_sprintf(" and recipient ^%s$", quoted); |
---|
[bc08664] | 2749 | owl_free(quoted); |
---|
[5bb6c21] | 2750 | } |
---|
[ce7b824] | 2751 | |
---|
[c894c15] | 2752 | puntexpr = owl_sprintf("%s %s %s", classexpr, instexpr, recipexpr); |
---|
| 2753 | owl_function_punt(puntexpr, direction); |
---|
| 2754 | owl_free(puntexpr); |
---|
| 2755 | owl_free(classexpr); |
---|
| 2756 | owl_free(instexpr); |
---|
| 2757 | owl_free(recipexpr); |
---|
[ce7b824] | 2758 | } |
---|
| 2759 | |
---|
[e19eb97] | 2760 | void owl_function_punt(const char *filter, int direction) |
---|
[ce7b824] | 2761 | { |
---|
| 2762 | owl_filter *f; |
---|
| 2763 | owl_list *fl; |
---|
[23fddad] | 2764 | int i, j; |
---|
[ce7b824] | 2765 | fl=owl_global_get_puntlist(&g); |
---|
| 2766 | |
---|
| 2767 | /* first, create the filter */ |
---|
| 2768 | owl_function_debugmsg("About to filter %s", filter); |
---|
[23fddad] | 2769 | f = owl_filter_new_fromstring("punt-filter", filter); |
---|
| 2770 | if (f == NULL) { |
---|
[ec6ff52] | 2771 | owl_function_error("Error creating filter for zpunt"); |
---|
[7d4fbcd] | 2772 | return; |
---|
| 2773 | } |
---|
| 2774 | |
---|
| 2775 | /* Check for an identical filter */ |
---|
| 2776 | j=owl_list_get_size(fl); |
---|
| 2777 | for (i=0; i<j; i++) { |
---|
| 2778 | if (owl_filter_equiv(f, owl_list_get_element(fl, i))) { |
---|
[ce7b824] | 2779 | owl_function_debugmsg("found an equivalent punt filter"); |
---|
[7d4fbcd] | 2780 | /* if we're punting, then just silently bow out on this duplicate */ |
---|
| 2781 | if (direction==0) { |
---|
[23fddad] | 2782 | owl_filter_delete(f); |
---|
[7d4fbcd] | 2783 | return; |
---|
| 2784 | } |
---|
| 2785 | |
---|
| 2786 | /* if we're unpunting, then remove this filter from the puntlist */ |
---|
| 2787 | if (direction==1) { |
---|
[23fddad] | 2788 | owl_filter_delete(owl_list_get_element(fl, i)); |
---|
[7d4fbcd] | 2789 | owl_list_remove_element(fl, i); |
---|
[23fddad] | 2790 | owl_filter_delete(f); |
---|
[7d4fbcd] | 2791 | return; |
---|
| 2792 | } |
---|
| 2793 | } |
---|
| 2794 | } |
---|
| 2795 | |
---|
[ce7b824] | 2796 | owl_function_debugmsg("punting"); |
---|
[7d4fbcd] | 2797 | /* If we're punting, add the filter to the global punt list */ |
---|
| 2798 | if (direction==0) { |
---|
| 2799 | owl_list_append_element(fl, f); |
---|
| 2800 | } |
---|
| 2801 | } |
---|
| 2802 | |
---|
[c79a047] | 2803 | void owl_function_show_keymaps(void) |
---|
[d54838d] | 2804 | { |
---|
[7d4fbcd] | 2805 | owl_list l; |
---|
| 2806 | owl_fmtext fm; |
---|
[afa200a] | 2807 | const owl_keymap *km; |
---|
[12bc46a] | 2808 | const owl_keyhandler *kh; |
---|
[1aee7d9] | 2809 | int i, numkm; |
---|
[e19eb97] | 2810 | const char *kmname; |
---|
[7d4fbcd] | 2811 | |
---|
[1aee7d9] | 2812 | kh = owl_global_get_keyhandler(&g); |
---|
[7d4fbcd] | 2813 | owl_fmtext_init_null(&fm); |
---|
| 2814 | owl_fmtext_append_bold(&fm, "Keymaps: "); |
---|
| 2815 | owl_fmtext_append_normal(&fm, "(use 'show keymap <name>' for details)\n"); |
---|
[1aee7d9] | 2816 | owl_keyhandler_get_keymap_names(kh, &l); |
---|
[7d4fbcd] | 2817 | owl_fmtext_append_list(&fm, &l, "\n", owl_function_keymap_summary); |
---|
| 2818 | owl_fmtext_append_normal(&fm, "\n"); |
---|
[1aee7d9] | 2819 | |
---|
| 2820 | numkm = owl_list_get_size(&l); |
---|
| 2821 | for (i=0; i<numkm; i++) { |
---|
| 2822 | kmname = owl_list_get_element(&l, i); |
---|
| 2823 | km = owl_keyhandler_get_keymap(kh, kmname); |
---|
| 2824 | owl_fmtext_append_bold(&fm, "\n\n----------------------------------------------------------------------------------------------------\n\n"); |
---|
[13ebf92] | 2825 | owl_keymap_get_details(km, &fm, 0); |
---|
[1aee7d9] | 2826 | } |
---|
| 2827 | owl_fmtext_append_normal(&fm, "\n"); |
---|
| 2828 | |
---|
[7d4fbcd] | 2829 | owl_function_popless_fmtext(&fm); |
---|
[bb0d439] | 2830 | owl_keyhandler_keymap_namelist_cleanup(&l); |
---|
[7ab0020] | 2831 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 2832 | } |
---|
| 2833 | |
---|
[e19eb97] | 2834 | char *owl_function_keymap_summary(const char *name) |
---|
[d54838d] | 2835 | { |
---|
[afa200a] | 2836 | const owl_keymap *km |
---|
[7d4fbcd] | 2837 | = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name); |
---|
| 2838 | if (km) return owl_keymap_summary(km); |
---|
| 2839 | else return(NULL); |
---|
| 2840 | } |
---|
| 2841 | |
---|
| 2842 | /* TODO: implement for real */ |
---|
[e19eb97] | 2843 | void owl_function_show_keymap(const char *name) |
---|
[d54838d] | 2844 | { |
---|
[1fd0b25] | 2845 | owl_fmtext fm; |
---|
[afa200a] | 2846 | const owl_keymap *km; |
---|
[7d4fbcd] | 2847 | |
---|
| 2848 | owl_fmtext_init_null(&fm); |
---|
| 2849 | km = owl_keyhandler_get_keymap(owl_global_get_keyhandler(&g), name); |
---|
| 2850 | if (km) { |
---|
[13ebf92] | 2851 | owl_keymap_get_details(km, &fm, 1); |
---|
[7d4fbcd] | 2852 | } else { |
---|
| 2853 | owl_fmtext_append_normal(&fm, "No such keymap...\n"); |
---|
| 2854 | } |
---|
| 2855 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 2856 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 2857 | } |
---|
| 2858 | |
---|
[e19eb97] | 2859 | void owl_function_help_for_command(const char *cmdname) |
---|
[d54838d] | 2860 | { |
---|
[1fd0b25] | 2861 | owl_fmtext fm; |
---|
[7d4fbcd] | 2862 | |
---|
| 2863 | owl_fmtext_init_null(&fm); |
---|
| 2864 | owl_cmd_get_help(owl_global_get_cmddict(&g), cmdname, &fm); |
---|
| 2865 | owl_function_popless_fmtext(&fm); |
---|
[7ab0020] | 2866 | owl_fmtext_cleanup(&fm); |
---|
[7d4fbcd] | 2867 | } |
---|
[1fd0b25] | 2868 | |
---|
[e19eb97] | 2869 | void owl_function_search_start(const char *string, int direction) |
---|
[d54838d] | 2870 | { |
---|
[ab225e0] | 2871 | /* direction is OWL_DIRECTION_DOWNWARDS or OWL_DIRECTION_UPWARDS or |
---|
| 2872 | * OWL_DIRECTION_NONE */ |
---|
[41c9a96] | 2873 | owl_regex re; |
---|
| 2874 | |
---|
| 2875 | if (string && owl_regex_create_quoted(&re, string) == 0) { |
---|
| 2876 | owl_global_set_search_re(&g, &re); |
---|
[5cbc929] | 2877 | owl_regex_cleanup(&re); |
---|
[41c9a96] | 2878 | } else { |
---|
| 2879 | owl_global_set_search_re(&g, NULL); |
---|
| 2880 | } |
---|
[ab225e0] | 2881 | |
---|
| 2882 | if (direction == OWL_DIRECTION_NONE) |
---|
| 2883 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 2884 | else |
---|
| 2885 | owl_function_search_helper(0, direction); |
---|
[1fd0b25] | 2886 | } |
---|
| 2887 | |
---|
[d54838d] | 2888 | void owl_function_search_continue(int direction) |
---|
| 2889 | { |
---|
[1fd0b25] | 2890 | /* direction is OWL_DIRECTION_DOWNWARDS or OWL_DIRECTION_UPWARDS */ |
---|
| 2891 | owl_function_search_helper(1, direction); |
---|
| 2892 | } |
---|
| 2893 | |
---|
[d54838d] | 2894 | void owl_function_search_helper(int mode, int direction) |
---|
| 2895 | { |
---|
[1fd0b25] | 2896 | /* move to a message that contains the string. If direction is |
---|
| 2897 | * OWL_DIRECTION_DOWNWARDS then search fowards, if direction is |
---|
| 2898 | * OWL_DIRECTION_UPWARDS then search backwards. |
---|
| 2899 | * |
---|
| 2900 | * If mode==0 then it will stay on the current message if it |
---|
| 2901 | * contains the string. |
---|
| 2902 | */ |
---|
| 2903 | |
---|
[9e5c9f3] | 2904 | const owl_view *v; |
---|
[1fd0b25] | 2905 | int viewsize, i, curmsg, start; |
---|
| 2906 | owl_message *m; |
---|
| 2907 | |
---|
| 2908 | v=owl_global_get_current_view(&g); |
---|
| 2909 | viewsize=owl_view_get_size(v); |
---|
| 2910 | curmsg=owl_global_get_curmsg(&g); |
---|
| 2911 | |
---|
| 2912 | if (viewsize==0) { |
---|
[ec6ff52] | 2913 | owl_function_error("No messages present"); |
---|
[1fd0b25] | 2914 | return; |
---|
| 2915 | } |
---|
| 2916 | |
---|
| 2917 | if (mode==0) { |
---|
| 2918 | start=curmsg; |
---|
| 2919 | } else if (direction==OWL_DIRECTION_DOWNWARDS) { |
---|
| 2920 | start=curmsg+1; |
---|
| 2921 | } else { |
---|
| 2922 | start=curmsg-1; |
---|
| 2923 | } |
---|
| 2924 | |
---|
| 2925 | /* bounds check */ |
---|
| 2926 | if (start>=viewsize || start<0) { |
---|
[ec6ff52] | 2927 | owl_function_error("No further matches found"); |
---|
|
---|