2020-02-09 12:04:35 -05:00
< ? php
2020-02-09 17:12:00 -05:00
/**
2021-03-29 02:40:20 -04:00
* @ copyright Copyright ( C ) 2010 - 2021 , the Friendica project
2020-02-09 17:12:00 -05: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 />.
*
*/
2020-02-09 12:04:35 -05:00
namespace Friendica\Module ;
2021-11-20 09:38:03 -05:00
use Friendica\App ;
2021-11-19 14:18:48 -05:00
use Friendica\App\Page ;
2020-02-09 12:04:35 -05:00
use Friendica\BaseModule ;
2021-07-24 06:09:39 -04:00
use Friendica\Content\Widget ;
2021-11-19 14:18:48 -05:00
use Friendica\Core\L10n ;
2020-02-09 12:04:35 -05:00
use Friendica\Core\Logger ;
use Friendica\Core\Protocol ;
use Friendica\Core\Renderer ;
use Friendica\Core\Search ;
use Friendica\Core\System ;
2020-07-16 06:22:14 -04:00
use Friendica\Model\Contact ;
2020-02-09 12:04:35 -05:00
use Friendica\Model\Profile ;
2021-07-24 06:09:39 -04:00
use Friendica\Model\User ;
2021-08-17 09:38:35 -04:00
use Friendica\Network\HTTPException ;
2020-02-09 12:04:35 -05:00
use Friendica\Network\Probe ;
2021-11-20 09:38:03 -05:00
use Friendica\Util\Profiler ;
use Psr\Log\LoggerInterface ;
2020-02-09 12:04:35 -05:00
/**
* Remotely follow the account on this system by the provided account
*/
class RemoteFollow extends BaseModule
{
2021-11-19 14:18:48 -05:00
/** @var array */
protected $owner ;
/** @var Page */
protected $page ;
2021-07-24 06:09:39 -04:00
2021-11-21 14:06:36 -05:00
public function __construct ( L10n $l10n , App\BaseURL $baseUrl , App\Arguments $args , App\Page $page , LoggerInterface $logger , Profiler $profiler , Response $response , array $server , array $parameters = [])
2020-02-09 12:04:35 -05:00
{
2021-11-21 14:06:36 -05:00
parent :: __construct ( $l10n , $baseUrl , $args , $logger , $profiler , $response , $server , $parameters );
2021-11-19 14:18:48 -05:00
$this -> owner = User :: getOwnerDataByNick ( $this -> parameters [ 'profile' ]);
if ( ! $this -> owner ) {
throw new HTTPException\NotFoundException ( $this -> t ( 'User not found.' ));
2021-08-17 09:38:35 -04:00
}
2021-07-24 06:09:39 -04:00
2021-11-19 14:18:48 -05:00
$this -> page = $page ;
2020-02-09 12:04:35 -05:00
}
2021-11-20 09:38:03 -05:00
protected function post ( array $request = [], array $post = [])
2020-02-09 12:04:35 -05:00
{
2020-02-09 17:08:59 -05:00
if ( ! empty ( $_POST [ 'cancel' ]) || empty ( $_POST [ 'dfrn_url' ])) {
2021-11-19 14:18:48 -05:00
$this -> baseUrl -> redirect ();
2020-02-09 12:04:35 -05:00
}
2021-11-19 14:18:48 -05:00
if ( empty ( $this -> owner )) {
notice ( $this -> t ( 'Profile unavailable.' ));
2020-02-09 12:04:35 -05:00
return ;
}
2020-02-22 07:29:33 -05:00
$url = Probe :: cleanURI ( $_POST [ 'dfrn_url' ]);
2020-02-09 12:04:35 -05:00
if ( ! strlen ( $url )) {
2021-11-19 14:18:48 -05:00
notice ( $this -> t ( " Invalid locator " ));
2020-02-09 12:04:35 -05:00
return ;
}
// Detect the network, make sure the provided URL is valid
2020-07-16 06:22:14 -04:00
$data = Contact :: getByURL ( $url );
if ( ! $data ) {
2021-11-19 14:18:48 -05:00
notice ( $this -> t ( " The provided profile link doesn't seem to be valid " ));
2020-02-09 12:04:35 -05:00
return ;
}
2020-06-01 17:52:31 -04:00
if ( empty ( $data [ 'subscribe' ])) {
2021-11-19 14:18:48 -05:00
notice ( $this -> t ( " Remote subscription can't be done for your network. Please subscribe directly on your system. " ));
2020-02-09 12:04:35 -05:00
return ;
}
2021-11-19 14:18:48 -05:00
Logger :: notice ( 'Remote request' , [ 'url' => $url , 'follow' => $this -> owner [ 'url' ], 'remote' => $data [ 'subscribe' ]]);
2020-02-09 12:04:35 -05:00
2020-06-01 17:52:31 -04:00
// Substitute our user's feed URL into $data['subscribe']
2020-02-09 12:04:35 -05:00
// Send the subscriber home to subscribe
// Diaspora needs the uri in the format user@domain.tld
if ( $data [ 'network' ] == Protocol :: DIASPORA ) {
2021-11-19 14:18:48 -05:00
$uri = urlencode ( $this -> owner [ 'addr' ]);
2020-02-09 12:04:35 -05:00
} else {
2021-11-19 14:18:48 -05:00
$uri = urlencode ( $this -> owner [ 'url' ]);
2020-02-09 12:04:35 -05:00
}
2020-06-01 17:52:31 -04:00
$follow_link = str_replace ( '{uri}' , $uri , $data [ 'subscribe' ]);
2020-02-09 12:04:35 -05:00
System :: externalRedirect ( $follow_link );
}
2021-11-20 09:38:03 -05:00
protected function content ( array $request = []) : string
2020-02-09 12:04:35 -05:00
{
2021-11-19 14:18:48 -05:00
if ( empty ( $this -> owner )) {
2020-02-09 12:04:35 -05:00
return '' ;
}
2021-11-19 14:18:48 -05:00
$this -> page [ 'aside' ] = Widget\VCard :: getHTML ( $this -> owner );
$target_addr = $this -> owner [ 'addr' ];
$target_url = $this -> owner [ 'url' ];
2020-02-09 12:04:35 -05:00
$tpl = Renderer :: getMarkupTemplate ( 'auto_request.tpl' );
$o = Renderer :: replaceMacros ( $tpl , [
2021-11-19 14:18:48 -05:00
'$header' => $this -> t ( 'Friend/Connection Request' ),
'$page_desc' => $this -> t ( 'Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn\'t supported by your system, you have to subscribe to <strong>%s</strong> or <strong>%s</strong> directly on your system.' , $target_addr , $target_url ),
'$invite_desc' => $this -> t ( 'If you are not yet a member of the free social web, <a href="%s">follow this link to find a public Friendica node and join us today</a>.' , Search :: getGlobalDirectory () . '/servers' ),
'$your_address' => $this -> t ( 'Your Webfinger address or profile URL:' ),
'$pls_answer' => $this -> t ( 'Please answer the following:' ),
'$submit' => $this -> t ( 'Submit Request' ),
'$cancel' => $this -> t ( 'Cancel' ),
2020-02-09 12:04:35 -05:00
2021-11-14 17:19:25 -05:00
'$request' => 'remote_follow/' . $this -> parameters [ 'profile' ],
2021-11-19 14:18:48 -05:00
'$name' => $this -> owner [ 'name' ],
2020-02-09 17:08:59 -05:00
'$myaddr' => Profile :: getMyURL (),
2020-02-09 12:04:35 -05:00
]);
return $o ;
}
2020-02-09 17:08:59 -05:00
}