streams/mod/contactgroup.php

49 lines
1 KiB
PHP
Raw Normal View History

<?php
require_once('include/group.php');
function contactgroup_content(&$a) {
2015-01-29 04:56:04 +00:00
if(! local_channel()) {
killme();
}
2013-01-23 04:13:20 +00:00
if((argc() > 2) && (intval(argv(1))) && (argv(2))) {
2015-06-15 04:08:00 +00:00
$r = q("SELECT abook_xchan from abook where abook_xchan = '%s' and abook_channel = %d and abook_self = 0 limit 1",
dbesc(base64url_decode(argv(2))),
2015-06-15 04:08:00 +00:00
intval(local_channel())
);
2013-01-23 04:13:20 +00:00
if($r)
$change = $r[0]['abook_xchan'];
}
2013-01-23 04:13:20 +00:00
if((argc() > 1) && (intval(argv(1)))) {
$r = q("SELECT * FROM `groups` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
2013-01-23 04:13:20 +00:00
intval(argv(1)),
2015-01-29 04:56:04 +00:00
intval(local_channel())
);
2013-01-23 04:13:20 +00:00
if(! $r) {
killme();
}
$group = $r[0];
$members = group_get_members($group['id']);
$preselected = array();
if(count($members)) {
foreach($members as $member)
2013-01-23 04:13:20 +00:00
$preselected[] = $member['xchan_hash'];
}
if($change) {
if(in_array($change,$preselected)) {
2015-01-29 04:56:04 +00:00
group_rmv_member(local_channel(),$group['name'],$change);
}
else {
2015-01-29 04:56:04 +00:00
group_add_member(local_channel(),$group['name'],$change);
}
}
}
killme();
}