aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Libzotdir.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2023-04-12 18:24:44 +0200
committerMario Vavti <mario@mariovavti.com>2023-04-12 18:24:44 +0200
commitbdf1b23198ed958942f30c7103995231afd2f5da (patch)
treedc88bd01ebab4e848468e526f98d229b354adb9a /Zotlabs/Lib/Libzotdir.php
parent6f1c261f6bc740d3a8a0c3b8540b7a5712c20cfd (diff)
downloadvolse-hubzilla-bdf1b23198ed958942f30c7103995231afd2f5da.tar.gz
volse-hubzilla-bdf1b23198ed958942f30c7103995231afd2f5da.tar.bz2
volse-hubzilla-bdf1b23198ed958942f30c7103995231afd2f5da.zip
reset ud_last if we had contact and some cleanup
Diffstat (limited to 'Zotlabs/Lib/Libzotdir.php')
-rw-r--r--Zotlabs/Lib/Libzotdir.php50
1 files changed, 28 insertions, 22 deletions
diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php
index bb7efe501..c595f0b3f 100644
--- a/Zotlabs/Lib/Libzotdir.php
+++ b/Zotlabs/Lib/Libzotdir.php
@@ -334,32 +334,37 @@ class Libzotdir {
logger('update_directory_entry: ' . print_r($ud,true), LOGGER_DATA);
- if ($ud['ud_hash'] /* && (! ($ud['ud_flags'] & UPDATE_FLAGS_DELETED))*/) {
- $success = false;
- $zf = [];
+ if (!$ud['ud_hash'] && !$ud['ud_addr']) {
+ return;
+ }
- $href = ((strpos($ud['ud_addr'], '://') === false) ? Webfinger::zot_url(punify($ud['ud_addr'])) : punify($ud['ud_addr']));
- if($href) {
- $zf = Zotfinger::exec($href);
- }
- if(array_path_exists('signature/signer',$zf) && $zf['signature']['signer'] === $href && intval($zf['signature']['header_valid'])) {
- $xc = Libzot::import_xchan($zf['data']);
- // This is a workaround for a missing xchan_updated column
- // TODO: implement xchan_updated in the xchan table and update this column instead
- if($zf['data']['primary_location']['address'] && $zf['data']['primary_location']['url']) {
- q("UPDATE hubloc SET hubloc_updated = '%s' WHERE hubloc_id_url = '%s' AND hubloc_primary = 1",
- dbesc(datetime_convert()),
- dbesc($zf['data']['primary_location']['url'])
- );
- }
- }
- else {
- q("UPDATE updates SET ud_last = '%s' WHERE ud_hash = '%s'",
+ $href = ((strpos($ud['ud_addr'], '://') === false) ? Webfinger::zot_url(punify($ud['ud_addr'])) : punify($ud['ud_addr']));
+ if(!$href) {
+ return;
+ }
+
+ $zf = Zotfinger::exec($href);
+
+ if(array_path_exists('signature/signer',$zf) && $zf['signature']['signer'] === $href && intval($zf['signature']['header_valid'])) {
+ $xc = Libzot::import_xchan($zf['data']);
+ // This is a workaround for a missing xchan_updated column
+ // TODO: implement xchan_updated in the xchan table and update this column instead
+ if($zf['data']['primary_location']['address'] && $zf['data']['primary_location']['url']) {
+ q("UPDATE hubloc SET hubloc_updated = '%s' WHERE hubloc_id_url = '%s' AND hubloc_primary = 1",
dbesc(datetime_convert()),
- dbesc($ud['ud_hash'])
+ dbesc($zf['data']['primary_location']['url'])
);
}
+
+ return true;
}
+
+ q("UPDATE updates SET ud_last = '%s' WHERE ud_hash = '%s'",
+ dbesc(datetime_convert()),
+ dbesc($ud['ud_hash'])
+ );
+
+ return false;
}
@@ -676,8 +681,9 @@ class Libzotdir {
);
if ($u) {
- $x = q("UPDATE updates SET ud_date = '%s', ud_guid = '%s', ud_addr = '%s', ud_flags = 0 WHERE ud_id = %d",
+ $x = q("UPDATE updates SET ud_date = '%s', ud_last = '%s', ud_guid = '%s', ud_addr = '%s', ud_flags = 0 WHERE ud_id = %d",
dbesc(datetime_convert()),
+ dbesc(NULL_DATE),
dbesc(\App::get_hostname()),
dbesc($addr),
intval($u[0]['ud_id'])