import_xchan - check every known hubloc/location field and create a new hubloc if anything at all changed anywhere.
This commit is contained in:
parent
83e086edcd
commit
94417eecba
@ -578,13 +578,18 @@ function import_xchan($arr) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = q("select * from hubloc where hubloc_hash = '%s' and hubloc_guid = '%s' and hubloc_guid_sig = '%s'
|
// match as many fields as possible in case anything at all changed.
|
||||||
and hubloc_url = '%s' and hubloc_url_sig = '%s' limit 1",
|
|
||||||
|
$r = q("select * from hubloc where hubloc_hash = '%s' and hubloc_guid = '%s' and hubloc_guid_sig = '%s' and hubloc_url = '%s' and hubloc_url_sig = '%s' and hubloc_host = '%s' and hubloc_addr = '%s' and hubloc_callback = '%s' and hubloc_sitekey = '%s' limit 1",
|
||||||
dbesc($xchan_hash),
|
dbesc($xchan_hash),
|
||||||
dbesc($arr['guid']),
|
dbesc($arr['guid']),
|
||||||
dbesc($arr['guid_sig']),
|
dbesc($arr['guid_sig']),
|
||||||
dbesc($location['url']),
|
dbesc($location['url']),
|
||||||
dbesc($location['url_sig'])
|
dbesc($location['url_sig']),
|
||||||
|
dbesc($location['host']),
|
||||||
|
dbesc($location['address']),
|
||||||
|
dbesc($location['callback']),
|
||||||
|
dbesc($location['sitekey'])
|
||||||
);
|
);
|
||||||
if($r) {
|
if($r) {
|
||||||
logger('import_xchan: hub exists: ' . $location['url']);
|
logger('import_xchan: hub exists: ' . $location['url']);
|
||||||
@ -600,7 +605,6 @@ function import_xchan($arr) {
|
|||||||
dbesc(datetime_convert()),
|
dbesc(datetime_convert()),
|
||||||
intval($r[0]['hubloc_id'])
|
intval($r[0]['hubloc_id'])
|
||||||
);
|
);
|
||||||
|
|
||||||
$changed = true;
|
$changed = true;
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
|
@ -1 +1 @@
|
|||||||
2013-09-13.435
|
2013-09-14.436
|
||||||
|
Reference in New Issue
Block a user