]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/FollowConfirm.php
Use rawContent for Special Options to avoid a protected options() method
[friendica.git] / src / Module / FollowConfirm.php
index 5e9ab0481ce436ae5aa0409522504ff50f642475..b61cfd4326daa4140f7fb3874fb0c1cec26807c5 100644 (file)
@@ -1,22 +1,41 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2022, 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;
 
 use Friendica\BaseModule;
-use Friendica\Core\L10n;
-use Friendica\Model\Introduction;
+use Friendica\DI;
+use Friendica\Model\Contact;
 
 /**
  * Process follow request confirmations
  */
 class FollowConfirm extends BaseModule
 {
-       public static function post(array $parameters = [])
+       protected function post(array $request = [])
        {
-               $a = self::getApp();
-
+               parent::post($request);
                $uid = local_user();
                if (!$uid) {
-                       notice(L10n::t('Permission denied.') . EOL);
+                       notice(DI::l10n()->t('Permission denied.'));
                        return;
                }
 
@@ -24,14 +43,11 @@ class FollowConfirm extends BaseModule
                $duplex   = intval($_POST['duplex']     ?? 0);
                $hidden   = intval($_POST['hidden']     ?? 0);
 
-               /** @var Introduction $Intro */
-               $Intro = self::getClass(Introduction::class);
-               $Intro->fetch(['id' => $intro_id, 'uid' => local_user()]);
-
-               $cid = $Intro->{'contact-id'};
+               $intro = DI::intro()->selectOneById($intro_id, local_user());
 
-               $Intro->confirm($duplex, $hidden);
+               Contact\Introduction::confirm($intro, $duplex, $hidden);
+               DI::intro()->delete($intro);
 
-               $a->internalRedirect('contact/' . intval($cid));
+               DI::baseUrl()->redirect('contact/' .  $intro->cid);
        }
 }