2011-03-22 03:33:06 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
function match_content(&$a) {
|
|
|
|
|
2011-03-22 05:26:11 +01:00
|
|
|
$o = '';
|
2011-03-22 03:33:06 +01:00
|
|
|
if(! local_user())
|
|
|
|
return;
|
|
|
|
|
2011-12-18 10:44:46 +01:00
|
|
|
$_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
|
|
|
|
|
2011-03-22 05:43:22 +01:00
|
|
|
$o .= '<h2>' . t('Profile Match') . '</h2>';
|
2011-03-22 05:26:11 +01:00
|
|
|
|
2011-03-22 03:33:06 +01:00
|
|
|
$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;
|
|
|
|
if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) {
|
2011-07-02 10:21:56 +02:00
|
|
|
notice( t('No keywords to match. Please add keywords to your default profile.') . EOL);
|
2011-03-22 03:33:06 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
$params = array();
|
|
|
|
$tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']);
|
2011-10-03 08:45:27 +02:00
|
|
|
|
2011-03-22 03:33:06 +01:00
|
|
|
if($tags) {
|
|
|
|
$params['s'] = $tags;
|
2011-03-22 05:26:11 +01:00
|
|
|
if($a->pager['page'] != 1)
|
|
|
|
$params['p'] = $a->pager['page'];
|
2011-06-20 14:14:42 +02:00
|
|
|
|
2011-07-02 10:21:56 +02:00
|
|
|
if(strlen(get_config('system','directory_submit_url')))
|
|
|
|
$x = post_url('http://dir.friendika.com/msearch', $params);
|
|
|
|
else
|
|
|
|
$x = post_url($a->get_baseurl() . '/msearch', $params);
|
2011-03-22 03:44:00 +01:00
|
|
|
|
2011-03-22 03:33:06 +01:00
|
|
|
$j = json_decode($x);
|
|
|
|
|
2011-03-22 05:26:11 +01:00
|
|
|
if($j->total) {
|
|
|
|
$a->set_pager_total($j->total);
|
|
|
|
$a->set_pager_itemspage($j->items_page);
|
|
|
|
}
|
2011-03-22 03:44:00 +01:00
|
|
|
|
2011-03-22 05:26:11 +01:00
|
|
|
if(count($j->results)) {
|
2011-12-18 10:44:46 +01:00
|
|
|
|
|
|
|
|
2011-10-03 08:45:27 +02:00
|
|
|
|
|
|
|
$tpl = get_markup_template('match.tpl');
|
2011-03-22 05:26:11 +01:00
|
|
|
foreach($j->results as $jj) {
|
2011-10-03 08:45:27 +02:00
|
|
|
|
2011-12-18 10:44:46 +01:00
|
|
|
$connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url;
|
2011-10-03 08:45:27 +02:00
|
|
|
$o .= replace_macros($tpl,array(
|
|
|
|
'$url' => $jj->url,
|
|
|
|
'$name' => $jj->name,
|
|
|
|
'$photo' => $jj->photo,
|
2011-12-18 21:51:45 +01:00
|
|
|
'$inttxt' => ' ' . t('is interested in:'),
|
2011-12-18 10:44:46 +01:00
|
|
|
'$conntxt' => t('Connect'),
|
|
|
|
'$connlnk' => $connlnk,
|
2011-10-03 08:45:27 +02:00
|
|
|
'$tags' => $jj->tags
|
|
|
|
));
|
2011-03-22 03:33:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2011-05-23 11:39:57 +02:00
|
|
|
info( t('No matches') . EOL);
|
2011-03-22 03:33:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2011-03-22 05:26:11 +01:00
|
|
|
|
2011-10-12 03:24:37 +02:00
|
|
|
$o .= cleardiv();
|
2011-03-22 05:26:11 +01:00
|
|
|
$o .= paginate($a);
|
2011-03-22 03:33:06 +01:00
|
|
|
return $o;
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|