4 * @file include/acl_selectors.php
7 require_once("include/contact_selectors.php");
8 require_once("include/contact_widgets.php");
9 require_once("include/DirSearch.php");
10 require_once("include/features.php");
11 require_once("mod/proxy.php");
15 * @package acl_selectors
17 function group_select($selname,$selclass,$preselected = false,$size = 4) {
23 $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"$size\" >\r\n";
25 $r = q("SELECT `id`, `name` FROM `group` WHERE NOT `deleted` AND `uid` = %d ORDER BY `name` ASC",
30 $arr = array('group' => $r, 'entry' => $o);
32 // e.g. 'network_pre_group_deny', 'profile_pre_group_allow'
34 call_hooks($a->module . '_pre_' . $selname, $arr);
38 if((is_array($preselected)) && in_array($rr['id'], $preselected))
39 $selected = " selected=\"selected\" ";
43 $trimmed = mb_substr($rr['name'],0,12);
45 $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}\" >$trimmed</option>\r\n";
49 $o .= "</select>\r\n";
51 call_hooks($a->module . '_post_' . $selname, $o);
58 function contact_selector($selname, $selclass, $preselected = false, $options) {
68 if(is_array($options)) {
69 if(x($options,'size'))
70 $size = $options['size'];
72 if(x($options,'mutual_friends'))
74 if(x($options,'single'))
76 if(x($options,'multiple'))
78 if(x($options,'exclude'))
79 $exclude = $options['exclude'];
81 if(x($options,'networks')) {
82 switch($options['networks']) {
84 $networks = array(NETWORK_DFRN);
87 if(is_array($a->user) && $a->user['prvnets'])
88 $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA);
90 $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL, NETWORK_DIASPORA);
93 if(is_array($a->user) && $a->user['prvnets'])
94 $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA);
96 $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_OSTATUS);
104 $x = array('options' => $options, 'size' => $size, 'single' => $single, 'mutual' => $mutual, 'exclude' => $exclude, 'networks' => $networks);
106 call_hooks('contact_select_options', $x);
113 $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
116 if(intval($x['exclude']))
117 $sql_extra .= sprintf(" AND `id` != %d ", intval($x['exclude']));
119 if(is_array($x['networks']) && count($x['networks'])) {
120 for($y = 0; $y < count($x['networks']) ; $y ++)
121 $x['networks'][$y] = "'" . dbesc($x['networks'][$y]) . "'";
122 $str_nets = implode(',',$x['networks']);
123 $sql_extra .= " AND `network` IN ( $str_nets ) ";
126 $tabindex = (x($options, 'tabindex') ? "tabindex=\"" . $options["tabindex"] . "\"" : "");
129 $o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"" . $x['size'] . "\" $tabindex >\r\n";
131 $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"" . $x['size'] . "$\" $tabindex >\r\n";
133 $r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
134 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
136 ORDER BY `name` ASC ",
141 $arr = array('contact' => $r, 'entry' => $o);
143 // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
145 call_hooks($a->module . '_pre_' . $selname, $arr);
149 if((is_array($preselected)) && in_array($rr['id'], $preselected))
150 $selected = " selected=\"selected\" ";
154 $trimmed = mb_substr($rr['name'],0,20);
156 $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}|{$rr['url']}\" >$trimmed</option>\r\n";
161 $o .= "</select>\r\n";
163 call_hooks($a->module . '_post_' . $selname, $o);
170 function contact_select($selname, $selclass, $preselected = false, $size = 4, $privmail = false, $celeb = false, $privatenet = false, $tabindex = null) {
172 require_once("include/bbcode.php");
178 // When used for private messages, we limit correspondence to mutual DFRN/Friendica friends and the selector
179 // to one recipient. By default our selector allows multiple selects amongst all contacts.
183 if($privmail || $celeb) {
184 $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
188 $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ",
189 NETWORK_DFRN, NETWORK_DIASPORA);
191 $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s', '%s', '%s') ",
192 NETWORK_DFRN, NETWORK_MAIL, NETWORK_FACEBOOK, NETWORK_DIASPORA);
194 $tabindex = ($tabindex > 0 ? "tabindex=\"$tabindex\"" : "");
196 if ($privmail AND $preselected) {
197 $sql_extra .= " AND `id` IN (".implode(",", $preselected).")";
198 $hidepreselected = ' style="display: none;"';
200 $hidepreselected = "";
203 $o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\" $tabindex $hidepreselected>\r\n";
205 $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"$size\" $tabindex >\r\n";
207 $r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
208 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
210 ORDER BY `name` ASC ",
215 $arr = array('contact' => $r, 'entry' => $o);
217 // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
219 call_hooks($a->module . '_pre_' . $selname, $arr);
221 $receiverlist = array();
225 if((is_array($preselected)) && in_array($rr['id'], $preselected))
226 $selected = " selected=\"selected\" ";
231 $trimmed = GetProfileUsername($rr['url'], $rr['name'], false);
233 $trimmed = mb_substr($rr['name'],0,20);
235 $receiverlist[] = $trimmed;
237 $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}|{$rr['url']}\" >$trimmed</option>\r\n";
242 $o .= "</select>\r\n";
244 if ($privmail AND $preselected)
245 $o .= implode(", ", $receiverlist);
247 call_hooks($a->module . '_post_' . $selname, $o);
253 function fixacl(&$item) {
254 $item = intval(str_replace(array('<','>'),array('',''),$item));
257 function prune_deadguys($arr) {
261 $str = dbesc(implode(',',$arr));
262 $r = q("SELECT `id` FROM `contact` WHERE `id` IN ( " . $str . ") AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 ");
266 $ret[] = intval($rr['id']);
273 function get_acl_permissions($user = null) {
274 $allow_cid = $allow_gid = $deny_cid = $deny_gid = false;
276 if(is_array($user)) {
277 $allow_cid = ((strlen($user['allow_cid']))
278 ? explode('><', $user['allow_cid']) : array() );
279 $allow_gid = ((strlen($user['allow_gid']))
280 ? explode('><', $user['allow_gid']) : array() );
281 $deny_cid = ((strlen($user['deny_cid']))
282 ? explode('><', $user['deny_cid']) : array() );
283 $deny_gid = ((strlen($user['deny_gid']))
284 ? explode('><', $user['deny_gid']) : array() );
285 array_walk($allow_cid,'fixacl');
286 array_walk($allow_gid,'fixacl');
287 array_walk($deny_cid,'fixacl');
288 array_walk($deny_gid,'fixacl');
291 $allow_cid = prune_deadguys($allow_cid);
294 'allow_cid' => $allow_cid,
295 'allow_gid' => $allow_gid,
296 'deny_cid' => $deny_cid,
297 'deny_gid' => $deny_gid,
302 function populate_acl($user = null, $show_jotnets = false) {
304 $perms = get_acl_permissions($user);
308 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
310 $mail_enabled = false;
311 $pubmail_enabled = false;
313 if(! $mail_disabled) {
314 $r = q("SELECT `pubmail` FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
318 $mail_enabled = true;
319 if(intval($r[0]['pubmail']))
320 $pubmail_enabled = true;
324 if (!$user['hidewall']) {
326 $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
327 $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
330 call_hooks('jot_networks', $jotnets);
332 $jotnets .= sprintf(t('Connectors disabled, since "%s" is enabled.'),
333 t('Hide your profile details from unknown viewers?'));
336 $tpl = get_markup_template("acl_selector.tpl");
337 $o = replace_macros($tpl, array(
338 '$showall'=> t("Visible to everybody"),
339 '$show' => t("show"),
340 '$hide' => t("don't show"),
341 '$allowcid' => json_encode($perms['allow_cid']),
342 '$allowgid' => json_encode($perms['allow_gid']),
343 '$denycid' => json_encode($perms['deny_cid']),
344 '$denygid' => json_encode($perms['deny_gid']),
345 '$networks' => $show_jotnets,
346 '$emailcc' => t('CC: email addresses'),
347 '$emtitle' => t('Example: bob@example.com, mary@example.com'),
348 '$jotnets' => $jotnets,
349 '$aclModalTitle' => t('Permissions'),
350 '$aclModalDismiss' => t('Close'),
351 '$features' => array(
352 "aclautomention"=>(feature_enabled($user['uid'],"aclautomention")?"true":"false")
361 function construct_acl_data(&$a, $user) {
363 // Get group and contact information for html ACL selector
364 $acl_data = acl_lookup($a, 'html');
366 $user_defaults = get_acl_permissions($user);
368 if($acl_data['groups']) {
369 foreach($acl_data['groups'] as $key=>$group) {
370 // Add a "selected" flag to groups that are posted to by default
371 if($user_defaults['allow_gid'] &&
372 in_array($group['id'], $user_defaults['allow_gid']) && !in_array($group['id'], $user_defaults['deny_gid']) )
373 $acl_data['groups'][$key]['selected'] = 1;
375 $acl_data['groups'][$key]['selected'] = 0;
378 if($acl_data['contacts']) {
379 foreach($acl_data['contacts'] as $key=>$contact) {
380 // Add a "selected" flag to groups that are posted to by default
381 if($user_defaults['allow_cid'] &&
382 in_array($contact['id'], $user_defaults['allow_cid']) && !in_array($contact['id'], $user_defaults['deny_cid']) )
383 $acl_data['contacts'][$key]['selected'] = 1;
385 $acl_data['contacts'][$key]['selected'] = 0;
393 function acl_lookup(&$a, $out_type = 'json') {
398 $start = (x($_REQUEST,'start') ? $_REQUEST['start'] : 0);
399 $count = (x($_REQUEST,'count') ? $_REQUEST['count'] : 100);
400 $search = (x($_REQUEST,'search') ? $_REQUEST['search'] : "");
401 $type = (x($_REQUEST,'type') ? $_REQUEST['type'] : "");
402 $mode = (x($_REQUEST,'mode') ? $_REQUEST['mode'] : "");
403 $conv_id = (x($_REQUEST,'conversation') ? $_REQUEST['conversation'] : null);
405 // For use with jquery.textcomplete for private mail completion
407 if(x($_REQUEST,'query') && strlen($_REQUEST['query'])) {
410 $search = $_REQUEST['query'];
413 logger("Searching for ".$search." - type ".$type, LOGGER_DEBUG);
416 $sql_extra = "AND `name` LIKE '%%".dbesc($search)."%%'";
417 $sql_extra2 = "AND (`attag` LIKE '%%".dbesc($search)."%%' OR `name` LIKE '%%".dbesc($search)."%%' OR `nick` LIKE '%%".dbesc($search)."%%')";
419 $sql_extra = $sql_extra2 = "";
422 // count groups and contacts
423 if ($type=='' || $type=='g'){
424 $r = q("SELECT COUNT(*) AS g FROM `group` WHERE `deleted` = 0 AND `uid` = %d $sql_extra",
427 $group_count = (int)$r[0]['g'];
432 $sql_extra2 .= " ".unavailable_networks();
434 // autocomplete for editor mentions
435 if ($type=='' || $type=='c'){
436 $r = q("SELECT COUNT(*) AS c FROM `contact`
437 WHERE `uid` = %d AND `self` = 0
438 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
439 AND `notify` != '' $sql_extra2" ,
442 $contact_count = (int)$r[0]['c'];
444 elseif ($type == 'm') {
446 // autocomplete for Private Messages
448 $r = q("SELECT COUNT(*) AS c FROM `contact`
449 WHERE `uid` = %d AND `self` = 0
450 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
451 AND `network` IN ('%s','%s','%s') $sql_extra2" ,
452 intval(local_user()),
455 dbesc(NETWORK_DIASPORA)
457 $contact_count = (int)$r[0]['c'];
460 elseif ($type == 'a') {
462 // autocomplete for Contacts
464 $r = q("SELECT COUNT(*) AS c FROM `contact`
465 WHERE `uid` = %d AND `self` = 0
466 AND `pending` = 0 $sql_extra2" ,
469 $contact_count = (int)$r[0]['c'];
476 $tot = $group_count+$contact_count;
481 if ($type=='' || $type=='g'){
483 $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') AS uids
484 FROM `group`,`group_member`
485 WHERE `group`.`deleted` = 0 AND `group`.`uid` = %d
486 AND `group_member`.`gid`=`group`.`id`
488 GROUP BY `group`.`id`
489 ORDER BY `group`.`name`
491 intval(local_user()),
497 // logger('acl: group: ' . $g['name'] . ' members: ' . $g['uids']);
500 "photo" => "images/twopeople.png",
501 "name" => htmlentities($g['name']),
502 "id" => intval($g['id']),
503 "uids" => array_map("intval", explode(",",$g['uids'])),
512 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `forum`, `prv` FROM `contact`
513 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
514 AND NOT (`network` IN ('%s', '%s'))
516 ORDER BY `name` ASC ",
517 intval(local_user()),
518 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_STATUSNET)
523 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `forum`, `prv` FROM `contact`
524 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
525 AND NOT (`network` IN ('%s'))
527 ORDER BY `name` ASC ",
528 intval(local_user()),
529 dbesc(NETWORK_STATUSNET)
532 elseif($type == 'm') {
533 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
534 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
535 AND `network` IN ('%s','%s','%s')
537 ORDER BY `name` ASC ",
538 intval(local_user()),
541 dbesc(NETWORK_DIASPORA)
544 elseif($type == 'a') {
545 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `forum`, `prv` FROM `contact`
546 WHERE `uid` = %d AND `pending` = 0
548 ORDER BY `name` ASC ",
552 elseif($type == 'x') {
553 // autocomplete for global contact search (e.g. navbar search)
554 $r = navbar_complete($a);
559 "photo" => proxy_url($g['photo'], false, PROXY_SIZE_MICRO),
560 "name" => $g['name'],
561 "nick" => (x($g['addr']) ? $g['addr'] : $g['url']),
562 "network" => $g['network'],
564 "forum" => (x($g['community']) ? 1 : 0),
571 'items' => $contacts,
573 echo json_encode($o);
584 "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO),
585 "name" => htmlentities($g['name']),
586 "id" => intval($g['id']),
587 "network" => $g['network'],
589 "nick" => htmlentities(($g['attag']) ? $g['attag'] : $g['nick']),
590 "forum" => ((x($g['forum']) || x($g['prv'])) ? 1 : 0),
595 $items = array_merge($groups, $contacts);
598 /* if $conv_id is set, get unknow contacts in thread */
599 /* but first get know contacts url to filter them out */
600 function _contact_link($i){ return dbesc($i['link']); }
601 $known_contacts = array_map(_contact_link, $contacts);
602 $unknow_contacts=array();
603 $r = q("SELECT `author-avatar`,`author-name`,`author-link`
604 FROM `item` WHERE `parent` = %d
605 AND (`author-name` LIKE '%%%s%%' OR `author-link` LIKE '%%%s%%')
606 AND `author-link` NOT IN ('%s')
607 GROUP BY `author-link`
608 ORDER BY `author-name` ASC
613 implode("','", $known_contacts)
615 if (is_array($r) && count($r)){
616 foreach($r as $row) {
618 $up = parse_url($row['author-link']);
619 $nick = explode("/",$up['path']);
620 $nick = $nick[count($nick)-1];
621 $nick .= "@".$up['host'];
623 $unknow_contacts[] = array(
625 "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO),
626 "name" => htmlentities($row['author-name']),
628 "network" => "unknown",
629 "link" => $row['author-link'],
630 "nick" => htmlentities($nick),
636 $items = array_merge($items, $unknow_contacts);
637 $tot += count($unknow_contacts);
645 "contacts" => $contacts,
651 call_hooks('acl_lookup_end', $results);
653 if($out_type === 'html') {
655 'tot' => $results["tot"],
656 'start' => $results["start"],
657 'count' => $results["count"],
658 'groups' => $results["groups"],
659 'contacts' => $results["contacts"],
665 'tot' => $results["tot"],
666 'start' => $results["start"],
667 'count' => $results["count"],
668 'items' => $results["items"],
671 echo json_encode($o);
676 * @brief Searching for global contacts for autocompletion
679 * @return array with the search results
681 function navbar_complete(&$a) {
683 // logger('navbar_complete');
685 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
689 // check if searching in the local global contact table is enabled
690 $localsearch = get_config('system','poco_local_search');
692 $search = $prefix.notags(trim($_REQUEST['search']));
693 $mode = $_REQUEST['mode'];
695 // don't search if search term has less than 2 characters
696 if(! $search || mb_strlen($search) < 2)
699 if(substr($search,0,1) === '@')
700 $search = substr($search,1);
703 $x = DirSearch::global_search_by_name($search, $mode);
708 $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
710 $x = z_fetch_url(get_server().'/lsearch?f=' . $p . '&search=' . urlencode($search));
713 $j = json_decode($x['body'],true);
714 if($j && $j['results']) {
715 return $j['results'];