4 * @brief The group module (create and rename contact groups, add and
5 * remove contacts to the contact groups
9 use Friendica\Core\Config;
10 use Friendica\Core\L10n;
11 use Friendica\Core\PConfig;
12 use Friendica\Core\System;
13 use Friendica\Database\DBA;
14 use Friendica\Model\Contact;
15 use Friendica\Model\Group;
17 function group_init(App $a) {
19 $a->page['aside'] = Group::sidebarWidget('contacts', 'group', 'extended', (($a->argc > 1) ? $a->argv[1] : 'everyone'));
23 function group_post(App $a) {
26 notice(L10n::t('Permission denied.') . EOL);
30 if (($a->argc == 2) && ($a->argv[1] === 'new')) {
31 check_form_security_token_redirectOnErr('/group/new', 'group_edit');
33 $name = notags(trim($_POST['groupname']));
34 $r = Group::create(local_user(), $name);
36 info(L10n::t('Group created.') . EOL);
37 $r = Group::getIdByName(local_user(), $name);
39 goaway(System::baseUrl() . '/group/' . $r);
42 notice(L10n::t('Could not create group.') . EOL);
44 goaway(System::baseUrl() . '/group');
48 if (($a->argc == 2) && intval($a->argv[1])) {
49 check_form_security_token_redirectOnErr('/group', 'group_edit');
51 $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
55 if (!DBA::isResult($r)) {
56 notice(L10n::t('Group not found.') . EOL);
57 goaway(System::baseUrl() . '/contacts');
61 $groupname = notags(trim($_POST['groupname']));
62 if (strlen($groupname) && ($groupname != $group['name'])) {
63 $r = q("UPDATE `group` SET `name` = '%s' WHERE `uid` = %d AND `id` = %d",
64 DBA::escape($groupname),
70 info(L10n::t('Group name changed.') . EOL);
74 $a->page['aside'] = Group::sidebarWidget();
79 function group_content(App $a) {
83 notice(L10n::t('Permission denied') . EOL);
87 // With no group number provided we jump to the unassigned contacts as a starting point
92 // Switch to text mode interface if we have more than 'n' contacts or group members
93 $switchtotext = PConfig::get(local_user(), 'system', 'groupedit_image_limit');
94 if (is_null($switchtotext)) {
95 $switchtotext = Config::get('system', 'groupedit_image_limit', 400);
98 $tpl = get_markup_template('group_edit.tpl');
101 '$submit' => L10n::t('Save Group'),
102 '$submit_filter' => L10n::t('Filter'),
105 if (($a->argc == 2) && ($a->argv[1] === 'new')) {
106 return replace_macros($tpl, $context + [
107 '$title' => L10n::t('Create a group of contacts/friends.'),
108 '$gname' => ['groupname', L10n::t('Group Name: '), '', ''],
110 '$form_security_token' => get_form_security_token("group_edit"),
118 if (($a->argc == 2) && ($a->argv[1] === 'none')) {
119 require_once 'mod/contacts.php';
125 'name' => L10n::t('Contacts not in any group'),
132 $context = $context + [
133 '$title' => $group['name'],
134 '$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''],
141 if (($a->argc == 3) && ($a->argv[1] === 'drop')) {
142 check_form_security_token_redirectOnErr('/group', 'group_drop', 't');
144 if (intval($a->argv[2])) {
145 $r = q("SELECT `name` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
152 if (DBA::isResult($r)) {
153 $result = Group::removeByName(local_user(), $r[0]['name']);
157 info(L10n::t('Group removed.') . EOL);
159 notice(L10n::t('Unable to remove group.') . EOL);
162 goaway(System::baseUrl() . '/group');
166 if (($a->argc > 2) && intval($a->argv[1]) && intval($a->argv[2])) {
167 check_form_security_token_ForbiddenOnErr('group_member_change', 't');
169 $r = q("SELECT `id` FROM `contact` WHERE `id` = %d AND `uid` = %d and `self` = 0 and `blocked` = 0 AND `pending` = 0 LIMIT 1",
173 if (DBA::isResult($r)) {
174 $change = intval($a->argv[2]);
178 if (($a->argc > 1) && intval($a->argv[1])) {
179 require_once 'mod/contacts.php';
181 $r = q("SELECT * FROM `group` WHERE `id` = %d AND `uid` = %d AND `deleted` = 0 LIMIT 1",
186 if (!DBA::isResult($r)) {
187 notice(L10n::t('Group not found.') . EOL);
188 goaway(System::baseUrl() . '/contacts');
192 $members = Contact::getByGroupId($group['id']);
197 if (count($members)) {
198 foreach ($members as $member) {
199 $preselected[] = $member['id'];
204 if (in_array($change, $preselected)) {
205 Group::removeMember($group['id'], $change);
207 Group::addMember($group['id'], $change);
210 $members = Contact::getByGroupId($group['id']);
212 if (count($members)) {
213 foreach ($members as $member) {
214 $preselected[] = $member['id'];
219 $drop_tpl = get_markup_template('group_drop.tpl');
220 $drop_txt = replace_macros($drop_tpl, [
221 '$id' => $group['id'],
222 '$delete' => L10n::t('Delete Group'),
223 '$form_security_token' => get_form_security_token("group_drop"),
227 $context = $context + [
228 '$title' => $group['name'],
229 '$gname' => ['groupname', L10n::t('Group Name: '), $group['name'], ''],
230 '$gid' => $group['id'],
231 '$drop' => $drop_txt,
232 '$form_security_token' => get_form_security_token('group_edit'),
233 '$edit_name' => L10n::t('Edit Group Name'),
239 if (!isset($group)) {
244 'label_members' => L10n::t('Members'),
246 'label_contacts' => L10n::t('All Contacts'),
247 'group_is_empty' => L10n::t('Group is empty'),
251 $sec_token = addslashes(get_form_security_token('group_member_change'));
253 // Format the data of the group members
254 foreach ($members as $member) {
255 if ($member['url']) {
256 $entry = _contact_detail_for_template($member);
257 $entry['label'] = 'members';
258 $entry['photo_menu'] = '';
259 $entry['change_member'] = [
260 'title' => L10n::t("Remove contact from group"),
261 'gid' => $group['id'],
262 'cid' => $member['id'],
263 'sec_token' => $sec_token
266 $groupeditor['members'][] = $entry;
268 Group::removeMember($group['id'], $member['id']);
273 $r = Contact::getUngroupedList(local_user());
275 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND NOT `blocked` AND NOT `pending` AND NOT `self` ORDER BY `name` ASC",
278 $context['$desc'] = L10n::t('Click on a contact to add or remove.');
281 if (DBA::isResult($r)) {
282 // Format the data of the contacts who aren't in the contact group
283 foreach ($r as $member) {
284 if (!in_array($member['id'], $preselected)) {
285 $entry = _contact_detail_for_template($member);
286 $entry['label'] = 'contacts';
288 $entry['photo_menu'] = [];
291 $entry['change_member'] = [
292 'title' => L10n::t("Add contact to group"),
293 'gid' => $group['id'],
294 'cid' => $member['id'],
295 'sec_token' => $sec_token
299 $groupeditor['contacts'][] = $entry;
304 $context['$groupeditor'] = $groupeditor;
306 // If there are to many contacts we could provide an alternative view mode
307 $total = count($groupeditor['members']) + count($groupeditor['contacts']);
308 $context['$shortmode'] = (($switchtotext && ($total > $switchtotext)) ? true : false);
311 $tpl = get_markup_template('groupeditor.tpl');
312 echo replace_macros($tpl, $context);
316 return replace_macros($tpl, $context);