]> git.mxchange.org Git - friendica.git/blobdiff - mod/dirfind.php
Reworked fetching of contact data on "display" page
[friendica.git] / mod / dirfind.php
index 516742c249cf27732e313fbce7362b7a4d35e198..488e10fa169d5e758f2f9fca4e5b68928b0b7628 100644 (file)
@@ -1,9 +1,10 @@
 <?php
+require_once('include/contact_widgets.php');
+require_once('include/socgraph.php');
+require_once('include/Contact.php');
 
 function dirfind_init(&$a) {
 
-       require_once('include/contact_widgets.php');
-
        if(! x($a->page,'aside'))
                $a->page['aside'] = '';
 
@@ -14,13 +15,13 @@ function dirfind_init(&$a) {
 
 
 
-function dirfind_content(&$a) {
+function dirfind_content(&$a, $prefix = "") {
 
        $community = false;
 
        $local = get_config('system','poco_local_search');
 
-       $search = notags(trim($_REQUEST['search']));
+       $search = $prefix.notags(trim($_REQUEST['search']));
 
        if(strpos($search,'@') === 0)
                $search = substr($search,1);
@@ -76,6 +77,9 @@ function dirfind_content(&$a) {
                        $j->items_page = $perpage;
                        $j->page = $a->pager['page'];
                        foreach ($results AS $result) {
+                               if (poco_alternate_ostatus_url($result["url"]))
+                                        continue;
+
                                if ($result["name"] == "") {
                                        $urlparts = parse_url($result["url"]);
                                        $result["name"] = end(explode("/", $urlparts["path"]));
@@ -97,8 +101,8 @@ function dirfind_content(&$a) {
 
                        $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
 
-                       if(strlen(get_config('system','directory_submit_url')))
-                               $x = fetch_url('http://dir.friendica.com/lsearch?f=' . $p .  '&search=' . urlencode($search));
+                       if(strlen(get_config('system','directory')))
+                               $x = fetch_url(get_server().'/lsearch?f=' . $p .  '&search=' . urlencode($search));
 
                        $j = json_decode($x);
                }
@@ -110,6 +114,8 @@ function dirfind_content(&$a) {
 
                if(count($j->results)) {
 
+                       $id = 0;
+
                        $tpl = get_markup_template('match.tpl');
                        foreach($j->results as $jj) {
 
@@ -117,11 +123,20 @@ function dirfind_content(&$a) {
                                if ($jj->cid > 0) {
                                        $connlnk = "";
                                        $conntxt = "";
+                                       $contact = q("SELECT * FROM `contact` WHERE `id` = %d",
+                                                       intval($jj->cid));
+                                       if ($contact)
+                                               $photo_menu = contact_photo_menu($contact[0]);
+                                       else
+                                               $photo_menu = array();
                                } else {
                                        $connlnk = $a->get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
                                        $conntxt = t('Connect');
+                                       $photo_menu = array(array(t("Connect/Follow"), $connlnk));
                                }
 
+                               $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
+
                                $o .= replace_macros($tpl,array(
                                        '$url' => zrl($jj->url),
                                        '$name' => $jj->name,
@@ -129,6 +144,8 @@ function dirfind_content(&$a) {
                                        '$tags' => $jj->tags,
                                        '$conntxt' => $conntxt,
                                        '$connlnk' => $connlnk,
+                                       '$photo_menu' => $photo_menu,
+                                       '$id' => ++$id,
                                ));
                        }
                }