2010-07-11 15:06:30 +02:00
|
|
|
<?php
|
2017-04-21 16:04:29 +02:00
|
|
|
/**
|
|
|
|
* @file mod/group.php
|
|
|
|
* @brief The group module (create and rename contact groups, add and
|
|
|
|
* remove contacts to the contact groups
|
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2010-07-11 15:06:30 +02:00
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function group_init(App $a) {
|
2017-04-21 16:04:29 +02:00
|
|
|
if (local_user()) {
|
|
|
|
require_once 'include/group.php';
|
|
|
|
$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
|
|
|
}
|
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function group_post(App $a) {
|
2010-07-11 15:06:30 +02:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2017-04-21 16:04:29 +02:00
|
|
|
notice(t('Permission denied.') . EOL);
|
2010-07-11 15:06:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-04-21 16:04:29 +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']));
|
2017-04-21 16:04:29 +02:00
|
|
|
$r = group_add(local_user(), $name);
|
2016-12-20 21:15:53 +01:00
|
|
|
if ($r) {
|
2017-04-21 16:04:29 +02:00
|
|
|
info(t('Group created.') . EOL);
|
|
|
|
$r = group_byname(local_user(), $name);
|
2016-12-20 11:04:29 +01:00
|
|
|
if ($r) {
|
2016-12-19 14:26:13 +01:00
|
|
|
goaway(App::get_baseurl() . '/group/' . $r);
|
2016-12-20 11:04:29 +01:00
|
|
|
}
|
2016-12-19 14:26:13 +01:00
|
|
|
} else {
|
2017-04-21 16:04:29 +02:00
|
|
|
notice(t('Could not create group.') . EOL);
|
2016-12-20 11:04:29 +01:00
|
|
|
}
|
2016-12-19 14:26:13 +01:00
|
|
|
goaway(App::get_baseurl() . '/group');
|
2010-07-11 15:06:30 +02:00
|
|
|
return; // NOTREACHED
|
|
|
|
}
|
2016-12-20 11:04:29 +01: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
|
|
|
);
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2017-04-21 16:04:29 +02:00
|
|
|
notice(t('Group not found.') . EOL);
|
2016-12-19 14:26:13 +01:00
|
|
|
goaway(App::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']));
|
2016-12-20 11:04:29 +01:00
|
|
|
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'])
|
|
|
|
);
|
2016-12-20 11:04:29 +01:00
|
|
|
|
|
|
|
if ($r) {
|
2017-04-21 16:04:29 +02:00
|
|
|
info(t('Group name changed.') . EOL);
|
2016-12-20 11:04:29 +01:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2017-01-09 13:12:54 +01:00
|
|
|
function group_content(App $a) {
|
2012-03-18 16:44:33 +01:00
|
|
|
$change = false;
|
2015-11-08 16:41:00 +01:00
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if (! local_user()) {
|
2017-04-21 16:04:29 +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
|
|
|
|
2017-04-21 16:04:29 +02:00
|
|
|
$switchtotext = get_pconfig(local_user(), 'system', 'groupedit_image_limit');
|
|
|
|
if ($switchtotext === false) {
|
|
|
|
$switchtotext = get_config('system', 'groupedit_image_limit');
|
|
|
|
}
|
|
|
|
if ($switchtotext === false) {
|
2011-06-30 05:42:16 +02:00
|
|
|
$switchtotext = 400;
|
2017-04-21 16:04:29 +02:00
|
|
|
}
|
2011-06-30 05:42:16 +02:00
|
|
|
|
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
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
|
2012-02-23 16:17:36 +01:00
|
|
|
return replace_macros($tpl, $context + array(
|
|
|
|
'$title' => t('Create a group of contacts/friends.'),
|
2017-04-21 16:04:29 +02: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
|
|
|
));
|
2017-03-21 17:02:59 +01:00
|
|
|
|
|
|
|
|
2010-07-13 08:08:07 +02:00
|
|
|
}
|
2010-08-11 13:14:47 +02:00
|
|
|
|
2016-12-20 11:21:32 +01: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
|
|
|
|
2016-12-20 11:21:32 +01: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
|
|
|
);
|
2016-12-20 11:21:32 +01:00
|
|
|
|
|
|
|
$result = null;
|
|
|
|
|
|
|
|
if (dbm::is_result($r)) {
|
2017-04-21 16:04:29 +02:00
|
|
|
$result = group_rmv(local_user(), $r[0]['name']);
|
2016-12-20 11:21:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($result) {
|
2017-04-21 16:04:29 +02:00
|
|
|
info(t('Group removed.') . EOL);
|
2016-12-20 11:21:32 +01:00
|
|
|
} else {
|
2017-04-21 16:04:29 +02:00
|
|
|
notice(t('Unable to remove group.') . EOL);
|
2016-12-20 11:21:32 +01:00
|
|
|
}
|
2010-08-11 10:48:43 +02:00
|
|
|
}
|
2016-12-19 14:26:13 +01:00
|
|
|
goaway(App::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
|
|
|
|
2016-12-20 11:21:32 +01: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())
|
|
|
|
);
|
2017-04-21 16:04:29 +02:00
|
|
|
if (dbm::is_result($r)) {
|
2011-04-12 14:37:26 +02:00
|
|
|
$change = intval($a->argv[2]);
|
2017-04-21 16:04:29 +02:00
|
|
|
}
|
2011-04-12 14:37:26 +02:00
|
|
|
}
|
|
|
|
|
2016-12-20 11:21:32 +01:00
|
|
|
if (($a->argc > 1) && (intval($a->argv[1]))) {
|
2017-04-21 16:04:29 +02:00
|
|
|
require_once 'include/acl_selectors.php';
|
|
|
|
require_once 'mod/contacts.php';
|
2010-07-13 11:26:28 +02:00
|
|
|
|
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
|
|
|
);
|
2017-04-21 16:04:29 +02:00
|
|
|
|
2016-12-20 10:10:33 +01:00
|
|
|
if (! dbm::is_result($r)) {
|
2017-04-21 16:04:29 +02:00
|
|
|
notice(t('Group not found.') . EOL);
|
2016-12-19 14:26:13 +01:00
|
|
|
goaway(App::get_baseurl() . '/contacts');
|
2010-07-13 08:08:07 +02:00
|
|
|
}
|
2017-04-21 16:04:29 +02:00
|
|
|
|
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();
|
2017-04-21 16:04:29 +02:00
|
|
|
$entry = array();
|
|
|
|
$id = 0;
|
|
|
|
|
|
|
|
if (count($members)) {
|
|
|
|
foreach ($members as $member) {
|
2011-04-12 07:47:16 +02:00
|
|
|
$preselected[] = $member['id'];
|
2017-04-21 16:04:29 +02:00
|
|
|
}
|
2010-07-13 08:08:07 +02:00
|
|
|
}
|
2010-07-13 11:26:28 +02:00
|
|
|
|
2017-04-21 16:04:29 +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);
|
2011-04-12 14:37:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$members = group_get_members($group['id']);
|
|
|
|
$preselected = array();
|
2017-04-21 16:04:29 +02:00
|
|
|
if (count($members)) {
|
|
|
|
foreach ($members as $member) {
|
2011-04-12 14:37:26 +02:00
|
|
|
$preselected[] = $member['id'];
|
2017-04-21 16:04:29 +02:00
|
|
|
}
|
2011-04-12 14:37:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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'],
|
2017-04-21 16:04:29 +02:00
|
|
|
'$delete' => t('Delete Group'),
|
2012-03-18 16:44:33 +01:00
|
|
|
'$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'),
|
2017-04-21 16:04:29 +02:00
|
|
|
'$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'),
|
2017-04-21 16:04:29 +02:00
|
|
|
'$edit_name' => t('Edit Group Name')
|
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
|
|
|
|
2017-04-21 16:04:29 +02:00
|
|
|
if (! isset($group)) {
|
2011-05-16 01:36:49 +02:00
|
|
|
return;
|
2017-04-21 16:04:29 +02:00
|
|
|
}
|
2011-05-16 01:36:49 +02:00
|
|
|
|
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'));
|
2017-04-21 16:04:29 +02:00
|
|
|
|
|
|
|
// Format the data of the group members
|
|
|
|
foreach ($members as $member) {
|
|
|
|
if ($member['url']) {
|
|
|
|
$entry = _contact_detail_for_template($member);
|
|
|
|
$entry['label'] = 'members';
|
|
|
|
$entry['photo_menu'] = '';
|
|
|
|
$entry['change_member'] = array(
|
|
|
|
'title' => t("Remove Contact"),
|
|
|
|
'gid' => $group['id'],
|
|
|
|
'cid' => $member['id'],
|
|
|
|
'sec_token' => $sec_token
|
2017-04-08 23:46:59 +02:00
|
|
|
);
|
2017-04-21 16:04:29 +02:00
|
|
|
|
|
|
|
$groupeditor['members'][] = $entry;
|
|
|
|
} else {
|
|
|
|
group_rmv_member(local_user(), $group['name'], $member['id']);
|
2017-01-26 15:23:30 +01:00
|
|
|
}
|
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
|
|
|
|
2016-12-14 09:41:33 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2017-04-21 16:04:29 +02:00
|
|
|
// Format the data of the contacts who aren't in the contact group
|
|
|
|
foreach ($r as $member) {
|
|
|
|
if (! in_array($member['id'], $preselected)) {
|
|
|
|
$entry = _contact_detail_for_template($member);
|
|
|
|
$entry['label'] = 'contacts';
|
|
|
|
$entry['photo_menu'] = '';
|
|
|
|
$entry['change_member'] = array(
|
|
|
|
'title' => t("Add Contact"),
|
|
|
|
'gid' => $group['id'],
|
|
|
|
'cid' => $member['id'],
|
|
|
|
'sec_token' => $sec_token
|
|
|
|
);
|
|
|
|
|
|
|
|
$groupeditor['contacts'][] = $entry;
|
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
|
|
|
|
2017-04-21 16:04:29 +02:00
|
|
|
// If there are to many contacts we could provide an alternative view mode
|
|
|
|
$total = count($groupeditor['members']) + count($groupeditor['contacts']);
|
|
|
|
$context['$shortmode'] = (($switchtotext && ($total > $switchtotext)) ? true : false);
|
|
|
|
|
|
|
|
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);
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-04-12 14:37:26 +02:00
|
|
|
}
|