X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fsocgraph.php;h=07dafe7f886abc7d13efb9a860af9f0f61f9be00;hb=3da3cd686cc7fa51e2c98e98dbf8bd3a65880bdd;hp=04e9a9a64b1cd41b625e7d2922b6877c013bce05;hpb=158028a0ac00e388347ac366c88ad07c0fe4bfb9;p=friendica.git diff --git a/include/socgraph.php b/include/socgraph.php index 04e9a9a64b..07dafe7f88 100644 --- a/include/socgraph.php +++ b/include/socgraph.php @@ -22,17 +22,26 @@ require_once('include/datetime.php'); function poco_load($cid,$uid = 0,$url = null) { $a = get_app(); - if((! $url) || (! $uid)) { - $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1", - intval($cid) - ); - if(count($r)) { - $url = $r[0]['poco']; - $uid = $r[0]['uid']; + + if($cid) { + if((! $url) || (! $uid)) { + $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1", + intval($cid) + ); + if(count($r)) { + $url = $r[0]['poco']; + $uid = $r[0]['uid']; + } } + if(! $uid) + return; } - if((! $url) || (! $uid)) + + if(! $url) return; + + logger('poco_load: ' . $url, LOGGER_DATA); + $s = fetch_url($url . '/@me/@all?fields=displayName,urls,photos'); if(($a->get_curl_code() > 299) || (! $s)) @@ -65,6 +74,7 @@ function poco_load($cid,$uid = 0,$url = null) { $x = q("select * from `gcontact` where `nurl` = '%s' limit 1", dbesc(normalise_link($profile_url)) ); + if(count($x)) { $gcid = $x[0]['id']; @@ -150,7 +160,8 @@ function common_friends($uid,$cid) { $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 ) ", + and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and id != %d ) + order by `gcontact`.`name` asc ", intval($cid), intval($uid), intval($uid), @@ -161,16 +172,65 @@ function common_friends($uid,$cid) { } +function count_all_friends($uid,$cid) { + + $r = q("SELECT count(*) as `total` + FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` + where `glink`.`cid` = %d and `glink`.`uid` = %d ", + intval($cid), + intval($uid) + ); + + if(count($r)) + return $r[0]['total']; + return 0; + +} + + +function all_friends($uid,$cid,$start = 0, $limit = 80) { + + $r = q("SELECT `gcontact`.* + FROM `glink` left join `gcontact` on `glink`.`gcid` = `gcontact`.`id` + where `glink`.`cid` = %d and `glink`.`uid` = %d + order by `gcontact`.`name` asc LIMIT %d, %d ", + intval($cid), + intval($uid), + intval($start), + intval($limit) + ); + + return $r; +} + function suggestion_query($uid, $start = 0, $limit = 40) { + if(! $uid) + return array(); + $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact left join glink on glink.gcid = gcontact.id where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d) + and not gcontact.id in ( select gcid from gcign where uid = %d ) group by glink.gcid order by total desc limit %d, %d ", intval($uid), intval($uid), + intval($uid), + intval($start), + intval($limit) + ); + + if(count($r)) + return $r; + + $r = q("SELECT gcontact.* from gcontact + left join glink on glink.gcid = gcontact.id + where uid = 0 and cid = 0 and not gcontact.nurl in ( select nurl from contact where uid = %d) + and not gcontact.id in ( select gcid from gcign where uid = %d ) + order by rand limit %d, %d ", + intval($uid), intval($start), intval($limit) ); @@ -178,3 +238,40 @@ function suggestion_query($uid, $start = 0, $limit = 40) { return $r; } + +function update_suggestions() { + + $a = get_app(); + + $done = array(); + + poco_load(0,0,$a->get_baseurl() . '/poco'); + + $done[] = $a->get_baseurl() . '/poco'; + + if(strlen(get_config('system','directory_submit_url'))) { + $x = fetch_url('http://dir.friendica.com/pubsites'); + if($x) { + $j = json_decode($x); + if($j->entries) { + foreach($j->entries as $entry) { + $url = $entry->url . '/poco'; + if(! in_array($url,$done)) + poco_load(0,0,$entry->url . '/poco'); + } + } + } + } + + $r = q("select distinct(poco) as poco from contact where network = '%s'", + dbesc(NETWORK_DFRN) + ); + + if(count($r)) { + foreach($r as $rr) { + $base = substr($rr['poco'],0,strrpos($rr['poco'],'/')); + if(! in_array($base,$done)) + poco_load(0,0,$base); + } + } +}