]> 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 d1a0a5dda573183aba2f5f944fe370f5d3140b79..b61cfd4326daa4140f7fb3874fb0c1cec26807c5 100644 (file)
@@ -1,97 +1,53 @@
 <?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\App;
 use Friendica\BaseModule;
-use Friendica\Core\L10n;
-use Friendica\Core\Logger;
-use Friendica\Core\Protocol;
-use Friendica\Database\DBA;
+use Friendica\DI;
 use Friendica\Model\Contact;
-use Friendica\Model\User;
-use Friendica\Protocol\Diaspora;
-use Friendica\Protocol\ActivityPub;
-use Friendica\Util\DateTimeFormat;
 
 /**
  * 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;
                }
 
                $intro_id = intval($_POST['intro_id']   ?? 0);
                $duplex   = intval($_POST['duplex']     ?? 0);
-               $cid      = intval($_POST['contact_id'] ?? 0);
                $hidden   = intval($_POST['hidden']     ?? 0);
 
-               if (empty($cid)) {
-                       notice(L10n::t('No given contact.') . EOL);
-                       return;
-               }
-
-               Logger::info('Confirming follower', ['cid' => $cid]);
-
-               $contact = DBA::selectFirst('contact', [], ['id' => $cid, 'uid' => $uid]);
-               if (!DBA::isResult($contact)) {
-                       Logger::warning('Contact not found in DB.', ['cid' => $cid]);
-                       notice(L10n::t('Contact not found.') . EOL);
-                       return;
-               }
-
-               $relation = $contact['rel'];
-               $new_relation = $contact['rel'];
-               $writable = $contact['writable'];
-
-               if (!empty($contact['protocol'])) {
-                       $protocol = $contact['protocol'];
-               } else {
-                       $protocol = $contact['network'];
-               }
-
-               if ($protocol == Protocol::ACTIVITYPUB) {
-                       ActivityPub\Transmitter::sendContactAccept($contact['url'], $contact['hub-verify'], $uid);
-               }
-
-               if (in_array($protocol, [Protocol::DIASPORA, Protocol::ACTIVITYPUB])) {
-                       if ($duplex) {
-                               $new_relation = Contact::FRIEND;
-                       } else {
-                               $new_relation = Contact::FOLLOWER;
-                       }
-
-                       if ($new_relation != Contact::FOLLOWER) {
-                               $writable = 1;
-                       }
-               }
-
-               $fields = ['name-date' => DateTimeFormat::utcNow(),
-                       'uri-date' => DateTimeFormat::utcNow(),
-                       'blocked' => false, 'pending' => false, 'protocol' => $protocol,
-                       'writable' => $writable, 'hidden' => $hidden, 'rel' => $new_relation];
-               DBA::update('contact', $fields, ['id' => $cid]);
-
-               if ($new_relation == Contact::FRIEND) {
-                       if ($protocol == Protocol::DIASPORA) {
-                               $user = User::getById($uid);
-                               $contact = Contact::getById($cid);
-                               $ret = Diaspora::sendShare($user, $contact);
-                               Logger::info('share returns', ['return' => $ret]);
-                       } elseif ($protocol == Protocol::ACTIVITYPUB) {
-                               ActivityPub\Transmitter::sendActivity('Follow', $contact['url'], $uid);
-                       }
-               }
+               $intro = DI::intro()->selectOneById($intro_id, local_user());
 
-               DBA::delete('intro', ['id' => $intro_id]);
+               Contact\Introduction::confirm($intro, $duplex, $hidden);
+               DI::intro()->delete($intro);
 
-               $a->internalRedirect('contact/' . intval($cid));
+               DI::baseUrl()->redirect('contact/' .  $intro->cid);
        }
 }