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