diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-08-26 20:15:21 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-08-26 20:15:21 +0200 |
commit | 5aaa8f44a284a9c6c69f0c4bb11d59cb3c048b36 (patch) | |
tree | ba74df7af87e2d29a0913cf47e4c51394080b23e /Zotlabs/Module | |
parent | 1fbc6fa431aa820382f1a457644f5307efc68c90 (diff) | |
download | volse-hubzilla-5aaa8f44a284a9c6c69f0c4bb11d59cb3c048b36.tar.gz volse-hubzilla-5aaa8f44a284a9c6c69f0c4bb11d59cb3c048b36.tar.bz2 volse-hubzilla-5aaa8f44a284a9c6c69f0c4bb11d59cb3c048b36.zip |
remove hublocs without a hubloc_hash and also remove hublocs where hubloc_id_url could not be fixed
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Fhubloc_id_url.php | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/Zotlabs/Module/Fhubloc_id_url.php b/Zotlabs/Module/Fhubloc_id_url.php index 3d27df4fa..a5627a33d 100644 --- a/Zotlabs/Module/Fhubloc_id_url.php +++ b/Zotlabs/Module/Fhubloc_id_url.php @@ -10,11 +10,16 @@ class Fhubloc_id_url extends \Zotlabs\Web\Controller { if(! is_site_admin()) return; - // completely remove broken xchan entries - $r = dbq("DELETE FROM xchan WHERE xchan_hash = ''"); + q("START TRANSACTION"); + + // remove broken xchan entries + $r0 = dbq("DELETE FROM xchan WHERE xchan_hash = ''"); + + // remove broken hubloc entries + $r1 = dbq("DELETE FROM hubloc WHERE hubloc_hash = ''"); // fix legacy zot hubloc_id_url - $r1 = dbq("UPDATE hubloc + $r2 = dbq("UPDATE hubloc SET hubloc_id_url = CONCAT(hubloc_url, '/channel/', SUBSTRING(hubloc_addr FROM 1 FOR POSITION('@' IN hubloc_addr) -1)) WHERE hubloc_network = 'zot' AND hubloc_id_url = ''" @@ -23,13 +28,13 @@ class Fhubloc_id_url extends \Zotlabs\Web\Controller { // fix singleton networks hubloc_id_url if(ACTIVE_DBTYPE == DBTYPE_MYSQL) { // fix entries for activitypub which miss the xchan_url due to an earlier bug - $r2 = dbq("UPDATE xchan + $r3 = dbq("UPDATE xchan SET xchan_url = xchan_hash WHERE xchan_network = 'activitypub' AND xchan_url = ''" ); - $r3 = dbq("UPDATE hubloc + $r4 = dbq("UPDATE hubloc LEFT JOIN xchan ON hubloc.hubloc_hash = xchan.xchan_hash SET hubloc.hubloc_id_url = xchan.xchan_url WHERE hubloc.hubloc_network IN ('activitypub', 'diaspora', 'friendica-over-diaspora', 'gnusoc') @@ -40,13 +45,13 @@ class Fhubloc_id_url extends \Zotlabs\Web\Controller { } if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { // fix entries for activitypub which miss the xchan_url due to an earlier bug - $r2 = dbq("UPDATE xchan + $r3 = dbq("UPDATE xchan SET xchan_url = xchan_hash WHERE xchan_network = 'activitypub' AND xchan_url = ''" ); - $r3 = dbq("UPDATE hubloc + $r4 = dbq("UPDATE hubloc SET hubloc_id_url = xchan_url FROM xchan WHERE hubloc_hash = xchan_hash @@ -58,9 +63,17 @@ class Fhubloc_id_url extends \Zotlabs\Web\Controller { } - if($r && $r1 && $r2 && $r3) + if($r0 && $r1 && $r2 && $r3 && $r4) { + // remove hubloc entries where hubloc_id_url could not be fixed + $r5 = dbq("DELETE FROM hubloc WHERE hubloc_id_url = ''"); + } + + if($r0 && $r1 && $r2 && $r3 && $r4 && $r5) { + q("COMMIT"); return 'Completed'; - else - return 'Failed'; + } + + q("ROLLBACK"); + return 'Failed'; } } |