From 3c88c5e66aaf45015726b86c4127266ee073e8e4 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 6 Mar 2024 13:02:22 +0000 Subject: cleanup context and introduce schema:identifier for future use --- Zotlabs/Lib/Activity.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php index 0275c87ac..4c89e22bd 100644 --- a/Zotlabs/Lib/Activity.php +++ b/Zotlabs/Lib/Activity.php @@ -3535,21 +3535,17 @@ class Activity { 'schema' => 'http://schema.org#', 'ostatus' => 'http://ostatus.org#', 'diaspora' => 'https://diasporafoundation.org/ns/', + 'litepub' => 'http://litepub.social/ns#', 'commentPolicy' => 'zot:commentPolicy', - 'locationAddress' => 'zot:locationAddress', - 'locationPrimary' => 'zot:locationPrimary', - 'locationDeleted' => 'zot:locationDeleted', - 'nomadicLocation' => 'zot:nomadicLocation', - 'nomadicHubs' => 'zot:nomadicHubs', - 'emojiReaction' => 'zot:emojiReaction', - 'expires' => 'zot:expires', - 'directMessage' => 'zot:directMessage', 'Bookmark' => 'zot:Bookmark', 'Category' => 'zot:Category', + 'directMessage' => 'litepub:directMessage', + 'PropertyValue' => 'schema:PropertyValue', 'value' => 'schema:value', + 'uuid' => 'schema:identifier', 'conversation' => 'ostatus:conversation', -- cgit v1.2.3 From 69bed9c889a5c153f7b9cece49be3b81bde24e32 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 6 Mar 2024 13:04:06 +0000 Subject: minor mod thing fixes --- Zotlabs/Module/Thing.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Zotlabs') diff --git a/Zotlabs/Module/Thing.php b/Zotlabs/Module/Thing.php index 8a1591442..3bf902fb0 100644 --- a/Zotlabs/Module/Thing.php +++ b/Zotlabs/Module/Thing.php @@ -302,6 +302,8 @@ class Thing extends \Zotlabs\Web\Controller { return; } + profile_load($channel['channel_address']); + $acl = new \Zotlabs\Access\AccessList($channel); $channel_acl = $acl->get(); -- cgit v1.2.3 From b5b8106e7a14d11579de6479187a4a920b3aaab9 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 6 Mar 2024 16:08:53 +0000 Subject: minor refactor --- Zotlabs/Module/Thing.php | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'Zotlabs') diff --git a/Zotlabs/Module/Thing.php b/Zotlabs/Module/Thing.php index 3bf902fb0..2038db8c0 100644 --- a/Zotlabs/Module/Thing.php +++ b/Zotlabs/Module/Thing.php @@ -21,10 +21,12 @@ class Thing extends \Zotlabs\Web\Controller { dbesc(argv(1)) ); - if($r) { - $sql_extra = permissions_sql($r[0]['obj_channel']); + if (!$r) { + http_status_exit(404, 'Not found'); } + $sql_extra = permissions_sql($r[0]['obj_channel']); + $r = q("select * from obj where obj_type = %d and obj_obj = '%s' $sql_extra limit 1", intval(TERM_OBJ_THING), dbesc(argv(1)) @@ -36,6 +38,7 @@ class Thing extends \Zotlabs\Web\Controller { } http_status_exit(404, 'Not found'); + } } @@ -269,8 +272,13 @@ class Thing extends \Zotlabs\Web\Controller { intval(TERM_OBJ_THING), dbesc(argv(1)) ); - if($r) - $sql_extra = permissions_sql($r[0]['obj_channel']); + + if (!$r) { + notice( t('item not found.') . EOL); + return; + } + + $sql_extra = permissions_sql($r[0]['obj_channel']); $r = q("select * from obj where obj_type = %d and obj_obj = '%s' $sql_extra limit 1", intval(TERM_OBJ_THING), -- cgit v1.2.3