2019-05-01 15:29:04 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Module/Group.php
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-05-01 15:29:04 -04:00
|
|
|
use Friendica\Model;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
require_once 'boot.php';
|
|
|
|
|
|
|
|
class Group extends BaseModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function post(array $parameters = [])
|
2019-05-01 15:29:04 -04:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-05-01 15:29:04 -04:00
|
|
|
|
2019-12-15 18:30:39 -05:00
|
|
|
if (DI::mode()->isAjax()) {
|
2019-05-01 15:29:04 -04:00
|
|
|
self::ajaxPost();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect();
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
|
|
|
|
BaseModule::checkFormSecurityTokenRedirectOnError('/group/new', 'group_edit');
|
|
|
|
|
|
|
|
$name = Strings::escapeTags(trim($_POST['groupname']));
|
|
|
|
$r = Model\Group::create(local_user(), $name);
|
|
|
|
if ($r) {
|
2020-01-18 14:52:34 -05:00
|
|
|
info(DI::l10n()->t('Group created.'));
|
2019-05-01 15:29:04 -04:00
|
|
|
$r = Model\Group::getIdByName(local_user(), $name);
|
|
|
|
if ($r) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('group/' . $r);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Could not create group.'));
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('group');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc == 2) && intval($a->argv[1])) {
|
|
|
|
BaseModule::checkFormSecurityTokenRedirectOnError('/group', 'group_edit');
|
|
|
|
|
|
|
|
$group = DBA::selectFirst('group', ['id', 'name'], ['id' => $a->argv[1], 'uid' => local_user()]);
|
|
|
|
if (!DBA::isResult($group)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Group not found.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('contact');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
$groupname = Strings::escapeTags(trim($_POST['groupname']));
|
|
|
|
if (strlen($groupname) && ($groupname != $group['name'])) {
|
|
|
|
if (Model\Group::update($group['id'], $groupname)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
info(DI::l10n()->t('Group name changed.'));
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function ajaxPost()
|
|
|
|
{
|
|
|
|
try {
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-05-01 15:29:04 -04:00
|
|
|
|
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Permission denied.'), 403);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// POST /group/123/add/123
|
|
|
|
// POST /group/123/remove/123
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if ($a->argc == 4) {
|
|
|
|
list($group_id, $command, $contact_id) = array_slice($a->argv, 1);
|
|
|
|
|
|
|
|
if (!Model\Group::exists($group_id, local_user())) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Unknown group.'), 404);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
2019-12-24 16:44:43 -05:00
|
|
|
$contact = DBA::selectFirst('contact', ['deleted'], ['id' => $contact_id, 'uid' => local_user()]);
|
2019-05-01 15:29:04 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Contact not found.'), 404);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($contact['deleted']) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Contact is deleted.'), 410);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch($command) {
|
|
|
|
case 'add':
|
|
|
|
if (!Model\Group::addMember($group_id, $contact_id)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Unable to add the contact to the group.'), 500);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
2019-12-24 16:44:43 -05:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$message = DI::l10n()->t('Contact successfully added to group.');
|
2019-05-01 15:29:04 -04:00
|
|
|
break;
|
|
|
|
case 'remove':
|
|
|
|
if (!Model\Group::removeMember($group_id, $contact_id)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Unable to remove the contact from the group.'), 500);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
2019-12-24 16:44:43 -05:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$message = DI::l10n()->t('Contact successfully removed from group.');
|
2019-05-01 15:29:04 -04:00
|
|
|
break;
|
|
|
|
default:
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Unknown group command.'), 400);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Exception(DI::l10n()->t('Bad request.'), 400);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
notice($message);
|
|
|
|
System::jsonExit(['status' => 'OK', 'message' => $message]);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
notice($e->getMessage());
|
|
|
|
System::jsonError($e->getCode(), ['status' => 'error', 'message' => $e->getMessage()]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-05-01 15:29:04 -04:00
|
|
|
{
|
|
|
|
$change = false;
|
|
|
|
|
|
|
|
if (!local_user()) {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\ForbiddenException();
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-05-01 15:29:04 -04:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] = Model\Group::sidebarWidget('contact', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone'));
|
2019-05-01 15:29:04 -04:00
|
|
|
|
|
|
|
// With no group number provided we jump to the unassigned contacts as a starting point
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if ($a->argc == 1) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('group/none');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Switch to text mode interface if we have more than 'n' contacts or group members
|
2020-01-18 10:50:57 -05:00
|
|
|
$switchtotext = DI::pConfig()->get(local_user(), 'system', 'groupedit_image_limit');
|
2019-05-01 15:29:04 -04:00
|
|
|
if (is_null($switchtotext)) {
|
2020-01-19 15:21:13 -05:00
|
|
|
$switchtotext = DI::config()->get('system', 'groupedit_image_limit', 200);
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('group_edit.tpl');
|
|
|
|
|
|
|
|
|
|
|
|
$context = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$submit' => DI::l10n()->t('Save Group'),
|
|
|
|
'$submit_filter' => DI::l10n()->t('Filter'),
|
2019-05-01 15:29:04 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'new')) {
|
|
|
|
return Renderer::replaceMacros($tpl, $context + [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Create a group of contacts/friends.'),
|
|
|
|
'$gname' => ['groupname', DI::l10n()->t('Group Name: '), '', ''],
|
2019-05-01 15:29:04 -04:00
|
|
|
'$gid' => 'new',
|
|
|
|
'$form_security_token' => BaseModule::getFormSecurityToken("group_edit"),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
$nogroup = false;
|
|
|
|
|
2019-05-03 02:50:17 -04:00
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc == 2) && ($a->argv[1] === 'none') ||
|
|
|
|
($a->argc == 1) && ($a->argv[0] === 'nogroup')) {
|
2019-05-01 15:29:04 -04:00
|
|
|
$id = -1;
|
|
|
|
$nogroup = true;
|
|
|
|
$group = [
|
|
|
|
'id' => $id,
|
2020-01-18 14:52:34 -05:00
|
|
|
'name' => DI::l10n()->t('Contacts not in any group'),
|
2019-05-01 15:29:04 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
$members = [];
|
|
|
|
$preselected = [];
|
|
|
|
|
|
|
|
$context = $context + [
|
|
|
|
'$title' => $group['name'],
|
2020-01-18 14:52:34 -05:00
|
|
|
'$gname' => ['groupname', DI::l10n()->t('Group Name: '), $group['name'], ''],
|
2019-05-01 15:29:04 -04:00
|
|
|
'$gid' => $id,
|
|
|
|
'$editable' => 0,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc == 3) && ($a->argv[1] === 'drop')) {
|
|
|
|
BaseModule::checkFormSecurityTokenRedirectOnError('/group', 'group_drop', 't');
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (intval($a->argv[2])) {
|
|
|
|
if (!Model\Group::exists($a->argv[2], local_user())) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Group not found.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('contact');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Model\Group::remove($a->argv[2])) {
|
2020-01-18 14:52:34 -05:00
|
|
|
info(DI::l10n()->t('Group removed.'));
|
2019-05-01 15:29:04 -04:00
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Unable to remove group.'));
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
}
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('group');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
|
|
|
|
BaseModule::checkFormSecurityTokenForbiddenOnError('group_member_change', 't');
|
|
|
|
|
|
|
|
if (DBA::exists('contact', ['id' => $a->argv[2], 'uid' => local_user(), 'self' => false, 'pending' => false, 'blocked' => false])) {
|
|
|
|
$change = intval($a->argv[2]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// @TODO: Replace with parameter from router
|
|
|
|
if (($a->argc > 1) && intval($a->argv[1])) {
|
|
|
|
$group = DBA::selectFirst('group', ['id', 'name'], ['id' => $a->argv[1], 'uid' => local_user(), 'deleted' => false]);
|
|
|
|
if (!DBA::isResult($group)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Group not found.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('contact');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$members = Model\Contact::getByGroupId($group['id']);
|
|
|
|
$preselected = [];
|
|
|
|
|
|
|
|
if (count($members)) {
|
|
|
|
foreach ($members as $member) {
|
|
|
|
$preselected[] = $member['id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($change) {
|
|
|
|
if (in_array($change, $preselected)) {
|
|
|
|
Model\Group::removeMember($group['id'], $change);
|
|
|
|
} else {
|
|
|
|
Model\Group::addMember($group['id'], $change);
|
|
|
|
}
|
|
|
|
|
|
|
|
$members = Model\Contact::getByGroupId($group['id']);
|
|
|
|
$preselected = [];
|
|
|
|
if (count($members)) {
|
|
|
|
foreach ($members as $member) {
|
|
|
|
$preselected[] = $member['id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$drop_tpl = Renderer::getMarkupTemplate('group_drop.tpl');
|
|
|
|
$drop_txt = Renderer::replaceMacros($drop_tpl, [
|
|
|
|
'$id' => $group['id'],
|
2020-01-18 14:52:34 -05:00
|
|
|
'$delete' => DI::l10n()->t('Delete Group'),
|
2019-05-01 15:29:04 -04:00
|
|
|
'$form_security_token' => BaseModule::getFormSecurityToken("group_drop"),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$context = $context + [
|
|
|
|
'$title' => $group['name'],
|
2020-01-18 14:52:34 -05:00
|
|
|
'$gname' => ['groupname', DI::l10n()->t('Group Name: '), $group['name'], ''],
|
2019-05-01 15:29:04 -04:00
|
|
|
'$gid' => $group['id'],
|
|
|
|
'$drop' => $drop_txt,
|
|
|
|
'$form_security_token' => BaseModule::getFormSecurityToken('group_edit'),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$edit_name' => DI::l10n()->t('Edit Group Name'),
|
2019-05-01 15:29:04 -04:00
|
|
|
'$editable' => 1,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isset($group)) {
|
2019-05-01 23:16:10 -04:00
|
|
|
throw new \Friendica\Network\HTTPException\BadRequestException();
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$groupeditor = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'label_members' => DI::l10n()->t('Members'),
|
2019-05-01 15:29:04 -04:00
|
|
|
'members' => [],
|
2020-01-18 14:52:34 -05:00
|
|
|
'label_contacts' => DI::l10n()->t('All Contacts'),
|
|
|
|
'group_is_empty' => DI::l10n()->t('Group is empty'),
|
2019-05-01 15:29:04 -04:00
|
|
|
'contacts' => [],
|
|
|
|
];
|
|
|
|
|
|
|
|
$sec_token = addslashes(BaseModule::getFormSecurityToken('group_member_change'));
|
|
|
|
|
|
|
|
// Format the data of the group members
|
|
|
|
foreach ($members as $member) {
|
|
|
|
if ($member['url']) {
|
|
|
|
$entry = Contact::getContactTemplateVars($member);
|
|
|
|
$entry['label'] = 'members';
|
|
|
|
$entry['photo_menu'] = '';
|
|
|
|
$entry['change_member'] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t("Remove contact from group"),
|
2019-05-01 15:29:04 -04:00
|
|
|
'gid' => $group['id'],
|
|
|
|
'cid' => $member['id'],
|
|
|
|
'sec_token' => $sec_token
|
|
|
|
];
|
|
|
|
|
|
|
|
$groupeditor['members'][] = $entry;
|
|
|
|
} else {
|
|
|
|
Model\Group::removeMember($group['id'], $member['id']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($nogroup) {
|
|
|
|
$contacts = Model\Contact::getUngroupedList(local_user());
|
|
|
|
} else {
|
|
|
|
$contacts_stmt = DBA::select('contact', [],
|
|
|
|
['uid' => local_user(), 'pending' => false, 'blocked' => false, 'self' => false],
|
|
|
|
['order' => ['name']]
|
|
|
|
);
|
|
|
|
$contacts = DBA::toArray($contacts_stmt);
|
2020-01-18 14:52:34 -05:00
|
|
|
$context['$desc'] = DI::l10n()->t('Click on a contact to add or remove.');
|
2019-05-01 15:29:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (DBA::isResult($contacts)) {
|
|
|
|
// Format the data of the contacts who aren't in the contact group
|
|
|
|
foreach ($contacts as $member) {
|
|
|
|
if (!in_array($member['id'], $preselected)) {
|
|
|
|
$entry = Contact::getContactTemplateVars($member);
|
|
|
|
$entry['label'] = 'contacts';
|
|
|
|
if (!$nogroup)
|
|
|
|
$entry['photo_menu'] = [];
|
|
|
|
|
|
|
|
if (!$nogroup) {
|
|
|
|
$entry['change_member'] = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'title' => DI::l10n()->t("Add contact to group"),
|
2019-05-01 15:29:04 -04:00
|
|
|
'gid' => $group['id'],
|
|
|
|
'cid' => $member['id'],
|
|
|
|
'sec_token' => $sec_token
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$groupeditor['contacts'][] = $entry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$context['$groupeditor'] = $groupeditor;
|
|
|
|
|
|
|
|
// 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 = Renderer::getMarkupTemplate('groupeditor.tpl');
|
|
|
|
echo Renderer::replaceMacros($tpl, $context);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
return Renderer::replaceMacros($tpl, $context);
|
|
|
|
}
|
2019-02-23 15:33:55 -05:00
|
|
|
}
|