diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-04 03:31:26 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-04 03:31:26 +0200 |
commit | efa7ac2eef94614ed6e8481b57b00cf25239581b (patch) | |
tree | 94efbb77a19adf478522014f314edf5ff51a8eca /add-contact.c | |
parent | m + add chat utils (diff) | |
download | contacts-efa7ac2eef94614ed6e8481b57b00cf25239581b.tar.gz contacts-efa7ac2eef94614ed6e8481b57b00cf25239581b.tar.bz2 contacts-efa7ac2eef94614ed6e8481b57b00cf25239581b.tar.xz |
misc
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'add-contact.c')
-rw-r--r-- | add-contact.c | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/add-contact.c b/add-contact.c new file mode 100644 index 0000000..5a1b68c --- /dev/null +++ b/add-contact.c @@ -0,0 +1,46 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + +USAGE("[contact-id]"); + + +int +main(int argc, char *argv[]) +{ + struct passwd *user; + struct libcontacts_contact contact; + char *path; + int fd; + + NOFLAGS(argc > 1); + + if (argc && (!*argv[0] || strchr(argv[0], '/'))) + usage(); + + errno = 0; + user = getpwuid(getuid()); + if (!user) + eprintf("getpwuid: %s\n", errno ? strerror(errno) : "user does not exist"); + + if (argc) { + path = libcontacts_get_path(argv[0], user); + if (!path) + eprintf("libcontacts_get_path %s:", argv[0]); + fd = open(path, O_WRONLY | O_CREAT | O_EXCL, 0666); + if (fd < 0) + eprintf("open %s O_WRONLY|O_CREAT|O_EXCL 0666:", path); + if (close(fd)) + eprintf("close %s:", path); + free(path); + } else { + memset(&contact, 0, sizeof(contact)); + if (libcontacts_save_contact(&contact, user)) + eprintf("libcontacts_save_contact:"); + printf("%s\n", contact.id); + if (fflush(stdout) || ferror(stdout) || fclose(stdout)) + eprintf("printf:"); + free(contact.id); + } + + return 0; +} |