]> git.mxchange.org Git - friendica.git/commitdiff
Remove deprecated App::getUrlPath - process methods to DI::baseUrl()->getUrlPath()
authornupplaPhil <admin@philipp.info>
Sun, 15 Dec 2019 23:39:54 +0000 (00:39 +0100)
committernupplaPhil <admin@philipp.info>
Sun, 29 Dec 2019 19:17:46 +0000 (20:17 +0100)
mod/dfrn_request.php
mod/redir.php
mod/settings.php
src/App.php
src/Model/Contact.php
src/Module/Admin/Site.php
src/Module/Magic.php
src/Module/Profile.php
view/theme/frio/php/default.php

index f7c9d9aafc1d97ce12252f66d254ecf729142c2c..24548c027ac4cdf54d9c773f059e5ebd2a195196 100644 (file)
@@ -457,8 +457,8 @@ function dfrn_request_post(App $a)
                        if ($network == Protocol::DIASPORA) {
                                $uri = $nickname . '@' . $a->getHostName();
 
-                               if ($a->getURLPath()) {
-                                       $uri .= '/' . $a->getURLPath();
+                               if (DI::baseUrl()->getUrlPath()) {
+                                       $uri .= '/' . DI::baseUrl()->getUrlPath();
                                }
 
                                $uri = urlencode($uri);
@@ -610,7 +610,7 @@ function dfrn_request_content(App $a)
                } elseif (!empty($_GET['address'])) {
                        $myaddr = $_GET['address'];
                } elseif (local_user()) {
-                       if (strlen($a->getURLPath())) {
+                       if (strlen(DI::baseUrl()->getUrlPath())) {
                                $myaddr = System::baseUrl() . '/profile/' . $a->user['nickname'];
                        } else {
                                $myaddr = $a->user['nickname'] . '@' . substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3);
index 57f96a7ac6d9e73ee62f66ad4c4a281895f09583..6083117b4064a1bbaf72cb9ca38dcd56522a468a 100644 (file)
@@ -60,7 +60,7 @@ function redir_init(App $a) {
                }
 
                if (remote_user()) {
-                       $host = substr($a->getBaseURL() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''), strpos($a->getBaseURL(), '://') + 3);
+                       $host = substr(DI::baseUrl()->getUrlPath() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : ''), strpos(DI::baseUrl()->getUrlPath(), '://') + 3);
                        $remotehost = substr($contact['addr'], strpos($contact['addr'], '@') + 1);
 
                        // On a local instance we have to check if the local user has already authenticated
index 416a8adcda88c19aa652fa010365617304b9f4ca..c01d17938839a88c478459b729bde91576830121 100644 (file)
@@ -1127,7 +1127,7 @@ function settings_content(App $a)
        $tpl_addr = Renderer::getMarkupTemplate('settings/nick_set.tpl');
 
        $prof_addr = Renderer::replaceMacros($tpl_addr,[
-               '$desc' => L10n::t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . $a->getHostName() . $a->getURLPath(), System::baseUrl() . '/profile/' . $nickname),
+               '$desc' => L10n::t("Your Identity Address is <strong>'%s'</strong> or '%s'.", $nickname . '@' . $a->getHostName() . DI::baseUrl()->getUrlPath(), System::baseUrl() . '/profile/' . $nickname),
                '$basepath' => $a->getHostName()
        ]);
 
index d04c6f32359c074af18a9d02c828f20fc042e302..01702967e2d147401d370286e81d60769ef7d587 100644 (file)
@@ -311,18 +311,6 @@ class App
                return $this->baseURL->getHostname();
        }
 
-       /**
-        * Returns the sub-path of the full URL
-        *
-        * @return string
-        *
-        * @deprecated 2019.06 - use BaseURL->getUrlPath() instead
-        */
-       public function getURLPath()
-       {
-               return $this->baseURL->getUrlPath();
-       }
-
        /**
         * Returns the current UserAgent as a String
         *
index 8d4b8c631270ee91cbfd7c1e06f86a850113049e..f06156d01e3b2045ebf4d0b18163f00889b43889 100644 (file)
@@ -2266,7 +2266,7 @@ class Contact
 
                if (($protocol === Protocol::DFRN) && !DBA::isResult($contact)) {
                        if ($interactive) {
-                               if (strlen($a->getURLPath())) {
+                               if (strlen(DI::baseUrl()->getUrlPath())) {
                                        $myaddr = bin2hex(System::baseUrl() . '/profile/' . $a->user['nickname']);
                                } else {
                                        $myaddr = bin2hex($a->user['nickname'] . '@' . $a->getHostName());
index 42b35edff30e76cc28f4828972cd99ad82ef9fb4..6467bd4c524a4f59d47c85a61dbd3e0717eacb8c 100644 (file)
@@ -242,7 +242,7 @@ class Site extends BaseAdminModule
                        Worker::add(PRIORITY_LOW, 'Directory');
                }
 
-               if ($a->getURLPath() != "") {
+               if (DI::baseUrl()->getUrlPath() != "") {
                        $diaspora_enabled = false;
                }
                if ($ssl_policy != intval(Config::get('system', 'ssl_policy'))) {
@@ -523,7 +523,7 @@ class Site extends BaseAdminModule
                        'develop' => L10n::t('check the development version')
                ];
 
-               $diaspora_able = ($a->getURLPath() == '');
+               $diaspora_able = (DI::baseUrl()->getUrlPath() == '');
 
                $optimize_max_tablesize = Config::get('system', 'optimize_max_tablesize', -1);
 
index d34f7e874405b08a98fa968cc160cf8dfef7f9e6..b0d2b82b285ab7fcc716861d689a1021a4634dce 100644 (file)
@@ -80,7 +80,7 @@ class Magic extends BaseModule
                                $headers = HTTPSignature::createSig(
                                        $headers,
                                        $user['prvkey'],
-                                       'acct:' . $user['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : '')
+                                       'acct:' . $user['nickname'] . '@' . $a->getHostName() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : '')
                                );
 
                                // Try to get an authentication token from the other instance.
index 0515d22e18913e309f5422b6064bd91684e1ceb5..cbb953dd7569e64fee64bbe5d1d9e92917894f5d 100644 (file)
@@ -120,7 +120,7 @@ class Profile extends BaseModule
                        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/" title="' . L10n::t('%s\'s posts', $a->profile['username']) . '"/>' . "\n";
                        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/comments" title="' . L10n::t('%s\'s comments', $a->profile['username']) . '"/>' . "\n";
                        $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . System::baseUrl() . '/feed/' . self::$which . '/activity" title="' . L10n::t('%s\'s timeline', $a->profile['username']) . '"/>' . "\n";
-                       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : ''));
+                       $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . (DI::baseUrl()->getUrlPath() ? '/' . DI::baseUrl()->getUrlPath() : ''));
                        $a->page['htmlhead'] .= '<link rel="lrdd" type="application/xrd+xml" href="' . System::baseUrl() . '/xrd/?uri=' . $uri . '" />' . "\n";
                        header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false);
 
index 6b39e68acbe078fd47d7186dd24bf93795faa800..73ceea5845fb5f8f650bdd929cc03bd215d920f3 100644 (file)
@@ -10,6 +10,7 @@
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
+use Friendica\DI;
 use Friendica\Model\Profile;
 
 require_once 'view/theme/frio/php/frio_boot.php';
@@ -19,7 +20,7 @@ if (!isset($minimal)) {
        $minimal = false;
 }
 
-$basepath = $a->getURLPath() ? "/" . $a->getURLPath() . "/" : "/";
+$basepath = DI::baseUrl()->getUrlPath() ? "/" . DI::baseUrl()->getUrlPath() . "/" : "/";
 $frio = "view/theme/frio";
 $view_mode_class = ($a->is_mobile || $a->is_tablet) ? 'mobile-view' : 'desktop-view';
 $is_singleuser = Config::get('system', 'singleuser');