]> git.mxchange.org Git - friendica.git/commitdiff
Replace $_GET references with $request in Update classes
authorHypolite Petovan <hypolite@mrpetovan.com>
Thu, 5 Jan 2023 15:23:25 +0000 (10:23 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Thu, 5 Jan 2023 15:23:25 +0000 (10:23 -0500)
src/Module/Update/Community.php
src/Module/Update/Network.php
src/Module/Update/Profile.php

index 05d2e94b06b28d1d50cd93ed1a76ee38390475ef..b1e77c42bac7b5e92b9da213adcf87f9ae9a65bc 100644 (file)
@@ -38,7 +38,7 @@ class Community extends CommunityModule
                $this->parseRequest();
 
                $o = '';
-               if (!empty($_GET['force']) || !DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'no_auto_update')) {
+               if (!empty($request['force']) || !DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'no_auto_update')) {
                        $o = DI::conversation()->create(self::getItems(), 'community', true, false, 'commented', DI::userSession()->getLocalUserId());
                }
 
index 323d22cd5b97f27fc4a44d2e7f8f04b99c310032..f8367e2d918379e511ccd8b76150a891c26b1c63 100644 (file)
@@ -31,19 +31,19 @@ class Network extends NetworkModule
 {
        protected function rawContent(array $request = [])
        {
-               if (!isset($_GET['p']) || !isset($_GET['item'])) {
+               if (!isset($request['p']) || !isset($request['item'])) {
                        System::exit();
                }
 
-               $this->parseRequest($_GET);
+               $this->parseRequest($request);
 
-               $profile_uid = intval($_GET['p']);
+               $profile_uid = intval($request['p']);
 
                $o = '';
 
-               if (!DI::pConfig()->get($profile_uid, 'system', 'no_auto_update') || ($_GET['force'] == 1)) {
-                       if (!empty($_GET['item'])) {
-                               $item = Post::selectFirst(['parent'], ['id' => $_GET['item']]);
+               if (!DI::pConfig()->get($profile_uid, 'system', 'no_auto_update') || ($request['force'] == 1)) {
+                       if (!empty($request['item'])) {
+                               $item = Post::selectFirst(['parent'], ['id' => $request['item']]);
                                $parent = $item['parent'] ?? 0;
                        } else {
                                $parent = 0;
index 9eb814bd0125b37fc0e8a1e99f09a86086322144..c2b195134924a2463a0c7871bcd392f971cb3d89 100644 (file)
@@ -39,7 +39,7 @@ class Profile extends BaseModule
                $a = DI::app();
 
                // Ensure we've got a profile owner if updating.
-               $a->setProfileOwner((int)($_GET['p'] ?? 0));
+               $a->setProfileOwner((int)($request['p'] ?? 0));
 
                if (DI::config()->get('system', 'block_public') && !DI::userSession()->getLocalUserId() && !DI::userSession()->getRemoteContactID($a->getProfileOwner())) {
                        throw new ForbiddenException();
@@ -58,7 +58,7 @@ class Profile extends BaseModule
 
                $o = '';
 
-               if (empty($_GET['force']) && DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'no_auto_update')) {
+               if (empty($request['force']) && DI::pConfig()->get(DI::userSession()->getLocalUserId(), 'system', 'no_auto_update')) {
                        System::htmlUpdateExit($o);
                }
 
@@ -73,9 +73,9 @@ class Profile extends BaseModule
                                AND `visible` AND (NOT `deleted` OR `gravity` = ?)
                                AND `wall` " . $sql_extra, $a->getProfileOwner(), Item::GRAVITY_ACTIVITY];
 
-               if ($_GET['force'] && !empty($_GET['item'])) {
+               if ($request['force'] && !empty($request['item'])) {
                        // When the parent is provided, we only fetch this
-                       $condition = DBA::mergeConditions($condition, ['parent' => $_GET['item']]);
+                       $condition = DBA::mergeConditions($condition, ['parent' => $request['item']]);
                } elseif ($is_owner || !$last_updated) {
                        // If the page user is the owner of the page we should query for unseen
                        // items. Otherwise use a timestamp of the last succesful update request.