X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmsearch.php;h=00a72ea9f72171f75470ae3042fd7c7109192057;hb=1eadcb48552ef0ae1f0bae22103c77b21e2ec517;hp=14dfd1ef7c1646caf7bfde3bd5f2b269360f196b;hpb=70e5639e2973662705b44e643ac46ce68dd6dade;p=friendica.git diff --git a/mod/msearch.php b/mod/msearch.php index 14dfd1ef7c..00a72ea9f7 100644 --- a/mod/msearch.php +++ b/mod/msearch.php @@ -1,6 +1,6 @@ 0, 'items_page' => $perpage, 'page' => $page, 'results' => $results]; - echo json_encode($output); - exit(); + System::jsonExit($output); } $total = 0; - $count_stmt = DBA::p( - "SELECT COUNT(*) AS `total` - FROM `profile` - JOIN `user` ON `user`.`uid` = `profile`.`uid` - WHERE `profile`.`net-publish` - AND MATCH(`pub_keywords`) AGAINST (?)", - $search - ); - if (DBA::isResult($count_stmt)) { - $row = DBA::fetch($count_stmt); - $total = $row['total']; - } - - DBA::close($count_stmt); - - $search_stmt = DBA::p( - "SELECT `pub_keywords`, `username`, `nickname`, `user`.`uid` - FROM `user` - JOIN `profile` ON `user`.`uid` = `profile`.`uid` - WHERE `profile`.`net-publish` - AND MATCH(`pub_keywords`) AGAINST (?) - LIMIT ?, ?", - $search, - $startrec, - $perpage - ); + $condition = ["`net-publish` AND MATCH(`pub_keywords`) AGAINST (?)", $search]; + $total = DBA::count('owner-view', $condition); + $search_stmt = DBA::select('owner-view', ['pub_keywords', 'name', 'nickname', 'uid'], $condition, ['limit' => [$startrec, $perpage]]); while ($search_result = DBA::fetch($search_stmt)) { $results[] = [ 'name' => $search_result['name'], 'url' => DI::baseUrl() . '/profile/' . $search_result['nickname'], - 'photo' => DI::baseUrl() . '/photo/avatar/' . $search_result['uid'] . '.jpg', + 'photo' => User::getAvatarUrl($search_result, Proxy::SIZE_THUMB), 'tags' => str_replace([',', ' '], [' ', ' '], $search_result['pub_keywords']) ]; } @@ -81,7 +60,5 @@ function msearch_post(App $a) $output = ['total' => $total, 'items_page' => $perpage, 'page' => $page, 'results' => $results]; - echo json_encode($output); - - exit(); + System::jsonExit($output); }