]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Following.php
Group selection: Respect "pubmail" and ignore atchived or blocked contacts
[friendica.git] / src / Module / Following.php
index 6023db4cbe72ff821797355e0c2aa5862154d263..8eaa1835c2eb3eebb8c0080d70a40cce16ba5681 100644 (file)
@@ -5,31 +5,33 @@
 namespace Friendica\Module;
 
 use Friendica\BaseModule;
-use Friendica\Protocol\ActivityPub;
 use Friendica\Core\System;
 use Friendica\Model\User;
+use Friendica\Protocol\ActivityPub;
 
 /**
  * ActivityPub Following
  */
 class Following extends BaseModule
 {
-       public static function rawContent()
+       public static function rawContent(array $parameters = [])
        {
                $a = self::getApp();
 
+               // @TODO: Replace with parameter from router
                if (empty($a->argv[1])) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
+               // @TODO: Replace with parameter from router
                $owner = User::getOwnerDataByNick($a->argv[1]);
                if (empty($owner)) {
-                       System::httpExit(404);
+                       throw new \Friendica\Network\HTTPException\NotFoundException();
                }
 
-               $page = defaults($_REQUEST, 'page', null);
+               $page = $_REQUEST['page'] ?? null;
 
-               $Following = ActivityPub::getFollowing($owner, $page);
+               $Following = ActivityPub\Transmitter::getFollowing($owner, $page);
 
                header('Content-Type: application/activity+json');
                echo json_encode($Following);