mirror of
https://github.com/friendica/friendica
synced 2025-04-22 23:10:11 +00:00
Revert "Replace Module::init() with Constructors"
This commit is contained in:
parent
0b6e0566d7
commit
89d6c89b67
43 changed files with 921 additions and 1225 deletions
|
@ -21,11 +21,9 @@
|
|||
|
||||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\App\BaseURL;
|
||||
use Friendica\App\Page;
|
||||
use Friendica\BaseModule;
|
||||
use Friendica\Content\Widget;
|
||||
use Friendica\Core\L10n;
|
||||
use Friendica\DI;
|
||||
use Friendica\Core\Logger;
|
||||
use Friendica\Core\Protocol;
|
||||
use Friendica\Core\Renderer;
|
||||
|
@ -42,64 +40,56 @@ use Friendica\Network\Probe;
|
|||
*/
|
||||
class RemoteFollow extends BaseModule
|
||||
{
|
||||
/** @var array */
|
||||
protected $owner;
|
||||
/** @var Page */
|
||||
protected $page;
|
||||
/** @var BaseURL */
|
||||
protected $baseUrl;
|
||||
static $owner;
|
||||
|
||||
public function __construct(L10n $l10n, Page $page, BaseURL $baseUrl, array $parameters = [])
|
||||
public function init()
|
||||
{
|
||||
parent::__construct($l10n, $parameters);
|
||||
|
||||
$this->owner = User::getOwnerDataByNick($this->parameters['profile']);
|
||||
if (!$this->owner) {
|
||||
throw new HTTPException\NotFoundException($this->t('User not found.'));
|
||||
self::$owner = User::getOwnerDataByNick($this->parameters['profile']);
|
||||
if (!self::$owner) {
|
||||
throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
|
||||
}
|
||||
|
||||
$this->baseUrl = $baseUrl;
|
||||
$this->page = $page;
|
||||
DI::page()['aside'] = Widget\VCard::getHTML(self::$owner);
|
||||
}
|
||||
|
||||
public function post()
|
||||
{
|
||||
if (!empty($_POST['cancel']) || empty($_POST['dfrn_url'])) {
|
||||
$this->baseUrl->redirect();
|
||||
DI::baseUrl()->redirect();
|
||||
}
|
||||
|
||||
if (empty($this->owner)) {
|
||||
notice($this->t('Profile unavailable.'));
|
||||
if (empty(self::$owner)) {
|
||||
notice(DI::l10n()->t('Profile unavailable.'));
|
||||
return;
|
||||
}
|
||||
|
||||
$url = Probe::cleanURI($_POST['dfrn_url']);
|
||||
if (!strlen($url)) {
|
||||
notice($this->t("Invalid locator"));
|
||||
notice(DI::l10n()->t("Invalid locator"));
|
||||
return;
|
||||
}
|
||||
|
||||
// Detect the network, make sure the provided URL is valid
|
||||
$data = Contact::getByURL($url);
|
||||
if (!$data) {
|
||||
notice($this->t("The provided profile link doesn't seem to be valid"));
|
||||
notice(DI::l10n()->t("The provided profile link doesn't seem to be valid"));
|
||||
return;
|
||||
}
|
||||
|
||||
if (empty($data['subscribe'])) {
|
||||
notice($this->t("Remote subscription can't be done for your network. Please subscribe directly on your system."));
|
||||
notice(DI::l10n()->t("Remote subscription can't be done for your network. Please subscribe directly on your system."));
|
||||
return;
|
||||
}
|
||||
|
||||
Logger::notice('Remote request', ['url' => $url, 'follow' => $this->owner['url'], 'remote' => $data['subscribe']]);
|
||||
Logger::notice('Remote request', ['url' => $url, 'follow' => self::$owner['url'], 'remote' => $data['subscribe']]);
|
||||
|
||||
// Substitute our user's feed URL into $data['subscribe']
|
||||
// Send the subscriber home to subscribe
|
||||
// Diaspora needs the uri in the format user@domain.tld
|
||||
if ($data['network'] == Protocol::DIASPORA) {
|
||||
$uri = urlencode($this->owner['addr']);
|
||||
$uri = urlencode(self::$owner['addr']);
|
||||
} else {
|
||||
$uri = urlencode($this->owner['url']);
|
||||
$uri = urlencode(self::$owner['url']);
|
||||
}
|
||||
|
||||
$follow_link = str_replace('{uri}', $uri, $data['subscribe']);
|
||||
|
@ -108,27 +98,25 @@ class RemoteFollow extends BaseModule
|
|||
|
||||
public function content(): string
|
||||
{
|
||||
if (empty($this->owner)) {
|
||||
if (empty(self::$owner)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
$this->page['aside'] = Widget\VCard::getHTML($this->owner);
|
||||
|
||||
$target_addr = $this->owner['addr'];
|
||||
$target_url = $this->owner['url'];
|
||||
|
||||
$target_addr = self::$owner['addr'];
|
||||
$target_url = self::$owner['url'];
|
||||
|
||||
$tpl = Renderer::getMarkupTemplate('auto_request.tpl');
|
||||
$o = Renderer::replaceMacros($tpl, [
|
||||
'$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'),
|
||||
'$header' => DI::l10n()->t('Friend/Connection Request'),
|
||||
'$page_desc' => DI::l10n()->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' => DI::l10n()->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' => DI::l10n()->t('Your Webfinger address or profile URL:'),
|
||||
'$pls_answer' => DI::l10n()->t('Please answer the following:'),
|
||||
'$submit' => DI::l10n()->t('Submit Request'),
|
||||
'$cancel' => DI::l10n()->t('Cancel'),
|
||||
|
||||
'$request' => 'remote_follow/' . $this->parameters['profile'],
|
||||
'$name' => $this->owner['name'],
|
||||
'$name' => self::$owner['name'],
|
||||
'$myaddr' => Profile::getMyURL(),
|
||||
]);
|
||||
return $o;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue