diff options
author | Friendika <info@friendika.com> | 2011-03-21 19:33:06 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-21 19:33:06 -0700 |
commit | e16bca4f76fde5cea40b5a855ed9210718a7ed76 (patch) | |
tree | 63da371ffc654a322033bba65d4c29f3acb45284 /mod | |
parent | f73e40c188a5baae6cad3e0884843be02df72a6c (diff) | |
download | volse-hubzilla-e16bca4f76fde5cea40b5a855ed9210718a7ed76.tar.gz volse-hubzilla-e16bca4f76fde5cea40b5a855ed9210718a7ed76.tar.bz2 volse-hubzilla-e16bca4f76fde5cea40b5a855ed9210718a7ed76.zip |
first prototype of profile match against global directory (hint: set some keywords)
Diffstat (limited to 'mod')
-rw-r--r-- | mod/install.php | 2 | ||||
-rw-r--r-- | mod/match.php | 42 |
2 files changed, 43 insertions, 1 deletions
diff --git a/mod/install.php b/mod/install.php index 173df6d4b..5c508e4f2 100644 --- a/mod/install.php +++ b/mod/install.php @@ -14,7 +14,7 @@ function install_post(&$a) { $phpath = notags(trim($_POST['phpath'])); require_once("dba.php"); - unset ($db); + unset($db); $db = new dba($dbhost, $dbuser, $dbpass, $dbdata, true); if(mysqli_connect_errno()) { diff --git a/mod/match.php b/mod/match.php new file mode 100644 index 000000000..ce2ece428 --- /dev/null +++ b/mod/match.php @@ -0,0 +1,42 @@ +<?php + + +function match_content(&$a) { + + if(! local_user()) + return; + + $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'])) { + notice('No keywords to match. Please add keywords to your default profile.'); + return; + + } + + $params = array(); + $tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']); + if($tags) { + $params['s'] = $tags; + + + $x = post_url('http://dir.friendika.com/msearch', $params); + $j = json_decode($x); + + if(count($j)) { + + + foreach($j as $jj) { + $o .= '<a href="' . $jj[1] . '">' . '<img src="' . $jj[2] . '" alt="' . $jj[1] . '" />' . $jj[0] . '</a>'; + } + } + else { + notice( t('No matches') . EOL); + } + + } + return $o; +}
\ No newline at end of file |