aboutsummaryrefslogtreecommitdiffstats
path: root/list-group-contacts.c
blob: 2ec6c4c8bb1e38308cecd137117b421e59505c4b (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("group ...");


int
main(int argc, char *argv[])
{
	struct passwd *user;
	struct libcontacts_contact **contacts;
	char **groups;
	int ret = 0;
	size_t i, j;

	NOFLAGS(!argc);

	errno = 0;
	user = getpwuid(getuid());
	if (!user)
		eprintf("getpwuid: %s\n", errno ? strerror(errno) : "user does not exist");

	if (libcontacts_load_contacts(&contacts, user, 0))
		eprintf("libcontacts_load_contacts:");
	for (i = 0; contacts[i]; i++) {
		if ((groups = contacts[i]->groups)) {
			for (; *groups; groups++) {
				for (j = 0; argv[j]; j++) {
					if (!strcmp(*groups, argv[j])) {
						printf("%s\n", contacts[i]->id);
						goto done;
					}
				}
			}
		}
	done:
		libcontacts_contact_destroy(contacts[i]);
		free(contacts[i]);
	}
	free(contacts);

	if (fflush(stdout) || ferror(stdout) || fclose(stdout))
		eprintf("printf:");

	return ret;
}