friendica/mod/group.php

315 lines
7.9 KiB
PHP
Raw Normal View History

2010-07-11 15:06:30 +02:00
<?php
/**
* @file mod/group.php
* @brief The group module (create and rename contact groups, add and
* remove contacts to the contact groups
*/
use Friendica\App;
use Friendica\Core\Config;
2018-01-21 19:33:59 +01:00
use Friendica\Core\L10n;
use Friendica\Core\PConfig;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Database\DBA;
2018-10-13 11:23:52 +02:00
use Friendica\Model;
use Friendica\Module;
2010-07-11 15:06:30 +02:00
function group_init(App $a) {
if (local_user()) {
$a->page['aside'] = Group::sidebarWidget('contacts', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone'));
2010-09-09 05:14:17 +02:00
}
2010-07-11 15:06:30 +02:00
}
function group_post(App $a) {
2010-07-11 15:06:30 +02:00
if (!local_user()) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2010-07-11 15:06:30 +02:00
return;
}
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
check_form_security_token_redirectOnErr('/group/new', 'group_edit');
2010-07-11 15:06:30 +02:00
$name = notags(trim($_POST['groupname']));
2017-12-09 19:45:17 +01:00
$r = Group::create(local_user(), $name);
if ($r) {
info(L10n::t('Group created.') . EOL);
2017-12-09 19:45:17 +01:00
$r = Group::getIdByName(local_user(), $name);
if ($r) {
goaway(System::baseUrl() . '/group/' . $r);
}
} else {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Could not create group.') . EOL);
}
goaway(System::baseUrl() . '/group');
2010-07-11 15:06:30 +02:00
return; // NOTREACHED
}
if (($a->argc == 2) && intval($a->argv[1])) {
check_form_security_token_redirectOnErr('/group', 'group_edit');
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 (!DBA::isResult($r)) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Group not found.') . EOL);
goaway(System::baseUrl() . '/contact');
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'])) {
$r = q("UPDATE `group` SET `name` = '%s' WHERE `uid` = %d AND `id` = %d",
2018-07-21 15:10:13 +02:00
DBA::escape($groupname),
2010-10-18 23:34:59 +02:00
intval(local_user()),
2010-07-13 13:05:23 +02:00
intval($group['id'])
);
if ($r) {
info(L10n::t('Group name changed.') . EOL);
}
2010-07-13 13:05:23 +02:00
}
2011-04-12 14:37:26 +02:00
2017-12-09 19:45:17 +01:00
$a->page['aside'] = Group::sidebarWidget();
2010-07-13 13:05:23 +02:00
}
return;
2010-07-11 15:06:30 +02:00
}
function group_content(App $a) {
$change = false;
if (!local_user()) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied') . EOL);
2010-07-11 15:06:30 +02:00
return;
}
// With no group number provided we jump to the unassigned contacts as a starting point
if ($a->argc == 1) {
goaway('group/none');
}
// Switch to text mode interface if we have more than 'n' contacts or group members
$switchtotext = PConfig::get(local_user(), 'system', 'groupedit_image_limit');
2017-11-07 23:15:59 +01:00
if (is_null($switchtotext)) {
$switchtotext = Config::get('system', 'groupedit_image_limit', 400);
}
$tpl = get_markup_template('group_edit.tpl');
2012-12-22 20:57:29 +01:00
$context = [
'$submit' => L10n::t('Save Group'),
'$submit_filter' => L10n::t('Filter'),
];
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
return replace_macros($tpl, $context + [
2018-01-22 13:29:50 +01:00
'$title' => L10n::t('Create a group of contacts/friends.'),
'$gname' => ['groupname', L10n::t('Group Name: '), '', ''],
2012-03-02 15:40:17 +01:00
'$gid' => 'new',
'$form_security_token' => get_form_security_token("group_edit"),
]);
2010-07-13 08:08:07 +02:00
}
2010-08-11 13:14:47 +02:00
$nogroup = false;
if (($a->argc == 2) && ($a->argv[1] === 'none')) {
$id = -1;
$nogroup = true;
$group = [
'id' => $id,
'name' => L10n::t('Contacts not in any group'),
];
$members = [];
$preselected = [];
$entry = [];
$context = $context + [
'$title' => $group['name'],
'$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''],
'$gid' => $id,
'$editable' => 0,
];
}
if (($a->argc == 3) && ($a->argv[1] === 'drop')) {
check_form_security_token_redirectOnErr('/group', 'group_drop', 't');
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
);
$result = null;
2018-07-21 14:46:04 +02:00
if (DBA::isResult($r)) {
2017-12-09 19:45:17 +01:00
$result = Group::removeByName(local_user(), $r[0]['name']);
}
if ($result) {
info(L10n::t('Group removed.') . EOL);
} else {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Unable to remove group.') . EOL);
}
2010-08-11 10:48:43 +02:00
}
goaway(System::baseUrl() . '/group');
// NOTREACHED
2010-08-11 10:48:43 +02:00
}
2010-07-13 11:26:28 +02:00
if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
check_form_security_token_ForbiddenOnErr('group_member_change', 't');
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())
);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($r)) {
2011-04-12 14:37:26 +02:00
$change = intval($a->argv[2]);
}
2011-04-12 14:37:26 +02:00
}
if (($a->argc > 1) && intval($a->argv[1])) {
$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 (!DBA::isResult($r)) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Group not found.') . EOL);
goaway(System::baseUrl() . '/contact');
2010-07-13 08:08:07 +02:00
}
2010-07-13 11:26:28 +02:00
$group = $r[0];
2018-10-13 11:23:52 +02:00
$members = Model\Contact::getByGroupId($group['id']);
$preselected = [];
$entry = [];
$id = 0;
if (count($members)) {
foreach ($members as $member) {
2011-04-12 07:47:16 +02:00
$preselected[] = $member['id'];
}
2010-07-13 08:08:07 +02:00
}
2010-07-13 11:26:28 +02:00
if ($change) {
if (in_array($change, $preselected)) {
2017-12-09 19:45:17 +01:00
Group::removeMember($group['id'], $change);
} else {
Group::addMember($group['id'], $change);
2011-04-12 14:37:26 +02:00
}
2018-10-13 11:23:52 +02:00
$members = Model\Contact::getByGroupId($group['id']);
$preselected = [];
if (count($members)) {
foreach ($members as $member) {
2011-04-12 14:37:26 +02:00
$preselected[] = $member['id'];
}
2011-04-12 14:37:26 +02:00
}
}
2011-05-11 13:37:13 +02:00
$drop_tpl = get_markup_template('group_drop.tpl');
$drop_txt = replace_macros($drop_tpl, [
2010-08-11 10:48:43 +02:00
'$id' => $group['id'],
2018-01-22 13:29:50 +01:00
'$delete' => L10n::t('Delete Group'),
'$form_security_token' => get_form_security_token("group_drop"),
]);
2010-08-11 10:48:43 +02:00
$context = $context + [
'$title' => $group['name'],
2018-01-22 13:29:50 +01:00
'$gname' => ['groupname', L10n::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,
'$form_security_token' => get_form_security_token('group_edit'),
'$edit_name' => L10n::t('Edit Group Name'),
'$editable' => 1,
];
2010-07-13 11:26:28 +02:00
2010-07-13 08:08:07 +02:00
}
2011-04-12 07:47:16 +02:00
if (!isset($group)) {
return;
}
$groupeditor = [
2018-01-22 13:29:50 +01:00
'label_members' => L10n::t('Members'),
'members' => [],
2018-01-22 13:29:50 +01:00
'label_contacts' => L10n::t('All Contacts'),
'group_is_empty' => L10n::t('Group is empty'),
'contacts' => [],
];
$sec_token = addslashes(get_form_security_token('group_member_change'));
// Format the data of the group members
foreach ($members as $member) {
if ($member['url']) {
$entry = Module\Contact::getContactTemplateVars($member);
$entry['label'] = 'members';
$entry['photo_menu'] = '';
$entry['change_member'] = [
'title' => L10n::t("Remove contact from group"),
'gid' => $group['id'],
'cid' => $member['id'],
'sec_token' => $sec_token
];
$groupeditor['members'][] = $entry;
} else {
2017-12-09 19:45:17 +01:00
Group::removeMember($group['id'], $member['id']);
}
2011-04-12 07:47:16 +02:00
}
2011-04-12 10:31:55 +02:00
if ($nogroup) {
2018-10-13 11:23:52 +02:00
$r = Model\Contact::getUngroupedList(local_user());
} else {
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `self` ORDER BY `name` ASC",
intval(local_user())
);
$context['$desc'] = L10n::t('Click on a contact to add or remove.');
}
2011-04-12 10:31:55 +02:00
2018-07-21 14:46:04 +02:00
if (DBA::isResult($r)) {
// Format the data of the contacts who aren't in the contact group
foreach ($r as $member) {
if (!in_array($member['id'], $preselected)) {
$entry = Module\Contact::getContactTemplateVars($member);
$entry['label'] = 'contacts';
if (!$nogroup)
$entry['photo_menu'] = [];
if (!$nogroup) {
$entry['change_member'] = [
'title' => L10n::t("Add contact to group"),
'gid' => $group['id'],
'cid' => $member['id'],
'sec_token' => $sec_token
];
}
$groupeditor['contacts'][] = $entry;
2011-04-12 10:31:55 +02:00
}
}
}
2011-04-12 10:31:55 +02:00
2013-01-12 13:58:54 +01:00
$context['$groupeditor'] = $groupeditor;
2011-04-12 07:47:16 +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) {
$tpl = get_markup_template('groupeditor.tpl');
echo replace_macros($tpl, $context);
2011-04-12 14:37:26 +02:00
killme();
}
return replace_macros($tpl, $context);
2011-04-12 14:37:26 +02:00
}