aboutsummaryrefslogtreecommitdiffstats
path: root/add-contact.c
blob: 5a1b68cdc8495d64c13afe6f7ce101e2ab483bab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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;
}