X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=f31b0f67a44fd82cc2a1140a2581ce443a16aae7;hb=12d9c46ec5ba0b0d13f62058e8db4f3d4910ce27;hp=092595a09c5e91f70e6496c5a7e729468109db6c;hpb=1bba63fb607c2cb5fb2c002e63ad7128ecf8b1ea;p=friendica.git diff --git a/mod/match.php b/mod/match.php index 092595a09c..f31b0f67a4 100644 --- a/mod/match.php +++ b/mod/match.php @@ -1,5 +1,8 @@ ' . t('Profile Match') . ''; + $a->page['aside'] .= follow_widget(); + $a->page['aside'] .= findpeople_widget(); + + $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd; + + $o .= replace_macros(get_markup_template("section_title.tpl"),array( + '$title' => t('Profile Match') + )); $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 +51,36 @@ function match_content(&$a) { } if(count($j->results)) { + + + + $tpl = get_markup_template('match.tpl'); 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; + $o .= replace_macros($tpl,array( + '$url' => zrl($jj->url), + '$name' => $jj->name, + '$photo' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB), + '$inttxt' => ' ' . t('is interested in:'), + '$conntxt' => t('Connect'), + '$connlnk' => $connlnk, + '$tags' => $jj->tags + )); + } } - $o .= '
'; + } else { + info( t('No matches') . EOL); } - else { - notice( t('No matches') . EOL); - } } + $o .= cleardiv(); $o .= paginate($a); return $o; -} \ No newline at end of file +}