]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Objects.php
Use router parameters in Admin modules
[friendica.git] / src / Module / Objects.php
index b5b5227141c1a84808d92c966c714ce72ed4e342..8080289f15866143a2207209d56d3666df448964 100644 (file)
@@ -57,7 +57,7 @@ class Objects extends BaseModule
                        ['order' => ['origin' => true]]
                );
                // Valid items are original post or posted from this node (including in the case of a forum)
-               if (!DBA::isResult($item) || !$item['origin'] && !strstr($item['author-link'], DI::baseUrl()->get())) {
+               if (!DBA::isResult($item) || !$item['origin'] && (parse_url($item['author-link'], PHP_URL_HOST) != parse_url(DI::baseUrl()->get(), PHP_URL_HOST))) {
                        throw new HTTPException\NotFoundException();
                }
 
@@ -65,17 +65,31 @@ class Objects extends BaseModule
                $last_modified = $item['changed'];
                Network::checkEtagModified($etag, $last_modified);
 
-               $activity = ActivityPub\Transmitter::createActivityFromItem($item['id'], true);
-               $activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
+               if (empty($parameters['activity'])) {
+                       $activity = ActivityPub\Transmitter::createActivityFromItem($item['id'], true);
+                       $activity['type'] = $activity['type'] == 'Update' ? 'Create' : $activity['type'];
 
-               // Only display "Create" activity objects here, no reshares or anything else
-               if (empty($activity['object']) || ($activity['type'] != 'Create')) {
+                       // Only display "Create" activity objects here, no reshares or anything else
+                       if (empty($activity['object']) || ($activity['type'] != 'Create')) {
+                               throw new HTTPException\NotFoundException();
+                       }
+
+                       $data = ['@context' => ActivityPub::CONTEXT];
+                       $data = array_merge($data, $activity['object']);
+               } elseif (in_array($parameters['activity'], ['Create', 'Announce', 'Update', 
+                       'Like', 'Dislike', 'Accept', 'Reject', 'TentativeAccept', 'Follow', 'Add'])) {
+                       $data = ActivityPub\Transmitter::createActivityFromItem($item['id']);
+                       if (empty($data)) {
+                               throw new HTTPException\NotFoundException();
+                       }
+                       if ($parameters['activity'] != 'Create') {
+                               $data['type'] = $parameters['activity'];
+                               $data['id'] = str_replace('/Create', '/' . $parameters['activity'], $data['id']);
+                       }
+               } else {
                        throw new HTTPException\NotFoundException();
                }
 
-               $data = ['@context' => ActivityPub::CONTEXT];
-               $data = array_merge($data, $activity['object']);
-
                // Relaxed CORS header for public items
                header('Access-Control-Allow-Origin: *');
                System::jsonExit($data, 'application/activity+json');