mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:42:54 +00:00
Only suggest contacts that haven't failed recently
This commit is contained in:
parent
54a5a80b24
commit
fdfd524e74
1 changed files with 10 additions and 3 deletions
|
@ -2,6 +2,13 @@
|
||||||
|
|
||||||
require_once('include/datetime.php');
|
require_once('include/datetime.php');
|
||||||
|
|
||||||
|
/*
|
||||||
|
To-Do:
|
||||||
|
- noscrape for updating contact fields and "last updated"
|
||||||
|
- use /poco/@global for discovering contacts from other servers
|
||||||
|
- Make search for last activity optional
|
||||||
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* poco_load
|
* poco_load
|
||||||
*
|
*
|
||||||
|
@ -270,9 +277,6 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca
|
||||||
if (($generation == 0) AND ($x[0]['generation'] > 0))
|
if (($generation == 0) AND ($x[0]['generation'] > 0))
|
||||||
$generation = $x[0]['generation'];
|
$generation = $x[0]['generation'];
|
||||||
|
|
||||||
if ($last_contact < $x[0]['last_contact'])
|
|
||||||
$last_contact = $x[0]['last_contact'];
|
|
||||||
|
|
||||||
if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) {
|
if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) {
|
||||||
q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s',
|
q("UPDATE `gcontact` SET `name` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s',
|
||||||
`updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d
|
`updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d
|
||||||
|
@ -360,6 +364,8 @@ function poco_last_updated($profile) {
|
||||||
if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED))
|
if (($data["poll"] == "") OR ($data["network"] == NETWORK_FEED))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// To-Do: Use noscrape
|
||||||
|
|
||||||
$feedret = z_fetch_url($data["poll"]);
|
$feedret = z_fetch_url($data["poll"]);
|
||||||
|
|
||||||
if (!$feedret["success"])
|
if (!$feedret["success"])
|
||||||
|
@ -649,6 +655,7 @@ function suggestion_query($uid, $start = 0, $limit = 80) {
|
||||||
and not gcontact.name in ( select name from contact where uid = %d )
|
and not gcontact.name in ( select name from contact where uid = %d )
|
||||||
and not gcontact.id in ( select gcid from gcign where uid = %d )
|
and not gcontact.id in ( select gcid from gcign where uid = %d )
|
||||||
AND `gcontact`.`updated` != '0000-00-00 00:00:00'
|
AND `gcontact`.`updated` != '0000-00-00 00:00:00'
|
||||||
|
AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
|
||||||
AND `gcontact`.`network` IN (%s)
|
AND `gcontact`.`network` IN (%s)
|
||||||
group by glink.gcid order by gcontact.updated desc,total desc limit %d, %d ",
|
group by glink.gcid order by gcontact.updated desc,total desc limit %d, %d ",
|
||||||
intval($uid),
|
intval($uid),
|
||||||
|
|
Loading…
Reference in a new issue