2011-07-19 16:17:58 +02:00
< ? php
2018-02-26 01:45:04 +01:00
2011-07-19 16:17:58 +02:00
/* ACL selector json backend */
2012-06-06 05:33:11 +02:00
2017-04-30 06:07:00 +02:00
use Friendica\App ;
2018-02-26 01:45:04 +01:00
use Friendica\Content\Widget ;
2018-03-03 00:41:24 +01:00
use Friendica\Core\ACL ;
2018-12-26 07:06:24 +01:00
use Friendica\Core\Hook ;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger ;
2018-08-11 22:40:44 +02:00
use Friendica\Core\Protocol ;
2018-07-20 14:19:26 +02:00
use Friendica\Database\DBA ;
2018-02-26 01:45:04 +01:00
use Friendica\Model\Contact ;
2018-06-12 11:05:36 +02:00
use Friendica\Model\Item ;
2018-07-31 04:06:22 +02:00
use Friendica\Util\Proxy as ProxyUtils ;
2018-11-08 16:14:37 +01:00
use Friendica\Util\Strings ;
2017-04-30 06:07:00 +02:00
2018-02-26 01:45:04 +01:00
function acl_content ( App $a )
{
if ( ! local_user ()) {
return '' ;
}
2018-02-26 02:24:46 +01:00
$start = defaults ( $_REQUEST , 'start' , 0 );
$count = defaults ( $_REQUEST , 'count' , 100 );
$search = defaults ( $_REQUEST , 'search' , '' );
$type = defaults ( $_REQUEST , 'type' , '' );
2018-02-26 01:45:04 +01:00
$conv_id = defaults ( $_REQUEST , 'conversation' , null );
// For use with jquery.textcomplete for private mail completion
2018-02-26 02:24:46 +01:00
if ( ! empty ( $_REQUEST [ 'query' ])) {
2018-02-26 01:45:04 +01:00
if ( ! $type ) {
$type = 'm' ;
}
$search = $_REQUEST [ 'query' ];
}
2018-12-30 21:42:56 +01:00
Logger :: info ( 'ACL {action} - {subaction}' , [ 'module' => 'acl' , 'action' => 'content' , 'subaction' => 'search' , 'search' => $search , 'type' => $type , 'conversation' => $conv_id ]);
2018-02-26 01:45:04 +01:00
if ( $search != '' ) {
2018-07-21 15:10:13 +02:00
$sql_extra = " AND `name` LIKE '%% " . DBA :: escape ( $search ) . " %%' " ;
$sql_extra2 = " AND (`attag` LIKE '%% " . DBA :: escape ( $search ) . " %%' OR `name` LIKE '%% " . DBA :: escape ( $search ) . " %%' OR `nick` LIKE '%% " . DBA :: escape ( $search ) . " %%') " ;
2018-02-26 01:45:04 +01:00
} else {
/// @TODO Avoid these needless else blocks by putting variable-initialization atop of if()
$sql_extra = $sql_extra2 = '' ;
}
// count groups and contacts
2018-02-26 02:24:46 +01:00
$group_count = 0 ;
2018-02-26 01:45:04 +01:00
if ( $type == '' || $type == 'g' ) {
2019-01-12 14:28:14 +01:00
$r = q ( " SELECT COUNT(*) AS g FROM `group` WHERE NOT `deleted` AND `uid` = %d $sql_extra " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ())
);
$group_count = ( int ) $r [ 0 ][ 'g' ];
}
$sql_extra2 .= ' ' . Widget :: unavailableNetworks ();
2018-02-26 02:24:46 +01:00
$contact_count = 0 ;
2018-02-26 01:45:04 +01:00
if ( $type == '' || $type == 'c' ) {
// autocomplete for editor mentions
$r = q ( " SELECT COUNT(*) AS c FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted`
2018-02-26 01:45:04 +01:00
AND NOT `blocked` AND NOT `pending` AND NOT `archive`
AND `notify` != '' $sql_extra2 " ,
intval ( local_user ())
);
$contact_count = ( int ) $r [ 0 ][ 'c' ];
} elseif ( $type == 'f' ) {
// autocomplete for editor mentions of forums
$r = q ( " SELECT COUNT(*) AS c FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted`
2018-02-26 01:45:04 +01:00
AND NOT `blocked` AND NOT `pending` AND NOT `archive`
AND ( `forum` OR `prv` )
AND `notify` != '' $sql_extra2 " ,
intval ( local_user ())
);
$contact_count = ( int ) $r [ 0 ][ 'c' ];
} elseif ( $type == 'm' ) {
// autocomplete for Private Messages
$r = q ( " SELECT COUNT(*) AS c FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted`
2018-02-26 01:45:04 +01:00
AND NOT `blocked` AND NOT `pending` AND NOT `archive`
2018-10-06 05:17:44 +02:00
AND `network` IN ( '%s' , '%s' , '%s' ) $sql_extra2 " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ()),
2018-10-06 05:17:44 +02:00
DBA :: escape ( Protocol :: ACTIVITYPUB ),
2018-08-11 22:40:44 +02:00
DBA :: escape ( Protocol :: DFRN ),
DBA :: escape ( Protocol :: DIASPORA )
2018-02-26 01:45:04 +01:00
);
$contact_count = ( int ) $r [ 0 ][ 'c' ];
} elseif ( $type == 'a' ) {
// autocomplete for Contacts
$r = q ( " SELECT COUNT(*) AS c FROM `contact`
WHERE `uid` = % d AND NOT `self`
2019-01-12 14:28:14 +01:00
AND NOT `pending` AND NOT `deleted` $sql_extra2 " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ())
);
$contact_count = ( int ) $r [ 0 ][ 'c' ];
}
$tot = $group_count + $contact_count ;
$groups = [];
$contacts = [];
if ( $type == '' || $type == 'g' ) {
/// @todo We should cache this query.
// This can be done when we can delete cache entries via wildcard
$r = q ( " SELECT `group`.`id`, `group`.`name`, GROUP_CONCAT(DISTINCT `group_member`.`contact-id` SEPARATOR ',') AS uids
FROM `group`
INNER JOIN `group_member` ON `group_member` . `gid` = `group` . `id`
WHERE NOT `group` . `deleted` AND `group` . `uid` = % d
$sql_extra
GROUP BY `group` . `name` , `group` . `id`
ORDER BY `group` . `name`
LIMIT % d , % d " ,
intval ( local_user ()),
intval ( $start ),
intval ( $count )
);
2016-02-07 15:11:34 +01:00
2018-02-26 01:45:04 +01:00
foreach ( $r as $g ) {
$groups [] = [
2018-02-26 02:24:46 +01:00
'type' => 'g' ,
2018-02-26 01:45:04 +01:00
'photo' => 'images/twopeople.png' ,
2018-11-25 20:48:26 +01:00
'name' => htmlspecialchars ( $g [ 'name' ]),
2018-02-26 02:24:46 +01:00
'id' => intval ( $g [ 'id' ]),
'uids' => array_map ( 'intval' , explode ( ',' , $g [ 'uids' ])),
'link' => '' ,
2018-02-26 01:45:04 +01:00
'forum' => '0'
];
}
if (( count ( $groups ) > 0 ) && ( $search == '' )) {
$groups [] = [ 'separator' => true ];
}
}
2016-02-07 15:11:34 +01:00
2018-02-26 02:24:46 +01:00
$r = [];
2018-02-26 01:45:04 +01:00
if ( $type == '' ) {
$r = q ( " SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv`, (`prv` OR `forum`) AS `frm` FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
2019-07-20 19:34:08 +02:00
AND NOT ( `network` IN ( '%s' , '%s' ))
2018-02-26 02:24:46 +01:00
$sql_extra2
ORDER BY `name` ASC " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ()),
2018-08-11 22:40:44 +02:00
DBA :: escape ( Protocol :: OSTATUS ),
DBA :: escape ( Protocol :: STATUSNET )
2018-02-26 01:45:04 +01:00
);
} elseif ( $type == 'c' ) {
$r = q ( " SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
2019-07-20 19:34:08 +02:00
AND NOT ( `network` IN ( '%s' ))
2018-02-26 02:24:46 +01:00
$sql_extra2
ORDER BY `name` ASC " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ()),
2018-08-11 22:40:44 +02:00
DBA :: escape ( Protocol :: STATUSNET )
2018-02-26 01:45:04 +01:00
);
} elseif ( $type == 'f' ) {
$r = q ( " SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive` AND `notify` != ''
2019-07-20 19:34:08 +02:00
AND NOT ( `network` IN ( '%s' ))
2018-02-26 02:24:46 +01:00
AND ( `forum` OR `prv` )
$sql_extra2
ORDER BY `name` ASC " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ()),
2018-08-11 22:40:44 +02:00
DBA :: escape ( Protocol :: STATUSNET )
2018-02-26 01:45:04 +01:00
);
} elseif ( $type == 'm' ) {
$r = q ( " SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr` FROM `contact`
2019-01-12 14:28:14 +01:00
WHERE `uid` = % d AND NOT `self` AND NOT `deleted` AND NOT `blocked` AND NOT `pending` AND NOT `archive`
2019-07-20 19:34:08 +02:00
AND `network` IN ( '%s' , '%s' , '%s' )
2018-02-26 02:24:46 +01:00
$sql_extra2
ORDER BY `name` ASC " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ()),
2018-10-06 05:17:44 +02:00
DBA :: escape ( Protocol :: ACTIVITYPUB ),
2018-08-11 22:40:44 +02:00
DBA :: escape ( Protocol :: DFRN ),
DBA :: escape ( Protocol :: DIASPORA )
2018-02-26 01:45:04 +01:00
);
} elseif ( $type == 'a' ) {
$r = q ( " SELECT `id`, `name`, `nick`, `micro`, `network`, `url`, `attag`, `addr`, `forum`, `prv` FROM `contact`
2019-07-20 19:34:08 +02:00
WHERE `uid` = % d AND NOT `deleted` AND NOT `pending` AND NOT `archive`
2018-02-26 02:24:46 +01:00
$sql_extra2
ORDER BY `name` ASC " ,
2018-02-26 01:45:04 +01:00
intval ( local_user ())
);
} elseif ( $type == 'x' ) {
// autocomplete for global contact search (e.g. navbar search)
2018-11-09 19:29:42 +01:00
$search = Strings :: escapeTags ( trim ( $_REQUEST [ 'search' ]));
2018-02-26 02:04:30 +01:00
$mode = $_REQUEST [ 'smode' ];
2018-03-03 00:41:24 +01:00
$r = ACL :: contactAutocomplete ( $search , $mode );
2018-02-26 02:04:30 +01:00
2018-02-26 01:45:04 +01:00
$contacts = [];
foreach ( $r as $g ) {
$contacts [] = [
2018-07-31 04:06:22 +02:00
'photo' => ProxyUtils :: proxifyUrl ( $g [ 'photo' ], false , ProxyUtils :: SIZE_MICRO ),
2018-11-25 20:48:26 +01:00
'name' => htmlspecialchars ( $g [ 'name' ]),
2018-02-26 02:24:46 +01:00
'nick' => defaults ( $g , 'addr' , $g [ 'url' ]),
2018-02-26 01:45:04 +01:00
'network' => $g [ 'network' ],
'link' => $g [ 'url' ],
2018-02-26 02:24:46 +01:00
'forum' => ! empty ( $g [ 'community' ]) ? 1 : 0 ,
2018-02-26 01:45:04 +01:00
];
}
$o = [
'start' => $start ,
'count' => $count ,
'items' => $contacts ,
];
echo json_encode ( $o );
2018-02-26 02:24:46 +01:00
exit ;
2018-02-26 01:45:04 +01:00
}
2018-07-21 14:46:04 +02:00
if ( DBA :: isResult ( $r )) {
2018-02-26 01:45:04 +01:00
$forums = [];
foreach ( $r as $g ) {
$entry = [
'type' => 'c' ,
2018-07-31 04:06:22 +02:00
'photo' => ProxyUtils :: proxifyUrl ( $g [ 'micro' ], false , ProxyUtils :: SIZE_MICRO ),
2018-11-25 20:48:26 +01:00
'name' => htmlspecialchars ( $g [ 'name' ]),
2018-02-26 01:45:04 +01:00
'id' => intval ( $g [ 'id' ]),
'network' => $g [ 'network' ],
'link' => $g [ 'url' ],
2018-02-26 02:24:46 +01:00
'nick' => htmlentities ( defaults ( $g , 'attag' , $g [ 'nick' ])),
'addr' => htmlentities ( defaults ( $g , 'addr' , $g [ 'url' ])),
'forum' => ! empty ( $g [ 'forum' ]) || ! empty ( $g [ 'prv' ]) ? 1 : 0 ,
2018-02-26 01:45:04 +01:00
];
if ( $entry [ 'forum' ]) {
$forums [] = $entry ;
} else {
$contacts [] = $entry ;
}
}
if ( count ( $forums ) > 0 ) {
if ( $search == '' ) {
$forums [] = [ 'separator' => true ];
}
$contacts = array_merge ( $forums , $contacts );
}
}
$items = array_merge ( $groups , $contacts );
if ( $conv_id ) {
2018-03-12 13:15:59 +01:00
// In multi threaded posts the conv_id is not the parent of the whole thread
2018-07-07 20:14:16 +02:00
$parent_item = Item :: selectFirst ([ 'parent' ], [ 'id' => $conv_id ]);
2018-07-21 14:46:04 +02:00
if ( DBA :: isResult ( $parent_item )) {
2018-03-12 13:15:59 +01:00
$conv_id = $parent_item [ 'parent' ];
}
2018-02-26 01:45:04 +01:00
/*
* if $conv_id is set , get unknown contacts in thread
* but first get known contacts url to filter them out
*/
$known_contacts = array_map ( function ( $i ) {
2018-06-12 11:05:36 +02:00
return $i [ 'link' ];
2018-02-26 01:45:04 +01:00
}, $contacts );
$unknown_contacts = [];
2018-06-12 11:05:36 +02:00
$condition = [ " `parent` = ? " , $conv_id ];
$params = [ 'order' => [ 'author-name' => true ]];
2018-06-17 19:05:17 +02:00
$authors = Item :: selectForUser ( local_user (), [ 'author-link' ], $condition , $params );
2018-06-12 11:05:36 +02:00
$item_authors = [];
2018-06-24 12:48:29 +02:00
while ( $author = Item :: fetch ( $authors )) {
2018-06-12 11:05:36 +02:00
$item_authors [ $author [ 'author-link' ]] = $author [ 'author-link' ];
}
2018-07-20 14:19:26 +02:00
DBA :: close ( $authors );
2018-06-12 11:05:36 +02:00
foreach ( $item_authors as $author ) {
if ( in_array ( $author , $known_contacts )) {
continue ;
}
$contact = Contact :: getDetailsByURL ( $author );
if ( count ( $contact ) > 0 ) {
$unknown_contacts [] = [
'type' => 'c' ,
2018-07-31 04:06:22 +02:00
'photo' => ProxyUtils :: proxifyUrl ( $contact [ 'micro' ], false , ProxyUtils :: SIZE_MICRO ),
2018-11-25 20:48:26 +01:00
'name' => htmlspecialchars ( $contact [ 'name' ]),
2018-06-12 11:05:36 +02:00
'id' => intval ( $contact [ 'cid' ]),
'network' => $contact [ 'network' ],
'link' => $contact [ 'url' ],
'nick' => htmlentities ( defaults ( $contact , 'nick' , $contact [ 'addr' ])),
'addr' => htmlentities ( defaults ( $contact , 'addr' , $contact [ 'url' ])),
'forum' => $contact [ 'forum' ]
];
2018-02-26 01:45:04 +01:00
}
}
$items = array_merge ( $items , $unknown_contacts );
$tot += count ( $unknown_contacts );
}
$results = [
'tot' => $tot ,
'start' => $start ,
'count' => $count ,
'groups' => $groups ,
'contacts' => $contacts ,
'items' => $items ,
'type' => $type ,
'search' => $search ,
];
2018-12-26 07:06:24 +01:00
Hook :: callAll ( 'acl_lookup_end' , $results );
2018-02-26 01:45:04 +01:00
$o = [
2018-02-26 02:24:46 +01:00
'tot' => $results [ 'tot' ],
2018-02-26 01:45:04 +01:00
'start' => $results [ 'start' ],
'count' => $results [ 'count' ],
'items' => $results [ 'items' ],
];
echo json_encode ( $o );
2018-02-26 02:24:46 +01:00
exit ;
2018-02-26 01:45:04 +01:00
}