]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/WellKnown/NodeInfo.php
Merge remote-tracking branch 'upstream/2021.06-rc' into public-timeline
[friendica.git] / src / Module / WellKnown / NodeInfo.php
index 7d87252eddf1eed891973bf3aeb3816c7fe64bee..a8d0768929f20f0b58253c511782857a5e4a3c4e 100644 (file)
@@ -1,9 +1,28 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2021, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Module\WellKnown;
 
-use Friendica\App;
 use Friendica\BaseModule;
+use Friendica\DI;
 
 /**
  * Standardized way of exposing metadata about a server running one of the distributed social networks.
@@ -13,26 +32,22 @@ class NodeInfo extends BaseModule
 {
        public static function rawContent(array $parameters = [])
        {
-               $app = self::getApp();
-
-               self::printWellKnown($app);
+               self::printWellKnown();
        }
 
        /**
         * Prints the well-known nodeinfo redirect
         *
-        * @param App $app
-        *
         * @throws \Friendica\Network\HTTPException\NotFoundException
         */
-       private static function printWellKnown(App $app)
+       private static function printWellKnown()
        {
                $nodeinfo = [
                        'links' => [
                                ['rel'  => 'http://nodeinfo.diaspora.software/ns/schema/1.0',
-                               'href' => $app->getBaseURL() . '/nodeinfo/1.0'],
+                               'href' => DI::baseUrl()->get() . '/nodeinfo/1.0'],
                                ['rel'  => 'http://nodeinfo.diaspora.software/ns/schema/2.0',
-                               'href' => $app->getBaseURL() . '/nodeinfo/2.0'],
+                               'href' => DI::baseUrl()->get() . '/nodeinfo/2.0'],
                        ]
                ];