aboutsummaryrefslogtreecommitdiffstats
path: root/mod/contactgroup.php
blob: cac02a65d17fd0111fb2404a046a28b62c45610f (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
47
48
49
50
<?php

require_once('include/group.php');

function contactgroup_content(&$a) {

	if(! local_user()) {
		killme();
	}

	if((argc() > 2) && (intval(argv(1))) && (argv(2))) {
		$r = q("SELECT abook_xchan from abook where abook_xchan = '%s' and abook_channel = %d and not ( abook_flags & %d ) limit 1",
			dbesc(base64url_decode(argv(2))),
			intval(local_user()),
			intval(ABOOK_FLAG_SELF)
		);
		if($r)
			$change = $r[0]['abook_xchan'];
	}

	if((argc() > 1) && (intval(argv(1)))) {

		$r = q("SELECT * FROM `groups` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
			intval(argv(1)),
			intval(local_user())
		);
		if(! $r) {
			killme();
		}

		$group = $r[0];
		$members = group_get_members($group['id']);
		$preselected = array();
		if(count($members))	{
			foreach($members as $member)
				$preselected[] = $member['xchan_hash'];
		}

		if($change) {
			if(in_array($change,$preselected)) {
				group_rmv_member(local_user(),$group['name'],$change);
			}
			else {
				group_add_member(local_user(),$group['name'],$change);
			}
		}
	}

	killme();
}