]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/FKOAuth1.php
Centralized gsid generation
[friendica.git] / src / Network / FKOAuth1.php
index a3dde38d26029b4d00ab57b95376974f74d901c4..642fab111a1912c205a0318f0e98b8168aa919bd 100644 (file)
@@ -1,25 +1,40 @@
 <?php
 /**
- * @file src/Network/FKOAuth1.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @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\Network;
 
-use Friendica\BaseObject;
-use Friendica\App\Authentication;
 use Friendica\Core\Logger;
-use Friendica\Core\Session;
 use Friendica\Database\DBA;
+use Friendica\DI;
 use OAuthServer;
 use OAuthSignatureMethod_HMAC_SHA1;
 use OAuthSignatureMethod_PLAINTEXT;
 
 /**
- * @brief OAuth protocol
+ * OAuth protocol
  */
 class FKOAuth1 extends OAuthServer
 {
        /**
-        * @brief Constructor
+        * Constructor
         */
        public function __construct()
        {
@@ -37,7 +52,7 @@ class FKOAuth1 extends OAuthServer
        public function loginUser($uid)
        {
                Logger::log("FKOAuth1::loginUser $uid");
-               $a = BaseObject::getApp();
+               $a = DI::app();
                $record = DBA::selectFirst('user', [], ['uid' => $uid, 'blocked' => 0, 'account_expired' => 0, 'account_removed' => 0, 'verified' => 1]);
 
                if (!DBA::isResult($record)) {
@@ -46,8 +61,6 @@ class FKOAuth1 extends OAuthServer
                        die('This api requires login');
                }
 
-               /** @var Authentication $authentication */
-               $authentication = BaseObject::getClass(Authentication::class);
-               $authentication->setForUser($a, $record, true);
+               DI::auth()->setForUser($a, $record, true);
        }
 }