2021-10-02 11:44:47 -04:00
< ? 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\Contact ;
2021-11-20 09:38:03 -05:00
use Friendica\App ;
2021-10-02 11:44:47 -04:00
use Friendica\BaseModule ;
use Friendica\Content\Nav ;
2021-11-19 14:18:48 -05:00
use Friendica\Core\L10n ;
2021-10-02 11:44:47 -04:00
use Friendica\Core\Protocol ;
use Friendica\Core\Renderer ;
2021-11-19 14:18:48 -05:00
use Friendica\Database\Database ;
2021-10-02 11:44:47 -04:00
use Friendica\Model ;
use Friendica\Module\Contact ;
use Friendica\Module\Security\Login ;
use Friendica\Network\HTTPException ;
2021-11-20 09:38:03 -05:00
use Friendica\Util\Profiler ;
use Psr\Log\LoggerInterface ;
2021-10-02 11:44:47 -04:00
class Revoke extends BaseModule
{
/** @var array */
2021-11-19 14:18:48 -05:00
protected $contact ;
/** @var Database */
protected $dba ;
2021-11-20 09:38:03 -05:00
public function __construct ( L10n $l10n , App\BaseURL $baseUrl , App\Arguments $args , LoggerInterface $logger , Profiler $profiler , Database $dba , array $server , array $parameters = [])
2021-11-19 07:23:23 -05:00
{
2021-11-20 09:38:03 -05:00
parent :: __construct ( $l10n , $baseUrl , $args , $logger , $profiler , $server , $parameters );
2021-11-19 14:18:48 -05:00
$this -> dba = $dba ;
2021-10-02 11:44:47 -04:00
if ( ! local_user ()) {
return ;
}
2021-11-14 17:19:25 -05:00
$data = Model\Contact :: getPublicAndUserContactID ( $this -> parameters [ 'id' ], local_user ());
2021-11-19 14:18:48 -05:00
if ( ! $this -> dba -> isResult ( $data )) {
throw new HTTPException\NotFoundException ( $this -> t ( 'Unknown contact.' ));
2021-10-02 11:44:47 -04:00
}
if ( empty ( $data [ 'user' ])) {
throw new HTTPException\ForbiddenException ();
}
2021-11-19 14:18:48 -05:00
$this -> contact = Model\Contact :: getById ( $data [ 'user' ]);
2021-10-02 11:44:47 -04:00
2021-11-19 14:18:48 -05:00
if ( $this -> contact [ 'deleted' ]) {
throw new HTTPException\NotFoundException ( $this -> t ( 'Contact is deleted.' ));
2021-10-02 11:44:47 -04:00
}
2021-11-19 14:18:48 -05:00
if ( ! empty ( $this -> contact [ 'network' ]) && $this -> contact [ 'network' ] == Protocol :: PHANTOM ) {
throw new HTTPException\NotFoundException ( $this -> t ( 'Contact is being deleted.' ));
2021-10-02 11:44:47 -04:00
}
}
2021-11-20 09:38:03 -05:00
protected function post ( array $request = [], array $post = [])
2021-10-02 11:44:47 -04:00
{
if ( ! local_user ()) {
throw new HTTPException\UnauthorizedException ();
}
2021-11-14 17:19:25 -05:00
self :: checkFormSecurityTokenRedirectOnError ( 'contact/' . $this -> parameters [ 'id' ], 'contact_revoke' );
2021-10-02 11:44:47 -04:00
2021-11-19 14:18:48 -05:00
$result = Model\Contact :: revokeFollow ( $this -> contact );
2021-10-02 11:44:47 -04:00
if ( $result === true ) {
2021-11-19 14:18:48 -05:00
notice ( $this -> t ( 'Follow was successfully revoked.' ));
2021-10-02 11:44:47 -04:00
} elseif ( $result === null ) {
2021-11-19 14:18:48 -05:00
notice ( $this -> t ( 'Follow was successfully revoked, however the remote contact won\'t be aware of this revokation.' ));
2021-10-02 11:44:47 -04:00
} else {
2021-11-19 14:18:48 -05:00
notice ( $this -> t ( 'Unable to revoke follow, please try again later or contact the administrator.' ));
2021-10-02 11:44:47 -04:00
}
2021-11-19 14:18:48 -05:00
$this -> baseUrl -> redirect ( 'contact/' . $this -> parameters [ 'id' ]);
2021-10-02 11:44:47 -04:00
}
2021-11-20 09:38:03 -05:00
protected function content ( array $request = []) : string
2021-10-02 11:44:47 -04:00
{
if ( ! local_user ()) {
return Login :: form ( $_SERVER [ 'REQUEST_URI' ]);
}
Nav :: setSelected ( 'contact' );
return Renderer :: replaceMacros ( Renderer :: getMarkupTemplate ( 'contact_drop_confirm.tpl' ), [
'$l10n' => [
2021-11-19 14:18:48 -05:00
'header' => $this -> t ( 'Revoke Follow' ),
'message' => $this -> t ( 'Do you really want to revoke this contact\'s follow? This cannot be undone and they will have to manually follow you back again.' ),
'confirm' => $this -> t ( 'Yes' ),
'cancel' => $this -> t ( 'Cancel' ),
2021-10-02 11:44:47 -04:00
],
2021-11-19 14:18:48 -05:00
'$contact' => Contact :: getContactTemplateVars ( $this -> contact ),
2021-10-02 11:44:47 -04:00
'$method' => 'post' ,
2021-11-19 14:18:48 -05:00
'$confirm_url' => $this -> args -> getCommand (),
2021-10-02 11:44:47 -04:00
'$confirm_name' => 'form_security_token' ,
'$confirm_value' => BaseModule :: getFormSecurityToken ( 'contact_revoke' ),
]);
}
}