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