X-Git-Url: https://git.deb.at/w?p=pkg%2Fabook.git;a=blobdiff_plain;f=abook.c;h=1651267a541ef44bc5352786ca121777ce298fd3;hp=db761df0062c6ec2a2f0121b8a1a4e9b0273a7e4;hb=b722eae92e8deb6bd080dea1f2f929a7dd9edddb;hpb=0d3c17d9ab127e5596c8fb97d65122b3b90f6b11 diff --git a/abook.c b/abook.c index db761df..1651267 100644 --- a/abook.c +++ b/abook.c @@ -1,549 +1,445 @@ /* - * abook.c - * by JH + * $Id$ * - * Copyright (C) 1999, 2000 Jaakko Heinonen + * by JH + * + * Copyright (C) Jaakko Heinonen */ +#include +#include +#include +#include +#include +#include #include #include -#include #include -#include -#include -#include "abook_curses.h" #ifdef HAVE_CONFIG_H # include "config.h" #endif #if defined(HAVE_LOCALE_H) && defined(HAVE_SETLOCALE) # include #endif -#ifdef HAVE_TERMIOS_H -# include -#else -# ifdef HAVE_LINUX_TERMIOS_H -# include -# endif -#endif -#ifdef HAVE_SYS_IOCTL_H -# include -#endif +#include #include "abook.h" +#include "gettext.h" +#include "ui.h" #include "database.h" #include "list.h" #include "filter.h" #include "edit.h" #include "misc.h" -#include "help.h" #include "options.h" -#include "estr.h" +#include "getname.h" +#include "getopt.h" +#include "views.h" +#include "xmalloc.h" static void init_abook(); +static void quit_abook_sig(int i); static void set_filenames(); -static void free_filenames(); -static void display_help(char **tbl); -static void get_commands(); static void parse_command_line(int argc, char **argv); static void show_usage(); static void mutt_query(char *str); static void init_mutt_query(); -static void quit_mutt_query(); -static void launch_mutt(); -static void launch_lynx(); -static void win_changed(int dummy); -static void open_datafile(); -#ifdef SIGWINCH -static void resize_abook(); -#endif static void convert(char *srcformat, char *srcfile, char *dstformat, char *dstfile); - -int should_resize = FALSE; -int can_resize = FALSE; +static void add_email(int); char *datafile = NULL; -char *rcfile = NULL; +static char *rcfile = NULL; -WINDOW *top = NULL, *bottom = NULL; +// custom formatting +char custom_format[FORMAT_STRING_LEN] = "{nick} ({name}): {mobile}"; +char *parsed_custom_format = NULL; +enum field_types *custom_format_fields = 0; +struct abook_output_item_filter selected_item_filter; -static void -init_windows() -{ - top = newwin(LIST_TOP - 1, COLS, 0, 0); - - bottom = newwin(LINES - LIST_BOTTOM, COLS, LIST_BOTTOM, 0); -} +bool alternative_datafile = FALSE; +bool alternative_rcfile = FALSE; -static void -free_windows() + +static int +datafile_writeable() { - delwin(top); - delwin(bottom); + FILE *f; + + assert(datafile != NULL); + + if( (f = fopen(datafile, "a")) == NULL) + return FALSE; + + fclose(f); + + return TRUE; } static void -init_abook() +check_abook_directory() { - set_filenames(); - init_options(); + struct stat s; + char *dir; - initscr(); cbreak(); noecho(); - nonl(); - intrflush(stdscr, FALSE); - keypad(stdscr, TRUE); -#ifdef DEBUG - fprintf(stderr, "init_abook():\n"); - fprintf(stderr, " COLS = %d, LINES = %d\n", COLS, LINES); -#endif - if( LINES < MIN_LINES || COLS < MIN_COLS ) { - clear(); refresh(); endwin(); - fprintf(stderr, "Your terminal size is %dx%d\n", COLS, LINES); - fprintf(stderr, "Terminal is too small. Minium terminal size " - "for abook is " - "%dx%d\n", MIN_COLS, MIN_LINES); - exit(1); - } - umask(DEFAULT_UMASK); -#ifdef SIGWINCH - signal(SIGWINCH, win_changed); -#endif - signal(SIGINT, quit_abook); - signal(SIGKILL, quit_abook); - signal(SIGTERM, quit_abook); - - init_list(); - init_windows(); + assert(!is_ui_initialized()); - /* - * this is very ugly for now - */ - /*if( options_get_int("datafile", "autosave") )*/ - - if( load_database(datafile) == 2 ) { - char *tmp = strconcat(getenv("HOME"), - "/" DATAFILE, NULL); - - if( safe_strcmp(tmp, datafile) ) { - refresh_screen(); - statusline_msg("Sorry, the specified file does " - "not appear to be a valid abook addressbook"); - statusline_msg("Will open default addressbook..."); - free(datafile); - datafile = tmp; - load_database(datafile); - } else - free(tmp); - } + if(alternative_datafile) + return; - refresh_screen(); -} + dir = strconcat(getenv("HOME"), "/" DIR_IN_HOME, NULL); + assert(dir != NULL); -void -quit_abook() -{ - if( options_get_int("autosave") ) - save_database(); - else { - statusline_addstr("Save database (y/N)"); - switch( getch() ) { - case 'y': - case 'Y': - save_database(); - default: break; + if(stat(dir, &s) == -1) { + if(errno != ENOENT) { + perror(dir); + free(dir); + exit(EXIT_FAILURE); + } + if(mkdir(dir, 0700) == -1) { + printf(_("Cannot create directory %s\n"), dir); + perror(dir); + free(dir); + exit(EXIT_FAILURE); } + } else if(!S_ISDIR(s.st_mode)) { + printf(_("%s is not a directory\n"), dir); + free(dir); + exit(EXIT_FAILURE); } - close_config(); - close_database(); - close_list(); - free_windows(); - clear(); - refresh(); - endwin(); - exit(0); + free(dir); } -int -main(int argc, char **argv) +static void +xmalloc_error_handler(int err) { -#if defined(HAVE_SETLOCALE) && defined(HAVE_LOCALE_H) - setlocale(LC_ALL, "" ); -#endif - - parse_command_line(argc, argv); - - init_abook(); - - get_commands(); - - quit_abook(); + /* + * We don't try to save addressbook here because we don't know + * if it's fully loaded to memory. + */ + if(is_ui_initialized()) + close_ui(); - return 0; + fprintf(stderr, _("Memory allocation failure: %s\n"), strerror(err)); + exit(EXIT_FAILURE); } static void -set_filenames() +init_abook() { - struct stat s; - - if( (stat(getenv("HOME"), &s)) == -1 || ! S_ISDIR(s.st_mode) ) { - fprintf(stderr,"%s is not a valid HOME directory\n", getenv("HOME") ); - exit(1); + set_filenames(); + check_abook_directory(); + init_opts(); + if(load_opts(rcfile) > 0) { + printf(_("Press enter to continue...\n")); + fgetc(stdin); } + init_default_views(); - if (!datafile) - datafile = strconcat(getenv("HOME"), "/" DATAFILE, NULL); + signal(SIGTERM, quit_abook_sig); - rcfile = strconcat(getenv("HOME"), "/" RCFILE, NULL); + init_index(); - atexit(free_filenames); -} + if(init_ui()) + exit(EXIT_FAILURE); -static void -free_filenames() -{ - my_free(rcfile); - my_free(datafile); -} + umask(DEFAULT_UMASK); -void -headerline(char *str) -{ - werase(top); - - mvwhline(top, 1, 0, ACS_HLINE, COLS); - - mvwprintw(top, 0, 0, "%s | %s", PACKAGE " " VERSION, str); - - refresh(); - wrefresh(top); + if(!datafile_writeable()) { + char *s = strdup_printf(_("File %s is not writeable"), datafile); + refresh_screen(); + statusline_msg(s); + free(s); + if(load_database(datafile) || !statusline_ask_boolean( + _("If you continue all changes will " + "be lost. Do you want to continue?"), FALSE)) { + free_opts(); + /*close_database();*/ + close_ui(); + exit(EXIT_FAILURE); + } + } else + load_database(datafile); + + refresh_screen(); } - void -refresh_screen() -{ -#ifdef SIGWINCH - if( should_resize ) { - resize_abook(); +quit_abook(int save_db) +{ + if(save_db) { + if(opt_get_bool(BOOL_AUTOSAVE)) + save_database(); + else if(statusline_ask_boolean(_("Save database"), TRUE)) + save_database(); + } else if(!statusline_ask_boolean(_("Quit without saving"), FALSE)) return; - } -#endif - clear(); - - refresh_statusline(); - headerline(MAIN_HELPLINE); - list_headerline(); - refresh_list(); + free_opts(); + close_database(); + + close_ui(); + + exit(EXIT_SUCCESS); } -#ifdef DEBUG -extern int curitem; -extern list_item *database; static void -dump_item() +quit_abook_sig(int i) { - int i; - - fprintf(stderr,"sizeof(list_item) = %d\n", sizeof(list_item)); - fprintf(stderr,"--- dumping item %d ---\n", curitem); - - for(i=0; i= 0) { - selected[curitem] = !selected[curitem]; - print_number_of_items(); - refresh_list(); - } - break; - case '+': select_all(); - refresh_list(); - break; - case '-': select_none(); - refresh_list(); - break; - case '*': invert_selection(); - refresh_list(); - break; - case 'A': move_curitem(MOVE_ITEM_UP); - break; - case 'Z': move_curitem(MOVE_ITEM_DOWN); - break; + parse_command_line(argc, argv); - case 'm': launch_mutt(); break; + init_abook(); - case 'p': print_database(); break; + get_commands(); - case 'u': launch_lynx(); break; -#ifdef DEBUG - case 'D': dump_item(); -#endif - } - } -} + quit_abook(QUIT_SAVE); + return 0; +} static void -display_help(char **tbl) +free_filenames() { - int i, j = 3; - - erase(); - headerline("help"); - refresh_statusline(); - - for( i = 0; tbl[i] != NULL; i++) { - mvaddstr(j++, 0, tbl[i]); - if( ( !( (i+1) % (LINES-7) ) ) || - (tbl[i+1] == NULL) ) { - refresh(); - statusline_msg("Press any key to continue..."); - erase(); - refresh_statusline(); - headerline("help"); - j = 3; - } - } - refresh_screen(); + xfree(rcfile); + xfree(datafile); } -void -display_editor_help(WINDOW *w) -{ - int i; - werase(w); - - headerline("editor help"); +static void +set_filenames() +{ + struct stat s; - for( i = 0; editorhelp[i] != NULL; i++) { - waddstr(w, editorhelp[i]); - if( ( !( (i+1) % (LINES-8) ) ) || - (editorhelp[i+1] == NULL) ) { - refresh(); - wrefresh(w); - statusline_msg("Press any key to continue..."); - wclear(w); - } + if( (stat(getenv("HOME"), &s)) == -1 || ! S_ISDIR(s.st_mode) ) { + fprintf(stderr,_("%s is not a valid HOME directory\n"), getenv("HOME") ); + exit(EXIT_FAILURE); } -} + if(!datafile) + datafile = strconcat(getenv("HOME"), "/" DIR_IN_HOME "/" + DATAFILE, NULL); -void -statusline_msg(char *msg) -{ - clear_statusline(); - statusline_addstr(msg); - getch(); -#ifdef DEBUG - fprintf(stderr, "statusline_msg(\"%s\")\n", msg); -#endif - clear_statusline(); -} + if(!rcfile) + rcfile = strconcat(getenv("HOME"), "/" DIR_IN_HOME "/" + RCFILE, NULL); -void -statusline_addstr(char *str) -{ - mvwaddstr(bottom, 1, 0, str); - refresh(); - wrefresh(bottom); + atexit(free_filenames); } /* - * function statusline_getnstr - * - * parameters: - * (char *str) - * if n >= 0 str is a pointer which points a place where to store - * the string, else str is ingnored - * (int n) - * the maximum length of the string - * If n < 0 function will allocate needed space for the string. - * Value 0 is not allowed for n. - * (int use_filesel) - * if this value is nonzero the fileselector is enabled - * - * returns (char *) - * If n < 0 a pointer to a newly allocated string is returned. - * If n > 0 a nonzero value is returned if user has typed a valid - * string. If not NULL value is returned. Never really use the - * _pointer_ if n > 0. - * + * CLI */ -char * -statusline_getnstr(char *str, int n, int use_filesel) -{ - char *buf; - int y, x; - - getyx(bottom, y, x); - wmove(bottom, 1, x); - - buf = wenter_string(bottom, n, - (use_filesel ? ESTR_USE_FILESEL:0) | ESTR_DONT_WRAP); - - if(n < 0) - return buf; - - if(buf == NULL) - str[0] = 0; - else - strncpy(str, buf, n); +enum { + MODE_CONT, + MODE_ADD_EMAIL, + MODE_ADD_EMAIL_QUIET, + MODE_QUERY, + MODE_CONVERT +}; - str[n-1] = 0; - - free(buf); +static void +change_mode(int *current, int mode) +{ + if(*current != MODE_CONT) { + fprintf(stderr, _("Cannot combine options --mutt-query, " + "--convert, " + "--add-email or --add-email-quiet\n")); + exit(EXIT_FAILURE); + } - return buf; + *current = mode; } void -refresh_statusline() +set_filename(char **var, char *path) { - werase(bottom); + char *cwd; - mvwhline(bottom, 0, 0, ACS_HLINE, COLS); - mvwhline(bottom, 2, 0, ACS_HLINE, COLS); + assert(var != NULL); + assert(*var == NULL); /* or else we probably leak memory */ + assert(path != NULL); - refresh(); - wrefresh(bottom); -} - - -char * -ask_filename(char *prompt, int flags) -{ - char *buf = NULL; + if(*path == '/') { + *var = xstrdup(path); + return; + } - clear_statusline(); - - statusline_addstr(prompt); - buf = statusline_getnstr(NULL, -1, flags); + cwd = my_getcwd(); - clear_statusline(); + *var = strconcat(cwd, "/", path, NULL); - return buf; + free(cwd); } -void -clear_statusline() -{ - wmove(bottom, 1, 0); - wclrtoeol(bottom); - wrefresh(bottom); - refresh(); -} +#define set_convert_var(X) do { if(mode != MODE_CONVERT) {\ + fprintf(stderr, _("please use option --%s after --convert option\n"),\ + long_options[option_index].name);\ + exit(EXIT_FAILURE);\ + } else\ + X = optarg;\ + } while(0) static void parse_command_line(int argc, char **argv) { - int i; - - for( i = 1; i < argc; i++ ) { - if( !strcmp(argv[i], "--help") ) { - show_usage(); - exit(1); - } else - if( !strcmp(argv[i], "--mutt-query") ) - mutt_query(argv[i + 1]); - else - if( !strcmp(argv[i], "--datafile") ) { - if (argv[i+1]) { - if (argv[i+1][0] != '/') { - char *cwd = my_getcwd(); - datafile = strconcat(cwd, "/", argv[i+1], NULL); - free(cwd); - } else { - datafile = strdup(argv[i+1]); - } - i++; - } else { + int mode = MODE_CONT; + char *query_string = NULL; + char *informat = "abook", + *outformat = "text", + *infile = "-", + *outfile = "-"; + int c; + selected_item_filter = select_output_item_filter("muttq"); + + for(;;) { + int option_index = 0; + enum { + OPT_ADD_EMAIL, + OPT_ADD_EMAIL_QUIET, + OPT_MUTT_QUERY, + OPT_CONVERT, + OPT_INFORMAT, + OPT_OUTFORMAT, + OPT_OUTFORMAT_STR, + OPT_INFILE, + OPT_OUTFILE, + OPT_FORMATS + }; + static struct option long_options[] = { + { "help", 0, 0, 'h' }, + { "add-email", 0, 0, OPT_ADD_EMAIL }, + { "add-email-quiet", 0, 0, OPT_ADD_EMAIL_QUIET }, + { "datafile", 1, 0, 'f' }, + { "mutt-query", 1, 0, OPT_MUTT_QUERY }, + { "config", 1, 0, 'C' }, + { "convert", 0, 0, OPT_CONVERT }, + { "informat", 1, 0, OPT_INFORMAT }, + { "outformat", 1, 0, OPT_OUTFORMAT }, + { "outformatstr", 1, 0, OPT_OUTFORMAT_STR }, + { "infile", 1, 0, OPT_INFILE }, + { "outfile", 1, 0, OPT_OUTFILE }, + { "formats", 0, 0, OPT_FORMATS }, + { 0, 0, 0, 0 } + }; + + c = getopt_long(argc, argv, "hC:", + long_options, &option_index); + + if(c == -1) + break; + + switch(c) { + case 'h': show_usage(); - exit(1); - } - } else - if( !strcmp(argv[i], "--convert") ) { - if( argc < 5 || argc > 6 ) { - fprintf(stderr, "incorrect number of argumets to make conversion\n"); - fprintf(stderr, "try %s --help\n", argv[0]); - exit(1); - } - if( argv[i+4] ) - convert(argv[i+1], argv[i+2], - argv[i+3], argv[i+4]); - else - convert(argv[i+1], argv[i+2], argv[i+3], "-"); - } else { - printf("option %s not recognized\n", argv[i]); - printf("try %s --help\n", argv[0]); - exit(1); + exit(EXIT_SUCCESS); + case OPT_ADD_EMAIL: + change_mode(&mode, MODE_ADD_EMAIL); + break; + case OPT_ADD_EMAIL_QUIET: + change_mode(&mode, MODE_ADD_EMAIL_QUIET); + break; + case 'f': + set_filename(&datafile, optarg); + alternative_datafile = TRUE; + break; + case OPT_MUTT_QUERY: + query_string = optarg; + change_mode(&mode, MODE_QUERY); + break; + case 'C': + set_filename(&rcfile, optarg); + alternative_rcfile = TRUE; + break; + case OPT_CONVERT: + change_mode(&mode, MODE_CONVERT); + break; + case OPT_INFORMAT: + set_convert_var(informat); + break; + case OPT_OUTFORMAT: + if(mode != MODE_CONVERT && mode != MODE_QUERY) { + fprintf(stderr, + _("please use option --outformat after --convert or --mutt-query option\n")); + exit(EXIT_FAILURE); + } + // ascii-name is stored, it's used to traverse + // e_filters[] in MODE_CONVERT (see export_file()) + outformat = optarg; + // but in case a query-compatible filter is requested + // try to guess right now which one it is, from u_filters[] + selected_item_filter = select_output_item_filter(outformat); + break; + case OPT_OUTFORMAT_STR: + strncpy(custom_format, optarg, FORMAT_STRING_LEN); + custom_format[FORMAT_STRING_LEN - 1] = 0; + break; + case OPT_INFILE: + set_convert_var(infile); + break; + case OPT_OUTFILE: + set_convert_var(outfile); + break; + case OPT_FORMATS: + print_filters(); + exit(EXIT_SUCCESS); + default: + exit(EXIT_FAILURE); } } + + // if the output format requested does not allow filtered querying + // (not in u_filter[]) and --convert has not been specified; bailout + if(! selected_item_filter.func && mode != MODE_CONVERT) { + printf("output format %s not supported or incompatible with --mutt-query\n", outformat); + exit(EXIT_FAILURE); + } + if(! selected_item_filter.func) + selected_item_filter = select_output_item_filter("muttq"); + else if (! strcmp(outformat, "custom")) { + if(! *custom_format) { + fprintf(stderr, _("Invalid custom format string\n")); + exit(EXIT_FAILURE); + } + parsed_custom_format = (char *)malloc(FORMAT_STRING_LEN * sizeof(char*)); + custom_format_fields = (enum field_types *)malloc(FORMAT_STRING_MAX_FIELDS * sizeof(enum field_types *)); + parse_custom_format(custom_format, parsed_custom_format, custom_format_fields); + } + if(optind < argc) { + fprintf(stderr, _("%s: unrecognized arguments on command line\n"), + argv[0]); + exit(EXIT_FAILURE); + } + + switch(mode) { + case MODE_ADD_EMAIL: + add_email(0); + case MODE_ADD_EMAIL_QUIET: + add_email(1); + case MODE_QUERY: + mutt_query(query_string); + case MODE_CONVERT: + convert(informat, infile, outformat, outfile); + } } @@ -551,187 +447,174 @@ static void show_usage() { puts (PACKAGE " v " VERSION "\n"); - puts (" --help show usage"); - puts (" --datafile use an alternative addressbook file"); - puts (" --mutt-query make a query for mutt"); - puts (" --convert " - " "); + puts (_(" -h --help show usage")); + puts (_(" -C --config use an alternative configuration file")); + puts (_(" --datafile use an alternative addressbook file")); + puts (_(" --mutt-query make a query for mutt")); + puts (_(" --add-email " + "read an e-mail message from stdin and\n" + " " + "add the sender to the addressbook")); + puts (_(" --add-email-quiet " + "same as --add-email but doesn't\n" + " require to confirm adding")); putchar('\n'); - puts ("available formats for --convert option:"); - print_filters(); -#ifdef DEBUG - puts ("\nWarning: this version compiled with DEBUG flag ON"); -#endif -} - -extern list_item *database; -extern int items; - -static void -muttq_print_item(int item) -{ - char emails[MAX_EMAILS][MAX_EMAIL_LEN]; - int i; - - split_emailstr(item, emails); - - for(i = 0; i < (options_get_int("mutt_return_all_emails") ? - MAX_EMAILS : 1) ; i++) - if( *emails[i] ) - printf("%s\t%s\t%s\n", emails[i], - database[item][NAME], - database[item][NOTES] == NULL ? " " : - database[item][NOTES] - ); + puts (_(" --convert convert address book files")); + puts (_(" options to use with --convert:")); + puts (_(" --informat format for input file")); + puts (_(" (default: abook)")); + puts (_(" --infile source file")); + puts (_(" (default: stdin)")); + puts (_(" --outformat format for output file")); + puts (_(" (default: text)")); + puts (_(" --outfile destination file")); + puts (_(" (default: stdout)")); + puts (_(" --outformatstr format to use for \"custom\" --outformat")); + puts (_(" (default: \"{nick} ({name}): {mobile}\")")); + puts (_(" --formats list available formats")); } -static int -mutt_query_name(char *str) -{ - int i, j; - char *tmp; - - for(i = 0, j = 0 ; i < items; i++) { - tmp = strdup(database[i][NAME]); - if( strstr( strupper(tmp), strupper(str) ) != NULL ) { - if( !j ) - putchar('\n'); - muttq_print_item(i); - j++; - } - free(tmp); - } +/* + * end of CLI + */ - return j; -} -static int -mutt_query_email(char *str) +static void +quit_mutt_query(int status) { - int i, j, k; - char *tmp, emails[MAX_EMAILS][MAX_EMAIL_LEN]; - - for(i = 0, j = 0; i < items; i++) { - split_emailstr(i, emails); - for(k = 0; k < MAX_EMAILS; k++) { - if( *emails[k] ) { - tmp = strdup( emails[k] ); - if( strstr( strupper(tmp), strupper(str) ) != NULL ) { - if( !j ) - putchar('\n'); - j++; - if( options_get_int("mutt_return_all_emails") ) { - muttq_print_item(i); - free(tmp); - break; - } else - printf("%s\t%s\n", emails[k], - database[i][NAME]); - } - free(tmp); - } - } - } + close_database(); + free_opts(); - return j; + exit(status); } static void mutt_query(char *str) { - int i; - init_mutt_query(); if( str == NULL || !strcasecmp(str, "all") ) { - printf("All items\n"); - for(i = 0; i < items; i++) - muttq_print_item(i); + export_file("muttq", "-"); } else { - if( !mutt_query_name(str) && !mutt_query_email(str) ) { + int search_fields[] = {NAME, EMAIL, NICK, -1}; + int i; + if( (i = find_item(str, 0, search_fields)) < 0 ) { printf("Not found\n"); - quit_mutt_query(1); + quit_mutt_query(EXIT_FAILURE); + } + // mutt expects a leading line containing + // a message about the query. + // Others output filter supporting query (vcard, custom) + // don't needs this. + if(!strcmp(selected_item_filter.filtname, "muttq")) + putchar('\n'); + while(i >= 0) { + e_write_item(stdout, i, selected_item_filter.func); + i = find_item(str, i + 1, search_fields); } } - quit_mutt_query(0); + quit_mutt_query(EXIT_SUCCESS); } static void init_mutt_query() { set_filenames(); - init_options(); - + init_opts(); + load_opts(rcfile); + if( load_database(datafile) ) { - printf("Cannot open database\n"); - quit_mutt_query(1); - exit(1); + printf(_("Cannot open database\n")); + quit_mutt_query(EXIT_FAILURE); + exit(EXIT_FAILURE); } } -static void -quit_mutt_query(int status) + +static char * +make_mailstr(int item) { - close_database(); - close_config(); + char email[MAX_EMAIL_LEN]; + char *ret; + char *name = strdup_printf("\"%s\"", db_name_get(item)); - exit(status); + get_first_email(email, item); + + ret = *email ? + strdup_printf("%s <%s>", name, email) : + xstrdup(name); + + free(name); + + return ret; } +void +print_stderr(int item) +{ + fprintf (stderr, "%c", '\n'); -static void -launch_mutt() + if( is_valid_item(item) ) + muttq_print_item(stderr, item); + else { + struct db_enumerator e = init_db_enumerator(ENUM_SELECTED); + db_enumerate_items(e) { + muttq_print_item(stderr, e.item); + } + } + +} + +void +launch_mutt(int item) { - int i; - char email[MAX_EMAIL_LEN]; - char *cmd; - char *tmp = options_get_str("mutt_command"); + char *cmd = NULL, *mailstr = NULL; + char *mutt_command = opt_get_str(STR_MUTT_COMMAND); - if(curitem < 0) + if(mutt_command == NULL || !*mutt_command) return; - cmd = strconcat(tmp, " '", NULL ); - - for(i=0; i < items; i++) { - if( ! selected[i] && i != curitem ) - continue; - get_first_email(email, i); - tmp = mkstr("%s \"%s\"", cmd, database[i][NAME]); - my_free(cmd); - if( *database[i][EMAIL] ) { - cmd = mkstr("%s <%s>", tmp, email); + if( is_valid_item(item) ) + mailstr = make_mailstr(item); + else { + struct db_enumerator e = init_db_enumerator(ENUM_SELECTED); + char *tmp = NULL; + db_enumerate_items(e) { + tmp = mailstr; + mailstr = tmp ? + strconcat(tmp, ",", make_mailstr(e.item), NULL): + strconcat(make_mailstr(e.item), NULL); free(tmp); - tmp = cmd; } - cmd = strconcat(tmp, " ", NULL); - free(tmp); } - tmp = mkstr("%s%c", cmd, '\''); - free(cmd); - cmd = tmp; + cmd = strconcat(mutt_command, " \'", mailstr, "\'", NULL); + free(mailstr); #ifdef DEBUG fprintf(stderr, "cmd: %s\n", cmd); #endif - system(cmd); - + system(cmd); free(cmd); - refresh_screen(); + + /* + * we need to make sure that curses settings are correct + */ + ui_init_curses(); } -static void -launch_lynx() +void +launch_wwwbrowser(int item) { char *cmd = NULL; - if(curitem < 0) + if( !is_valid_item(item) ) return; - if( database[curitem][URL] ) - cmd = mkstr("%s '%s'", - options_get_str("www_command"), - safe_str(database[curitem][URL])); + if(db_fget(item, URL)) + cmd = strdup_printf("%s '%s'", + opt_get_str(STR_WWW_COMMAND), + safe_str(db_fget(item, URL))); else return; @@ -739,100 +622,28 @@ launch_lynx() system(cmd); free(cmd); - refresh_screen(); -} - -void * -abook_malloc(size_t size) -{ - void *ptr; - if ( (ptr = malloc(size)) == NULL ) { - if(top) /* determinate if init_abook has been called */ - quit_abook(); - perror("malloc() failed"); - exit(1); - } - - return ptr; -} - -void * -abook_realloc(void *ptr, size_t size) -{ - ptr = realloc(ptr, size); - - if( size == 0 ) - return NULL; - - if( ptr == NULL ) { - if(top) /* determinate if init_abook has been called */ - quit_abook(); - perror("realloc() failed"); - exit(1); - } - - return ptr; + /* + * we need to make sure that curses settings are correct + */ + ui_init_curses(); } FILE * abook_fopen (const char *path, const char *mode) -{ +{ struct stat s; - - if( ! strchr(mode, 'r') ) - return fopen(path, mode); - - if ( (stat(path, &s)) == -1 ) - return NULL; - - return S_ISREG(s.st_mode) ? fopen(path, mode) : NULL; -} + bool stat_ok; + stat_ok = (stat(path, &s) != -1); -static void -win_changed(int i) -{ - if( can_resize ) - resize_abook(); + if(strchr(mode, 'r')) + return (stat_ok && S_ISREG(s.st_mode)) ? + fopen(path, mode) : NULL; else - should_resize = TRUE; -} - -#ifdef SIGWINCH -static void -resize_abook() -{ -#ifdef TIOCGWINSZ - struct winsize winsz; - - ioctl (0, TIOCGWINSZ, &winsz); -#ifdef DEBUG - if(winsz.ws_col >= MIN_COLS && winsz.ws_row >= MIN_LINES) { - fprintf(stderr, "Warning: COLS=%d, LINES=%d\n", winsz.ws_col, winsz.ws_row); - } -#endif - - if(winsz.ws_col >= MIN_COLS && winsz.ws_row >= MIN_LINES) { -#ifdef HAVE_RESIZETERM - resizeterm(winsz.ws_row, winsz.ws_col); -#else - COLS = winsz.ws_col; - LINES = winsz.ws_row; -#endif - } - - should_resize = FALSE; - close_list(); /* we need to recreate windows */ - init_list(); - free_windows(); - init_windows(); - refresh_screen(); - refresh(); -#endif /* TIOCGWINSZ */ + return (stat_ok && S_ISDIR(s.st_mode)) ? + NULL : fopen(path, mode); } -#endif /* SIGWINCH */ - static void convert(char *srcformat, char *srcfile, char *dstformat, char *dstfile) @@ -840,86 +651,181 @@ convert(char *srcformat, char *srcfile, char *dstformat, char *dstfile) int ret=0; if( !srcformat || !srcfile || !dstformat || !dstfile ) { - fprintf(stderr, "too few argumets to make conversion\n"); - fprintf(stderr, "try --help\n"); + fprintf(stderr, _("too few arguments to make conversion\n")); + fprintf(stderr, _("try --help\n")); } - strlower(srcformat); - strlower(dstformat); - - if( !strcmp(srcformat, dstformat) ) { - printf( "input and output formats are the same\n" - "exiting...\n"); - exit(1); +#ifndef DEBUG + if( !strcasecmp(srcformat, dstformat) ) { + printf( _("input and output formats are the same\n" + "exiting...\n")); + exit(EXIT_FAILURE); } +#endif set_filenames(); - init_options(); + init_opts(); + load_opts(rcfile); + init_standard_fields(); - switch( import(srcformat, srcfile) ) { + switch(import_file(srcformat, srcfile)) { case -1: - printf("input format %s not supported\n", srcformat); + fprintf(stderr, + _("input format %s not supported\n"), srcformat); ret = 1; + break; case 1: - printf("cannot read file %s\n", srcfile); + fprintf(stderr, _("cannot read file %s\n"), srcfile); ret = 1; + break; } if(!ret) - switch( export(dstformat, dstfile) ) { + switch(export_file(dstformat, dstfile)) { case -1: - printf("output format %s not supported\n", - dstformat); + fprintf(stderr, + _("output format %s not supported\n"), + dstformat); ret = 1; break; case 1: - printf("cannot write file %s\n", dstfile); + fprintf(stderr, + _("cannot write file %s\n"), dstfile); ret = 1; break; } close_database(); - close_config(); + free_opts(); exit(ret); } +/* + * --add-email handling + */ + +static int add_email_count = 0; static void -open_datafile() +quit_add_email() { - char *filename; + if(add_email_count > 0) { + if(save_database() < 0) { + fprintf(stderr, _("cannot open %s\n"), datafile); + exit(EXIT_FAILURE); + } + printf(_("%d item(s) added to %s\n"), add_email_count, datafile); + } else { + puts(_("Valid sender address not found")); + } - filename = ask_filename("File to open: ", 1); + exit(EXIT_SUCCESS); +} - if( !filename ) { - refresh_screen(); - return; +static void +quit_add_email_sig(int signal) +{ + quit_add_email(); +} + +static void +init_add_email() +{ + set_filenames(); + check_abook_directory(); + init_opts(); + load_opts(rcfile); + init_standard_fields(); + atexit(free_opts); + + /* + * we don't actually care if loading fails or not + */ + load_database(datafile); + + atexit(close_database); + + signal(SIGINT, quit_add_email_sig); +} + +static int +add_email_add_item(int quiet, char *name, char *email) +{ + list_item item; + + if(opt_get_bool(BOOL_ADD_EMAIL_PREVENT_DUPLICATES)) { + int search_fields[] = { EMAIL, -1 }; + if(find_item(email, 0, search_fields) >= 0) { + if(!quiet) + printf(_("Address %s already in addressbook\n"), + email); + return 0; + } } - if( options_get_int("autosave") ) - save_database(); - else { - statusline_addstr("Save current database (y/N)"); - switch( getch() ) { - case 'y': - case 'Y': - save_database(); - default: break; + if(!quiet) { + FILE *in = fopen("/dev/tty", "r"); + char c; + if(!in) { + fprintf(stderr, _("cannot open /dev/tty\n" + "you may want to use --add-email-quiet\n")); + exit(EXIT_FAILURE); } + + do { + printf(_("Add \"%s <%s>\" to %s? (%c/%c)\n"), + name, + email, + datafile, + *S_("keybinding for yes|y"), + *S_("keybinding for no|n")); + c = tolower(getc(in)); + if(c == *S_("keybinding for no|n")) { + fclose(in); + return 0; + } + } while(c != *S_("keybinding for yes|y")); + fclose(in); } - close_database(); + item = item_create(); + item_fput(item, NAME, xstrdup(name)); + item_fput(item, EMAIL, xstrdup(email)); + add_item2database(item); + item_free(&item); - load_database(filename); + return 1; +} - if( items == 0 ) { - statusline_msg("Sorry, that specified file appears not to be a valid abook addressbook"); - load_database(datafile); - } else { - free(datafile); - datafile = strdup(filename); +static void +add_email(int quiet) +{ + char *line; + char *name = NULL, *email = NULL; + struct stat s; + + if( (fstat(fileno(stdin), &s)) == -1 || S_ISDIR(s.st_mode) ) { + fprintf(stderr, _("stdin is a directory or cannot stat stdin\n")); + exit(EXIT_FAILURE); } - refresh_screen(); - free(filename); + init_add_email(); + + do { + line = getaline(stdin); + if(line && !strncasecmp("From:", line, 5) ) { + getname(line, &name, &email); + add_email_count += add_email_add_item(quiet, + name, email); + xfree(name); + xfree(email); + } + xfree(line); + } while( !feof(stdin) ); + + quit_add_email(); } + +/* + * end of --add-email handling + */