diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-05-02 01:54:59 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-05-02 01:54:59 -0400 |
commit | b3680c0d266f06d2474cb45750b0486d246a8315 (patch) | |
tree | 9b9f482f611b6dd91866518387b79140c6567be7 /include/socgraph.php | |
parent | c96b40ab5fff900cf6cbec6f16f1b3e88116fe96 (diff) | |
parent | becdb1f5085f2561b8b0acebbdbf43e4a81d50da (diff) | |
download | volse-hubzilla-b3680c0d266f06d2474cb45750b0486d246a8315.tar.gz volse-hubzilla-b3680c0d266f06d2474cb45750b0486d246a8315.tar.bz2 volse-hubzilla-b3680c0d266f06d2474cb45750b0486d246a8315.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
final touches - show friends in common with total strangers from different sites
fix size
cross fingers
reduce the scope a bit
add template
fn not found
really fat fingers today - though none of this has gone further than my own site
another one
typo
first try common friends for visitors
* master:
Diffstat (limited to 'include/socgraph.php')
-rw-r--r-- | include/socgraph.php | 41 |
1 files changed, 38 insertions, 3 deletions
diff --git a/include/socgraph.php b/include/socgraph.php index 4a1c8a1ca..a08d58074 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -182,23 +182,58 @@ function count_common_friends($uid,$cid) { } -function common_friends($uid,$cid) { +function common_friends($uid,$cid,$limit=9999) { $r = q("SELECT `gcontact`.* FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` where `glink`.`cid` = %d and `glink`.`uid` = %d and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) - order by `gcontact`.`name` asc ", + order by `gcontact`.`name` asc limit 0, %d", intval($cid), intval($uid), intval($uid), - intval($cid) + intval($cid), + intval($limit) ); return $r; } + +function count_common_friends_zcid($uid,$zcid) { + + $r = q("SELECT count(*) as `total` + FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` + where `glink`.`zcid` = %d + and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 ) ", + intval($zcid), + intval($uid) + ); + + if(count($r)) + return $r[0]['total']; + return 0; + +} + +function common_friends_zcid($uid,$zcid,$limit = 6) { + + $r = q("SELECT `gcontact`.* + FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` + where `glink`.`zcid` = %d + and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 ) + order by `gcontact`.`name` asc limit 0, %d", + intval($zcid), + intval($uid), + intval($limit) + ); + + return $r; + +} + + function count_all_friends($uid,$cid) { $r = q("SELECT count(*) as `total` |