Discovery for unchecked contacts
This commit is contained in:
parent
166519fc4d
commit
7136a39f9e
1 changed files with 9 additions and 5 deletions
|
@ -82,19 +82,23 @@ function discover_poco_run(&$argv, &$argc){
|
|||
}
|
||||
|
||||
function discover_users() {
|
||||
$users = q("SELECT `url` FROM `gcontact` WHERE `updated` = '0000-00-00 00:00:00' AND
|
||||
`last_contact` = '0000-00-00 00:00:00' AND `last_failure` = '0000-00-00 00:00:00' AND
|
||||
`network` IN ('%s', '%s', '%s') ORDER BY rand() LIMIT 50",
|
||||
// To-Do: Maybe we should check old contact as well.
|
||||
$users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact` FROM `gcontact`
|
||||
WHERE `updated` = '0000-00-00 00:00:00' AND `last_contact` = '0000-00-00 00:00:00' AND
|
||||
`last_failure` = '0000-00-00 00:00:00' AND `network` IN ('%s', '%s', '%s')
|
||||
ORDER BY rand() LIMIT 100",
|
||||
dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
|
||||
|
||||
if (!$users)
|
||||
return;
|
||||
|
||||
foreach ($users AS $user) {
|
||||
if (poco_do_update($user["created"], $user["updated"], $user["last_failure"], $user["last_contact"])) {
|
||||
logger('Check user '.$user["url"]);
|
||||
poco_last_updated($user["url"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function discover_directory($search) {
|
||||
|
||||
|
|
Loading…
Reference in a new issue