mirror of
https://github.com/friendica/friendica
synced 2024-11-10 17:02:53 +00:00
Merge pull request #3792 from annando/dead-contacts
Bugfix: Revive dead contacts
This commit is contained in:
commit
26d7cf1d6a
5 changed files with 17 additions and 14 deletions
|
@ -155,7 +155,7 @@ function mark_for_death($contact) {
|
|||
|
||||
function unmark_for_death($contact) {
|
||||
|
||||
$r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` > '%s'",
|
||||
$r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND (`term-date` > '%s' OR `archive`)",
|
||||
intval($contact['id']),
|
||||
dbesc('1000-00-00 00:00:00')
|
||||
);
|
||||
|
@ -166,16 +166,11 @@ function unmark_for_death($contact) {
|
|||
}
|
||||
|
||||
// It's a miracle. Our dead contact has inexplicably come back to life.
|
||||
q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
|
||||
dbesc(NULL_DATE),
|
||||
intval($contact['id'])
|
||||
);
|
||||
$fields = array('term-date' => NULL_DATE, 'archive' => false);
|
||||
dba::update('contact', $fields, array('id' => $contact['id']));
|
||||
|
||||
if ($contact['url'] != '') {
|
||||
q("UPDATE `contact` SET `term-date` = '%s' WHERE `nurl` = '%s'",
|
||||
dbesc(NULL_DATE),
|
||||
dbesc(normalise_link($contact['url']))
|
||||
);
|
||||
dba::update('contact', $fields, array('nurl' => normalise_link($contact['url'])));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
use Friendica\App;
|
||||
use Friendica\Core\System;
|
||||
use Friendica\Network\Probe;
|
||||
|
||||
require_once 'include/probe.php';
|
||||
require_once 'include/socgraph.php';
|
||||
|
@ -71,7 +72,7 @@ function update_contact($id) {
|
|||
|
||||
|
||||
|
||||
function new_contact($uid,$url,$interactive = false) {
|
||||
function new_contact($uid, $url, $interactive = false, $network = '') {
|
||||
|
||||
$result = array('cid' => -1, 'success' => false,'message' => '');
|
||||
|
||||
|
@ -102,9 +103,13 @@ function new_contact($uid,$url,$interactive = false) {
|
|||
|
||||
if (x($arr['contact'],'name')) {
|
||||
$ret = $arr['contact'];
|
||||
} else {
|
||||
$ret = Probe::uri($url, $network, $uid, false);
|
||||
}
|
||||
else {
|
||||
$ret = probe_url($url);
|
||||
|
||||
if (($network != '') && ($ret['network'] != $network)) {
|
||||
logger('Expected network '.$network.' does not match actual network '.$ret['network']);
|
||||
return result;
|
||||
}
|
||||
|
||||
if ($ret['network'] === NETWORK_DFRN) {
|
||||
|
|
|
@ -149,6 +149,9 @@ class ostatus {
|
|||
// Only update the contacts if it is an OStatus contact
|
||||
if ($r && ($r['id'] > 0) && !$onlyfetch && ($contact["network"] == NETWORK_OSTATUS)) {
|
||||
|
||||
// This contact is vital, so we awake it from the dead
|
||||
unmark_for_death($contact);
|
||||
|
||||
// Update contact data
|
||||
|
||||
$current = $contact;
|
||||
|
|
|
@ -244,7 +244,7 @@ function _contact_update($contact_id) {
|
|||
return;
|
||||
|
||||
if ($r[0]["network"] == NETWORK_OSTATUS) {
|
||||
$result = new_contact($uid, $r[0]["url"], false);
|
||||
$result = new_contact($uid, $r[0]["url"], false, $r[0]["network"]);
|
||||
|
||||
if ($result['success'])
|
||||
$r = q("UPDATE `contact` SET `subhub` = 1 WHERE `id` = %d",
|
||||
|
|
|
@ -66,7 +66,7 @@ function ostatus_subscribe_content(App $a) {
|
|||
|
||||
$data = probe_url($url);
|
||||
if ($data["network"] == NETWORK_OSTATUS) {
|
||||
$result = new_contact($uid,$url,true);
|
||||
$result = new_contact($uid, $url, true, NETWORK_OSTATUS);
|
||||
if ($result["success"]) {
|
||||
$o .= " - ".t("success");
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue