friendica/src/Module/FollowConfirm.php

54 lines
1.6 KiB
PHP
Raw Permalink Normal View History

<?php
2022-01-02 10:49:50 +01:00
/**
* @copyright Copyright (C) 2010-2024, the Friendica project
2022-01-02 10:49:50 +01:00
*
* @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\DI;
2021-10-21 21:41:26 +02:00
use Friendica\Model\Contact;
2019-05-06 20:46:30 +02:00
/**
* Process follow request confirmations
*/
class FollowConfirm extends BaseModule
{
protected function post(array $request = [])
{
parent::post($request);
$uid = DI::userSession()->getLocalUserId();
if (!$uid) {
2022-10-17 20:55:22 +02:00
DI::sysmsg()->addNotice(DI::l10n()->t('Permission denied.'));
return;
}
$intro_id = intval($_POST['intro_id'] ?? 0);
$duplex = intval($_POST['duplex'] ?? 0);
$hidden = intval($_POST['hidden'] ?? 0);
$intro = DI::intro()->selectOneById($intro_id, DI::userSession()->getLocalUserId());
2021-10-21 21:41:26 +02:00
Contact\Introduction::confirm($intro, $duplex, $hidden);
DI::intro()->delete($intro);
DI::baseUrl()->redirect('contact/' . $intro->cid);
}
}