2010-07-11 15:06:30 +02:00
|
|
|
<?php
|
|
|
|
|
2010-07-13 13:05:23 +02:00
|
|
|
function validate_members(&$item) {
|
|
|
|
$item = intval($item);
|
|
|
|
}
|
2010-07-11 15:06:30 +02:00
|
|
|
|
|
|
|
function group_init(&$a) {
|
2010-09-09 05:14:17 +02:00
|
|
|
if(local_user()) {
|
|
|
|
require_once('include/group.php');
|
2015-11-28 20:09:28 +01:00
|
|
|
$a->page['aside'] = group_side('contacts','group','extended',(($a->argc > 1) ? intval($a->argv[1]) : 0));
|
2010-09-09 05:14:17 +02:00
|
|
|
}
|
2010-07-11 15:06:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function group_post(&$a) {
|
|
|
|
|
|
|
|
if(! local_user()) {
|
2010-08-11 10:48:43 +02:00
|
|
|
notice( t('Permission denied.') . EOL);
|
2010-07-11 15:06:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc == 2) && ($a->argv[1] === 'new')) {
|
2012-03-18 16:44:33 +01:00
|
|
|
check_form_security_token_redirectOnErr('/group/new', 'group_edit');
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2010-07-11 15:06:30 +02:00
|
|
|
$name = notags(trim($_POST['groupname']));
|
2010-10-18 23:34:59 +02:00
|
|
|
$r = group_add(local_user(),$name);
|
2010-07-11 15:06:30 +02:00
|
|
|
if($r) {
|
2011-05-23 11:39:57 +02:00
|
|
|
info( t('Group created.') . EOL );
|
2010-10-18 23:34:59 +02:00
|
|
|
$r = group_byname(local_user(),$name);
|
2010-07-11 15:06:30 +02:00
|
|
|
if($r)
|
|
|
|
goaway($a->get_baseurl() . '/group/' . $r);
|
|
|
|
}
|
|
|
|
else
|
2014-03-11 23:52:32 +01:00
|
|
|
notice( t('Could not create group.') . EOL );
|
2010-07-13 13:18:57 +02:00
|
|
|
goaway($a->get_baseurl() . '/group');
|
2010-07-11 15:06:30 +02:00
|
|
|
return; // NOTREACHED
|
|
|
|
}
|
2010-07-13 13:05:23 +02:00
|
|
|
if(($a->argc == 2) && (intval($a->argv[1]))) {
|
2012-03-18 16:44:33 +01:00
|
|
|
check_form_security_token_redirectOnErr('/group', 'group_edit');
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2010-07-13 13:05:23 +02:00
|
|
|
$r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($a->argv[1]),
|
2010-10-18 23:34:59 +02:00
|
|
|
intval(local_user())
|
2010-07-13 13:05:23 +02:00
|
|
|
);
|
|
|
|
if(! count($r)) {
|
2010-08-11 10:48:43 +02:00
|
|
|
notice( t('Group not found.') . EOL );
|
2010-07-13 13:05:23 +02:00
|
|
|
goaway($a->get_baseurl() . '/contacts');
|
2010-09-09 05:14:17 +02:00
|
|
|
return; // NOTREACHED
|
2010-07-13 13:05:23 +02:00
|
|
|
}
|
|
|
|
$group = $r[0];
|
|
|
|
$groupname = notags(trim($_POST['groupname']));
|
|
|
|
if((strlen($groupname)) && ($groupname != $group['name'])) {
|
2014-03-11 23:52:32 +01:00
|
|
|
$r = q("UPDATE `group` SET `name` = '%s' WHERE `uid` = %d AND `id` = %d",
|
2010-07-13 13:05:23 +02:00
|
|
|
dbesc($groupname),
|
2010-10-18 23:34:59 +02:00
|
|
|
intval(local_user()),
|
2010-07-13 13:05:23 +02:00
|
|
|
intval($group['id'])
|
|
|
|
);
|
2010-07-13 13:18:57 +02:00
|
|
|
if($r)
|
2011-05-23 11:39:57 +02:00
|
|
|
info( t('Group name changed.') . EOL );
|
2010-07-13 13:05:23 +02:00
|
|
|
}
|
2011-04-12 14:37:26 +02:00
|
|
|
|
2010-09-09 05:14:17 +02:00
|
|
|
$a->page['aside'] = group_side();
|
2010-07-13 13:05:23 +02:00
|
|
|
}
|
2015-11-08 16:41:00 +01:00
|
|
|
return;
|
2010-07-11 15:06:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function group_content(&$a) {
|
2012-03-18 16:44:33 +01:00
|
|
|
$change = false;
|
2015-11-08 16:41:00 +01:00
|
|
|
|
2010-07-11 15:06:30 +02:00
|
|
|
if(! local_user()) {
|
2010-08-11 10:48:43 +02:00
|
|
|
notice( t('Permission denied') . EOL);
|
2010-07-11 15:06:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-02-22 01:59:57 +01:00
|
|
|
// Switch to text mode interface if we have more than 'n' contacts or group members
|
2011-06-30 05:42:16 +02:00
|
|
|
|
|
|
|
$switchtotext = get_pconfig(local_user(),'system','groupedit_image_limit');
|
|
|
|
if($switchtotext === false)
|
|
|
|
$switchtotext = get_config('system','groupedit_image_limit');
|
|
|
|
if($switchtotext === false)
|
|
|
|
$switchtotext = 400;
|
|
|
|
|
2012-02-23 16:17:36 +01:00
|
|
|
$tpl = get_markup_template('group_edit.tpl');
|
2012-12-22 20:57:29 +01:00
|
|
|
|
2012-12-25 19:48:02 +01:00
|
|
|
$context = array(
|
2013-11-17 15:33:07 +01:00
|
|
|
'$submit' => t('Save Group'),
|
2012-12-22 20:57:29 +01:00
|
|
|
);
|
2012-02-23 16:17:36 +01:00
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc == 2) && ($a->argv[1] === 'new')) {
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2012-02-23 16:17:36 +01:00
|
|
|
return replace_macros($tpl, $context + array(
|
|
|
|
'$title' => t('Create a group of contacts/friends.'),
|
2012-03-18 16:44:33 +01:00
|
|
|
'$gname' => array('groupname',t('Group Name: '), '', ''),
|
2012-03-02 15:40:17 +01:00
|
|
|
'$gid' => 'new',
|
2012-03-18 16:44:33 +01:00
|
|
|
'$form_security_token' => get_form_security_token("group_edit"),
|
2012-02-23 16:17:36 +01:00
|
|
|
));
|
|
|
|
|
|
|
|
|
2010-07-13 08:08:07 +02:00
|
|
|
}
|
2010-08-11 13:14:47 +02:00
|
|
|
|
2010-09-27 02:24:20 +02:00
|
|
|
if(($a->argc == 3) && ($a->argv[1] === 'drop')) {
|
2012-03-18 16:44:33 +01:00
|
|
|
check_form_security_token_redirectOnErr('/group', 'group_drop', 't');
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2010-08-11 13:14:47 +02:00
|
|
|
if(intval($a->argv[2])) {
|
2010-08-11 10:48:43 +02:00
|
|
|
$r = q("SELECT `name` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
|
2010-08-11 13:14:47 +02:00
|
|
|
intval($a->argv[2]),
|
2010-10-18 23:34:59 +02:00
|
|
|
intval(local_user())
|
2010-08-11 10:48:43 +02:00
|
|
|
);
|
2014-03-11 23:52:32 +01:00
|
|
|
if(count($r))
|
2010-10-18 23:34:59 +02:00
|
|
|
$result = group_rmv(local_user(),$r[0]['name']);
|
2010-08-11 10:48:43 +02:00
|
|
|
if($result)
|
2011-05-23 11:39:57 +02:00
|
|
|
info( t('Group removed.') . EOL);
|
2010-08-11 10:48:43 +02:00
|
|
|
else
|
|
|
|
notice( t('Unable to remove group.') . EOL);
|
|
|
|
}
|
|
|
|
goaway($a->get_baseurl() . '/group');
|
2011-05-16 01:36:49 +02:00
|
|
|
// NOTREACHED
|
2010-08-11 10:48:43 +02:00
|
|
|
}
|
2010-07-13 11:26:28 +02:00
|
|
|
|
2011-04-12 14:37:26 +02:00
|
|
|
if(($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
|
2012-03-18 16:44:33 +01:00
|
|
|
check_form_security_token_ForbiddenOnErr('group_member_change', 't');
|
2014-03-11 23:52:32 +01:00
|
|
|
|
2011-04-12 14:37:26 +02:00
|
|
|
$r = q("SELECT `id` FROM `contact` WHERE `id` = %d AND `uid` = %d and `self` = 0 and `blocked` = 0 AND `pending` = 0 LIMIT 1",
|
|
|
|
intval($a->argv[2]),
|
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
if(count($r))
|
|
|
|
$change = intval($a->argv[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(($a->argc > 1) && (intval($a->argv[1]))) {
|
2010-07-13 11:26:28 +02:00
|
|
|
|
2010-11-16 06:02:59 +01:00
|
|
|
require_once('include/acl_selectors.php');
|
2011-05-16 01:36:49 +02:00
|
|
|
$r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
|
2010-07-13 08:08:07 +02:00
|
|
|
intval($a->argv[1]),
|
2010-10-18 23:34:59 +02:00
|
|
|
intval(local_user())
|
2010-07-13 08:08:07 +02:00
|
|
|
);
|
|
|
|
if(! count($r)) {
|
2010-09-09 05:14:17 +02:00
|
|
|
notice( t('Group not found.') . EOL );
|
2010-07-13 08:08:07 +02:00
|
|
|
goaway($a->get_baseurl() . '/contacts');
|
|
|
|
}
|
2010-07-13 11:26:28 +02:00
|
|
|
$group = $r[0];
|
2011-04-12 07:47:16 +02:00
|
|
|
$members = group_get_members($group['id']);
|
2010-07-13 08:08:07 +02:00
|
|
|
$preselected = array();
|
2011-04-12 07:47:16 +02:00
|
|
|
if(count($members)) {
|
|
|
|
foreach($members as $member)
|
|
|
|
$preselected[] = $member['id'];
|
2010-07-13 08:08:07 +02:00
|
|
|
}
|
2010-07-13 11:26:28 +02:00
|
|
|
|
2011-04-12 14:37:26 +02:00
|
|
|
if($change) {
|
|
|
|
if(in_array($change,$preselected)) {
|
|
|
|
group_rmv_member(local_user(),$group['name'],$change);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
group_add_member(local_user(),$group['name'],$change);
|
|
|
|
}
|
|
|
|
|
|
|
|
$members = group_get_members($group['id']);
|
|
|
|
$preselected = array();
|
|
|
|
if(count($members)) {
|
|
|
|
foreach($members as $member)
|
|
|
|
$preselected[] = $member['id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$drop_tpl = get_markup_template('group_drop.tpl');
|
2010-08-11 10:48:43 +02:00
|
|
|
$drop_txt = replace_macros($drop_tpl, array(
|
|
|
|
'$id' => $group['id'],
|
2012-03-18 16:44:33 +01:00
|
|
|
'$delete' => t('Delete'),
|
|
|
|
'$form_security_token' => get_form_security_token("group_drop"),
|
2010-08-11 10:48:43 +02:00
|
|
|
));
|
|
|
|
|
2015-11-08 16:41:00 +01:00
|
|
|
|
2012-02-23 16:17:36 +01:00
|
|
|
$context = $context + array(
|
|
|
|
'$title' => t('Group Editor'),
|
|
|
|
'$gname' => array('groupname',t('Group Name: '),$group['name'], ''),
|
2010-07-13 11:26:28 +02:00
|
|
|
'$gid' => $group['id'],
|
2010-08-11 10:48:43 +02:00
|
|
|
'$drop' => $drop_txt,
|
2012-03-18 16:44:33 +01:00
|
|
|
'$form_security_token' => get_form_security_token('group_edit'),
|
2012-02-23 16:17:36 +01:00
|
|
|
);
|
2010-07-13 11:26:28 +02:00
|
|
|
|
2010-07-13 08:08:07 +02:00
|
|
|
}
|
2011-04-12 07:47:16 +02:00
|
|
|
|
2011-05-16 01:36:49 +02:00
|
|
|
if(! isset($group))
|
|
|
|
return;
|
|
|
|
|
2012-02-23 16:17:36 +01:00
|
|
|
$groupeditor = array(
|
|
|
|
'label_members' => t('Members'),
|
|
|
|
'members' => array(),
|
|
|
|
'label_contacts' => t('All Contacts'),
|
2015-12-05 23:29:42 +01:00
|
|
|
'group_is_empty' => t('Group is empty'),
|
2012-03-18 16:44:33 +01:00
|
|
|
'contacts' => array(),
|
2012-02-23 16:17:36 +01:00
|
|
|
);
|
2015-11-08 16:41:00 +01:00
|
|
|
|
2012-03-18 16:44:33 +01:00
|
|
|
$sec_token = addslashes(get_form_security_token('group_member_change'));
|
2011-06-30 05:42:16 +02:00
|
|
|
$textmode = (($switchtotext && (count($members) > $switchtotext)) ? true : false);
|
2011-04-12 07:47:16 +02:00
|
|
|
foreach($members as $member) {
|
2011-04-12 14:37:26 +02:00
|
|
|
if($member['url']) {
|
2012-03-18 16:44:33 +01:00
|
|
|
$member['click'] = 'groupChangeMember(' . $group['id'] . ',' . $member['id'] . ',\'' . $sec_token . '\'); return true;';
|
2012-02-23 16:17:36 +01:00
|
|
|
$groupeditor['members'][] = micropro($member,true,'mpgroup', $textmode);
|
2011-04-12 14:37:26 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
group_rmv_member(local_user(),$group['name'],$member['id']);
|
2011-04-12 07:47:16 +02:00
|
|
|
}
|
2011-04-12 10:31:55 +02:00
|
|
|
|
2015-12-05 23:29:42 +01:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `self` ORDER BY `name` ASC",
|
2012-02-23 16:17:36 +01:00
|
|
|
intval(local_user())
|
|
|
|
);
|
2011-04-12 10:31:55 +02:00
|
|
|
|
2012-02-23 16:17:36 +01:00
|
|
|
if(count($r)) {
|
|
|
|
$textmode = (($switchtotext && (count($r) > $switchtotext)) ? true : false);
|
|
|
|
foreach($r as $member) {
|
|
|
|
if(! in_array($member['id'],$preselected)) {
|
2012-03-18 16:44:33 +01:00
|
|
|
$member['click'] = 'groupChangeMember(' . $group['id'] . ',' . $member['id'] . ',\'' . $sec_token . '\'); return true;';
|
2012-02-23 16:17:36 +01:00
|
|
|
$groupeditor['contacts'][] = micropro($member,true,'mpall', $textmode);
|
2011-04-12 10:31:55 +02:00
|
|
|
}
|
|
|
|
}
|
2012-02-23 16:17:36 +01:00
|
|
|
}
|
2011-04-12 10:31:55 +02:00
|
|
|
|
2013-01-12 13:58:54 +01:00
|
|
|
$context['$groupeditor'] = $groupeditor;
|
2012-02-23 16:17:36 +01:00
|
|
|
$context['$desc'] = t('Click on a contact to add or remove.');
|
2011-04-12 07:47:16 +02:00
|
|
|
|
2011-04-12 14:37:26 +02:00
|
|
|
if($change) {
|
2012-02-23 16:17:36 +01:00
|
|
|
$tpl = get_markup_template('groupeditor.tpl');
|
|
|
|
echo replace_macros($tpl, $context);
|
2011-04-12 14:37:26 +02:00
|
|
|
killme();
|
|
|
|
}
|
2015-11-08 16:41:00 +01:00
|
|
|
|
2012-02-23 16:17:36 +01:00
|
|
|
return replace_macros($tpl, $context);
|
2010-07-11 15:06:30 +02:00
|
|
|
|
2011-04-12 14:37:26 +02:00
|
|
|
}
|