3 require_once("include/contact_selectors.php");
4 require_once("include/features.php");
5 require_once("mod/proxy.php");
12 * @package acl_selectors
14 function group_select($selname,$selclass,$preselected = false,$size = 4) {
20 $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"$size\" >\r\n";
22 $r = q("SELECT * FROM `group` WHERE `deleted` = 0 AND `uid` = %d ORDER BY `name` ASC",
27 $arr = array('group' => $r, 'entry' => $o);
29 // e.g. 'network_pre_group_deny', 'profile_pre_group_allow'
31 call_hooks($a->module . '_pre_' . $selname, $arr);
35 if((is_array($preselected)) && in_array($rr['id'], $preselected))
36 $selected = " selected=\"selected\" ";
40 $trimmed = mb_substr($rr['name'],0,12);
42 $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}\" >$trimmed</option>\r\n";
46 $o .= "</select>\r\n";
48 call_hooks($a->module . '_post_' . $selname, $o);
55 function contact_selector($selname, $selclass, $preselected = false, $options) {
65 if(is_array($options)) {
66 if(x($options,'size'))
67 $size = $options['size'];
69 if(x($options,'mutual_friends'))
71 if(x($options,'single'))
73 if(x($options,'multiple'))
75 if(x($options,'exclude'))
76 $exclude = $options['exclude'];
78 if(x($options,'networks')) {
79 switch($options['networks']) {
81 $networks = array(NETWORK_DFRN);
84 if(is_array($a->user) && $a->user['prvnets'])
85 $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA);
87 $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL, NETWORK_DIASPORA);
90 if(is_array($a->user) && $a->user['prvnets'])
91 $networks = array(NETWORK_DFRN,NETWORK_MAIL,NETWORK_DIASPORA);
93 $networks = array(NETWORK_DFRN,NETWORK_FACEBOOK,NETWORK_MAIL,NETWORK_DIASPORA,NETWORK_OSTATUS);
101 $x = array('options' => $options, 'size' => $size, 'single' => $single, 'mutual' => $mutual, 'exclude' => $exclude, 'networks' => $networks);
103 call_hooks('contact_select_options', $x);
110 $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
113 if(intval($x['exclude']))
114 $sql_extra .= sprintf(" AND `id` != %d ", intval($x['exclude']));
116 if(is_array($x['networks']) && count($x['networks'])) {
117 for($y = 0; $y < count($x['networks']) ; $y ++)
118 $x['networks'][$y] = "'" . dbesc($x['networks'][$y]) . "'";
119 $str_nets = implode(',',$x['networks']);
120 $sql_extra .= " AND `network` IN ( $str_nets ) ";
123 $tabindex = (x($options, 'tabindex') ? "tabindex=\"" . $options["tabindex"] . "\"" : "");
126 $o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"" . $x['size'] . "\" $tabindex >\r\n";
128 $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"" . $x['size'] . "$\" $tabindex >\r\n";
130 $r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
131 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
133 ORDER BY `name` ASC ",
138 $arr = array('contact' => $r, 'entry' => $o);
140 // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
142 call_hooks($a->module . '_pre_' . $selname, $arr);
146 if((is_array($preselected)) && in_array($rr['id'], $preselected))
147 $selected = " selected=\"selected\" ";
151 $trimmed = mb_substr($rr['name'],0,20);
153 $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}|{$rr['url']}\" >$trimmed</option>\r\n";
158 $o .= "</select>\r\n";
160 call_hooks($a->module . '_post_' . $selname, $o);
167 function contact_select($selname, $selclass, $preselected = false, $size = 4, $privmail = false, $celeb = false, $privatenet = false, $tabindex = null) {
169 require_once("include/bbcode.php");
175 // When used for private messages, we limit correspondence to mutual DFRN/Friendica friends and the selector
176 // to one recipient. By default our selector allows multiple selects amongst all contacts.
180 if($privmail || $celeb) {
181 $sql_extra .= sprintf(" AND `rel` = %d ", intval(CONTACT_IS_FRIEND));
185 $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s') ",
186 NETWORK_DFRN, NETWORK_DIASPORA);
188 $sql_extra .= sprintf(" AND `network` IN ('%s' , '%s', '%s', '%s') ",
189 NETWORK_DFRN, NETWORK_MAIL, NETWORK_FACEBOOK, NETWORK_DIASPORA);
191 $tabindex = ($tabindex > 0 ? "tabindex=\"$tabindex\"" : "");
193 if ($privmail AND $preselected) {
194 $sql_extra .= " AND `id` IN (".implode(",", $preselected).")";
195 $hidepreselected = ' style="display: none;"';
197 $hidepreselected = "";
200 $o .= "<select name=\"$selname\" id=\"$selclass\" class=\"$selclass\" size=\"$size\" $tabindex $hidepreselected>\r\n";
202 $o .= "<select name=\"{$selname}[]\" id=\"$selclass\" class=\"$selclass\" multiple=\"multiple\" size=\"$size\" $tabindex >\r\n";
204 $r = q("SELECT `id`, `name`, `url`, `network` FROM `contact`
205 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
207 ORDER BY `name` ASC ",
212 $arr = array('contact' => $r, 'entry' => $o);
214 // e.g. 'network_pre_contact_deny', 'profile_pre_contact_allow'
216 call_hooks($a->module . '_pre_' . $selname, $arr);
218 $receiverlist = array();
222 if((is_array($preselected)) && in_array($rr['id'], $preselected))
223 $selected = " selected=\"selected\" ";
228 $trimmed = GetProfileUsername($rr['url'], $rr['name'], false);
230 $trimmed = mb_substr($rr['name'],0,20);
232 $receiverlist[] = $trimmed;
234 $o .= "<option value=\"{$rr['id']}\" $selected title=\"{$rr['name']}|{$rr['url']}\" >$trimmed</option>\r\n";
239 $o .= "</select>\r\n";
241 if ($privmail AND $preselected)
242 $o .= implode(", ", $receiverlist);
244 call_hooks($a->module . '_post_' . $selname, $o);
250 function fixacl(&$item) {
251 $item = intval(str_replace(array('<','>'),array('',''),$item));
254 function prune_deadguys($arr) {
258 $str = dbesc(implode(',',$arr));
259 $r = q("select id from contact where id in ( " . $str . ") and blocked = 0 and pending = 0 and archive = 0 ");
263 $ret[] = intval($rr['id']);
270 function get_acl_permissions($user = null) {
271 $allow_cid = $allow_gid = $deny_cid = $deny_gid = false;
273 if(is_array($user)) {
274 $allow_cid = ((strlen($user['allow_cid']))
275 ? explode('><', $user['allow_cid']) : array() );
276 $allow_gid = ((strlen($user['allow_gid']))
277 ? explode('><', $user['allow_gid']) : array() );
278 $deny_cid = ((strlen($user['deny_cid']))
279 ? explode('><', $user['deny_cid']) : array() );
280 $deny_gid = ((strlen($user['deny_gid']))
281 ? explode('><', $user['deny_gid']) : array() );
282 array_walk($allow_cid,'fixacl');
283 array_walk($allow_gid,'fixacl');
284 array_walk($deny_cid,'fixacl');
285 array_walk($deny_gid,'fixacl');
288 $allow_cid = prune_deadguys($allow_cid);
291 'allow_cid' => $allow_cid,
292 'allow_gid' => $allow_gid,
293 'deny_cid' => $deny_cid,
294 'deny_gid' => $deny_gid,
299 function populate_acl($user = null, $show_jotnets = false) {
301 $perms = get_acl_permissions($user);
305 $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
307 $mail_enabled = false;
308 $pubmail_enabled = false;
310 if(! $mail_disabled) {
311 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
315 $mail_enabled = true;
316 if(intval($r[0]['pubmail']))
317 $pubmail_enabled = true;
321 if (!$user['hidewall']) {
323 $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
324 $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . ' value="1" /> ' . t("Post to Email") . '</div>';
327 call_hooks('jot_networks', $jotnets);
329 $jotnets .= sprintf(t('Connectors disabled, since "%s" is enabled.'),
330 t('Hide your profile details from unknown viewers?'));
333 $tpl = get_markup_template("acl_selector.tpl");
334 $o = replace_macros($tpl, array(
335 '$showall'=> t("Visible to everybody"),
336 '$show' => t("show"),
337 '$hide' => t("don't show"),
338 '$allowcid' => json_encode($perms['allow_cid']),
339 '$allowgid' => json_encode($perms['allow_gid']),
340 '$denycid' => json_encode($perms['deny_cid']),
341 '$denygid' => json_encode($perms['deny_gid']),
342 '$networks' => $show_jotnets,
343 '$emailcc' => t('CC: email addresses'),
344 '$emtitle' => t('Example: bob@example.com, mary@example.com'),
345 '$jotnets' => $jotnets,
346 '$aclModalTitle' => t('Permissions'),
347 '$aclModalDismiss' => t('Close'),
348 '$features' => array(
349 "aclautomention"=>(feature_enabled($user['uid'],"aclautomention")?"true":"false")
358 function construct_acl_data(&$a, $user) {
360 // Get group and contact information for html ACL selector
361 $acl_data = acl_lookup($a, 'html');
363 $user_defaults = get_acl_permissions($user);
365 if($acl_data['groups']) {
366 foreach($acl_data['groups'] as $key=>$group) {
367 // Add a "selected" flag to groups that are posted to by default
368 if($user_defaults['allow_gid'] &&
369 in_array($group['id'], $user_defaults['allow_gid']) && !in_array($group['id'], $user_defaults['deny_gid']) )
370 $acl_data['groups'][$key]['selected'] = 1;
372 $acl_data['groups'][$key]['selected'] = 0;
375 if($acl_data['contacts']) {
376 foreach($acl_data['contacts'] as $key=>$contact) {
377 // Add a "selected" flag to groups that are posted to by default
378 if($user_defaults['allow_cid'] &&
379 in_array($contact['id'], $user_defaults['allow_cid']) && !in_array($contact['id'], $user_defaults['deny_cid']) )
380 $acl_data['contacts'][$key]['selected'] = 1;
382 $acl_data['contacts'][$key]['selected'] = 0;
390 function acl_lookup(&$a, $out_type = 'json') {
395 $start = (x($_REQUEST,'start')?$_REQUEST['start']:0);
396 $count = (x($_REQUEST,'count')?$_REQUEST['count']:100);
397 $search = (x($_REQUEST,'search')?$_REQUEST['search']:"");
398 $type = (x($_REQUEST,'type')?$_REQUEST['type']:"");
399 $conv_id = (x($_REQUEST,'conversation')?$_REQUEST['conversation']:null);
401 // For use with jquery.autocomplete for private mail completion
403 if(x($_REQUEST,'query') && strlen($_REQUEST['query'])) {
406 $search = $_REQUEST['query'];
409 // logger("Searching for ".$search." - type ".$type, LOGGER_DEBUG);
412 $sql_extra = "AND `name` LIKE '%%".dbesc($search)."%%'";
413 $sql_extra2 = "AND (`attag` LIKE '%%".dbesc($search)."%%' OR `name` LIKE '%%".dbesc($search)."%%' OR `nick` LIKE '%%".dbesc($search)."%%')";
415 $sql_extra = $sql_extra2 = "";
418 // count groups and contacts
419 if ($type=='' || $type=='g'){
420 $r = q("SELECT COUNT(*) AS g FROM `group` WHERE `deleted` = 0 AND `uid` = %d $sql_extra",
423 $group_count = (int)$r[0]['g'];
428 if ($type=='' || $type=='c'){
429 $r = q("SELECT COUNT(*) AS c FROM `contact`
430 WHERE `uid` = %d AND `self` = 0
431 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
432 AND `notify` != '' $sql_extra2" ,
435 $contact_count = (int)$r[0]['c'];
437 elseif ($type == 'm') {
439 // autocomplete for Private Messages
441 $r = q("SELECT COUNT(*) AS c FROM `contact`
442 WHERE `uid` = %d AND `self` = 0
443 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
444 AND `network` IN ('%s','%s','%s') $sql_extra2" ,
445 intval(local_user()),
448 dbesc(NETWORK_DIASPORA)
450 $contact_count = (int)$r[0]['c'];
453 elseif ($type == 'a') {
455 // autocomplete for Contacts
457 $r = q("SELECT COUNT(*) AS c FROM `contact`
458 WHERE `uid` = %d AND `self` = 0
459 AND `pending` = 0 $sql_extra2" ,
462 $contact_count = (int)$r[0]['c'];
469 $tot = $group_count+$contact_count;
474 if ($type=='' || $type=='g'){
476 $r = q("SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') as uids
477 FROM `group`,`group_member`
478 WHERE `group`.`deleted` = 0 AND `group`.`uid` = %d
479 AND `group_member`.`gid`=`group`.`id`
481 GROUP BY `group`.`id`
482 ORDER BY `group`.`name`
484 intval(local_user()),
490 // logger('acl: group: ' . $g['name'] . ' members: ' . $g['uids']);
493 "photo" => "images/twopeople.png",
494 "name" => htmlentities($g['name']),
495 "id" => intval($g['id']),
496 "uids" => array_map("intval", explode(",",$g['uids'])),
503 if ($type=='' || $type=='c'){
505 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, forum FROM `contact`
506 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0 AND `notify` != ''
507 AND NOT (`network` IN ('%s', '%s'))
509 ORDER BY `name` ASC ",
510 intval(local_user()),
511 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_STATUSNET)
514 elseif($type == 'm') {
515 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
516 WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 AND `pending` = 0 AND `archive` = 0
517 AND `network` IN ('%s','%s','%s')
519 ORDER BY `name` ASC ",
520 intval(local_user()),
523 dbesc(NETWORK_DIASPORA)
526 elseif($type == 'a') {
527 $r = q("SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag` FROM `contact`
528 WHERE `uid` = %d AND `pending` = 0
530 ORDER BY `name` ASC ",
538 if($type == 'm' || $type == 'a') {
540 $x['query'] = $search;
541 $x['photos'] = array();
542 $x['links'] = array();
543 $x['suggestions'] = array();
544 $x['data'] = array();
547 $x['photos'][] = proxy_url($g['micro'], false, PROXY_SIZE_MICRO);
548 $x['links'][] = $g['url'];
549 $x['suggestions'][] = htmlentities($g['name']);
550 $x['data'][] = intval($g['id']);
553 echo json_encode($x);
561 "photo" => proxy_url($g['micro'], false, PROXY_SIZE_MICRO),
562 "name" => htmlentities($g['name']),
563 "id" => intval($g['id']),
564 "network" => $g['network'],
566 "nick" => htmlentities(($g['attag']) ? $g['attag'] : $g['nick']),
567 "forum" => $g['forum']
572 $items = array_merge($groups, $contacts);
575 /* if $conv_id is set, get unknow contacts in thread */
576 /* but first get know contacts url to filter them out */
577 function _contact_link($i){ return dbesc($i['link']); }
578 $known_contacts = array_map(_contact_link, $contacts);
579 $unknow_contacts=array();
581 `author-avatar`,`author-name`,`author-link`
582 from item where parent=%d
584 `author-name` LIKE '%%%s%%' OR
585 `author-link` LIKE '%%%s%%'
587 `author-link` NOT IN ('%s')
588 GROUP BY `author-link`
589 ORDER BY `author-name` ASC
594 implode("','", $known_contacts)
596 if (is_array($r) && count($r)){
597 foreach($r as $row) {
599 $up = parse_url($row['author-link']);
600 $nick = explode("/",$up['path']);
601 $nick = $nick[count($nick)-1];
602 $nick .= "@".$up['host'];
604 $unknow_contacts[] = array(
606 "photo" => proxy_url($row['author-avatar'], false, PROXY_SIZE_MICRO),
607 "name" => htmlentities($row['author-name']),
609 "network" => "unknown",
610 "link" => $row['author-link'],
611 "nick" => htmlentities($nick),
617 $items = array_merge($items, $unknow_contacts);
618 $tot += count($unknow_contacts);
621 if($out_type === 'html') {
627 'contacts' => $contacts,
639 echo json_encode($o);