X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=bbf1a6c6342fe42bf9e99b8df877146d382b292f;hb=7d0ea70cc144bf52070372a617497a7aa5216af2;hp=092595a09c5e91f70e6496c5a7e729468109db6c;hpb=af0f3a7e05a76f50b0f6a8c9091e46faf5d37fcd;p=friendica.git diff --git a/mod/match.php b/mod/match.php index 092595a09c..bbf1a6c634 100644 --- a/mod/match.php +++ b/mod/match.php @@ -1,33 +1,51 @@ ' . t('Profile Match') . ''; + $a->page['aside'] .= findpeople_widget(); + $a->page['aside'] .= follow_widget(); + + $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1", intval(local_user()) ); if(! count($r)) - return; + return; if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) { - notice('No keywords to match. Please add keywords to your default profile.'); + notice( t('No keywords to match. Please add keywords to your default profile.') . EOL); return; - } $params = array(); $tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']); + if($tags) { $params['s'] = $tags; if($a->pager['page'] != 1) $params['p'] = $a->pager['page']; - $x = post_url('http://dir.friendika.com/msearch', $params); + if(strlen(get_config('system','directory'))) + $x = post_url(get_server().'/msearch', $params); + else + $x = post_url($a->get_baseurl() . '/msearch', $params); $j = json_decode($x); @@ -37,21 +55,51 @@ function match_content(&$a) { } if(count($j->results)) { + + $id = 0; + foreach($j->results as $jj) { - $o .= '
'; - $o .= '' . '' . $jj->name . '
'; - $o .= '
'; - $o .= '
' . $jj->name . '
'; - $o .= '
'; + $match_nurl = normalise_link($jj->url); + $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1", + intval(local_user()), + dbesc($match_nurl)); + + if (!count($match)) { + $jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo); + $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url; + $photo_menu = array(array(t("View Profile"), zrl($jj->url))); + $photo_menu[] = array(t("Connect/Follow"), $connlnk); + + $entry = array( + 'url' => zrl($jj->url), + 'itemurl' => $jj->url, + 'name' => $jj->name, + 'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + 'inttxt' => ' ' . t('is interested in:'), + 'conntxt' => t('Connect'), + 'connlnk' => $connlnk, + 'img_hover' => $jj->tags, + 'photo_menu' => $photo_menu, + 'id' => ++$id, + ); + $entries[] = $entry; + } } - $o .= '
'; + + $tpl = get_markup_template('viewcontact_template.tpl'); + + $o .= replace_macros($tpl,array( + '$title' => t('Profile Match'), + '$contacts' => $entries, + '$paginate' => paginate($a), + )); + } else { - notice( t('No matches') . EOL); - } + info( t('No matches') . EOL); + } } - $o .= paginate($a); return $o; -} \ No newline at end of file +}