2010-10-26 00:52:30 -04:00
|
|
|
<?php
|
2018-01-09 09:59:52 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
2018-01-09 09:59:52 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-15 18:28:31 -05:00
|
|
|
use Friendica\DI;
|
2017-12-07 09:04:24 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-14 21:22:39 -05:00
|
|
|
use Friendica\Model\Profile;
|
2020-01-21 01:26:07 -05:00
|
|
|
use Friendica\Model\Item;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Network\Probe;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2020-07-06 15:49:29 -04:00
|
|
|
use Friendica\Model\User;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-03-29 23:28:48 -04:00
|
|
|
function follow_post(App $a)
|
|
|
|
{
|
2017-12-29 17:53:08 -05:00
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new \Friendica\Network\HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
|
2017-09-12 07:04:59 -04:00
|
|
|
}
|
|
|
|
|
2018-07-19 07:07:14 -04:00
|
|
|
if (isset($_REQUEST['cancel'])) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('contact');
|
2017-09-12 07:04:59 -04:00
|
|
|
}
|
|
|
|
|
2020-02-22 07:29:33 -05:00
|
|
|
$url = Probe::cleanURI($_REQUEST['url']);
|
2018-11-10 08:24:31 -05:00
|
|
|
$return_path = 'follow?url=' . urlencode($url);
|
2017-09-12 07:04:59 -04:00
|
|
|
|
|
|
|
// Makes the connection request for friendica contacts easier
|
|
|
|
// This is just a precaution if maybe this page is called somewhere directly via POST
|
2018-03-29 23:28:48 -04:00
|
|
|
$_SESSION['fastlane'] = $url;
|
2017-09-12 07:04:59 -04:00
|
|
|
|
2020-06-10 10:36:42 -04:00
|
|
|
$result = Contact::createFromProbe($a->user, $url, true);
|
2017-09-12 07:04:59 -04:00
|
|
|
|
|
|
|
if ($result['success'] == false) {
|
2020-01-21 01:26:07 -05:00
|
|
|
// Possibly it is a remote item and not an account
|
|
|
|
follow_remote_item($url);
|
|
|
|
|
2017-09-12 07:04:59 -04:00
|
|
|
if ($result['message']) {
|
|
|
|
notice($result['message']);
|
|
|
|
}
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-09-12 07:04:59 -04:00
|
|
|
} elseif ($result['cid']) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect('contact/' . $result['cid']);
|
2017-09-12 07:04:59 -04:00
|
|
|
}
|
|
|
|
|
2020-07-23 02:11:21 -04:00
|
|
|
notice(DI::l10n()->t('The contact could not be added.'));
|
2017-09-12 07:04:59 -04:00
|
|
|
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-09-12 07:04:59 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-03-29 23:28:48 -04:00
|
|
|
function follow_content(App $a)
|
|
|
|
{
|
2018-11-13 16:02:33 -05:00
|
|
|
$return_path = 'contact';
|
2018-09-30 13:03:05 -04:00
|
|
|
|
2017-12-29 17:53:08 -05:00
|
|
|
if (!local_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2010-10-26 00:52:30 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2015-04-08 18:10:21 -04:00
|
|
|
$uid = local_user();
|
2019-06-29 15:01:07 -04:00
|
|
|
|
2019-06-29 16:09:23 -04:00
|
|
|
// Issue 4815: Silently removing a prefixing @
|
2019-10-15 09:01:17 -04:00
|
|
|
$url = ltrim(Strings::escapeTags(trim($_REQUEST['url'] ?? '')), '@!');
|
2019-03-08 21:53:44 -05:00
|
|
|
|
2019-03-14 16:08:38 -04:00
|
|
|
// Issue 6874: Allow remote following from Peertube
|
2019-03-14 17:18:07 -04:00
|
|
|
if (strpos($url, 'acct:') === 0) {
|
|
|
|
$url = str_replace('acct:', '', $url);
|
|
|
|
}
|
2019-03-14 15:45:51 -04:00
|
|
|
|
2019-03-08 21:53:44 -05:00
|
|
|
if (!$url) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2019-03-08 21:53:44 -05:00
|
|
|
}
|
2015-04-08 18:10:21 -04:00
|
|
|
|
2020-01-18 14:52:34 -05:00
|
|
|
$submit = DI::l10n()->t('Submit Request');
|
2015-11-01 07:55:49 -05:00
|
|
|
|
2018-03-16 02:43:10 -04:00
|
|
|
// Don't try to add a pending contact
|
2020-07-06 15:49:29 -04:00
|
|
|
$user_contact = DBA::selectFirst('contact', ['pending'], ["`uid` = ? AND ((`rel` != ?) OR (`network` = ?)) AND
|
|
|
|
(`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
|
|
|
|
$uid, Contact::FOLLOWER, Protocol::DFRN, Strings::normaliseLink($url),
|
|
|
|
Strings::normaliseLink($url), $url, Protocol::STATUSNET]);
|
|
|
|
|
|
|
|
if (DBA::isResult($user_contact)) {
|
|
|
|
if ($user_contact['pending']) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('You already added this contact.'));
|
2018-03-29 23:28:48 -04:00
|
|
|
$submit = '';
|
2018-03-16 02:43:10 -04:00
|
|
|
}
|
2015-04-08 18:10:21 -04:00
|
|
|
}
|
|
|
|
|
2020-07-15 13:06:48 -04:00
|
|
|
$contact = Contact::getByURL($url, true);
|
2020-07-06 15:49:29 -04:00
|
|
|
if (empty($contact)) {
|
|
|
|
// Possibly it is a remote item and not an account
|
|
|
|
follow_remote_item($url);
|
|
|
|
|
|
|
|
notice(DI::l10n()->t("The network type couldn't be detected. Contact can't be added."));
|
|
|
|
$submit = '';
|
|
|
|
$contact = ['url' => $url, 'network' => Protocol::PHANTOM, 'name' => $url, 'keywords' => ''];
|
|
|
|
}
|
2015-04-08 18:10:21 -04:00
|
|
|
|
2020-07-06 15:49:29 -04:00
|
|
|
$protocol = Contact::getProtocol($contact['url'], $contact['network']);
|
2019-05-02 09:05:31 -04:00
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
if (($protocol == Protocol::DIASPORA) && !DI::config()->get('system', 'diaspora_enabled')) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t("Diaspora support isn't enabled. Contact can't be added."));
|
2018-03-29 23:28:48 -04:00
|
|
|
$submit = '';
|
2015-11-01 07:55:49 -05:00
|
|
|
}
|
|
|
|
|
2020-01-19 15:21:13 -05:00
|
|
|
if (($protocol == Protocol::OSTATUS) && DI::config()->get('system', 'ostatus_disabled')) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t("OStatus support is disabled. Contact can't be added."));
|
2018-03-29 23:28:48 -04:00
|
|
|
$submit = '';
|
2015-10-03 18:28:15 -04:00
|
|
|
}
|
|
|
|
|
2019-05-02 09:05:31 -04:00
|
|
|
if ($protocol == Protocol::MAIL) {
|
2020-07-06 15:49:29 -04:00
|
|
|
$contact['url'] = $contact['addr'];
|
2016-12-21 17:04:09 -05:00
|
|
|
}
|
2015-09-22 16:31:22 -04:00
|
|
|
|
2020-07-06 15:49:29 -04:00
|
|
|
if (($protocol === Protocol::DFRN) && !DBA::isResult($contact)) {
|
|
|
|
$request = $contact['request'];
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('dfrn_request.tpl');
|
2015-04-08 18:10:21 -04:00
|
|
|
} else {
|
2019-12-30 17:00:08 -05:00
|
|
|
$request = DI::baseUrl() . '/follow';
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('auto_request.tpl');
|
2015-04-08 18:10:21 -04:00
|
|
|
}
|
|
|
|
|
2020-07-06 15:49:29 -04:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (empty($owner)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2015-04-08 18:10:21 -04:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-07-06 15:49:29 -04:00
|
|
|
$myaddr = $owner['url'];
|
2015-04-08 18:10:21 -04:00
|
|
|
|
|
|
|
// Makes the connection request for friendica contacts easier
|
2020-07-06 15:49:29 -04:00
|
|
|
$_SESSION['fastlane'] = $contact['url'];
|
2015-10-06 00:56:31 -04:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 14:52:34 -05:00
|
|
|
'$header' => DI::l10n()->t('Connect/Follow'),
|
|
|
|
'$pls_answer' => DI::l10n()->t('Please answer the following:'),
|
|
|
|
'$your_address' => DI::l10n()->t('Your Identity Address:'),
|
2020-02-05 22:41:04 -05:00
|
|
|
'$url_label' => DI::l10n()->t('Profile URL'),
|
|
|
|
'$keywords_label'=> DI::l10n()->t('Tags:'),
|
2018-03-29 23:28:48 -04:00
|
|
|
'$submit' => $submit,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2020-02-05 22:41:04 -05:00
|
|
|
|
|
|
|
'$request' => $request,
|
2020-07-06 15:49:29 -04:00
|
|
|
'$name' => $contact['name'],
|
|
|
|
'$url' => $contact['url'],
|
|
|
|
'$zrl' => Profile::zrl($contact['url']),
|
2018-03-29 23:28:48 -04:00
|
|
|
'$myaddr' => $myaddr,
|
2020-07-06 15:49:29 -04:00
|
|
|
'$keywords' => $contact['keywords'],
|
2020-02-05 22:41:04 -05:00
|
|
|
|
2020-07-06 15:49:29 -04:00
|
|
|
'$does_know_you' => ['knowyou', DI::l10n()->t('%s knows you', $contact['name'])],
|
2020-02-05 22:41:04 -05:00
|
|
|
'$addnote_field' => ['dfrn-request-message', DI::l10n()->t('Add a personal note:')],
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2016-01-10 03:19:00 -05:00
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] = '';
|
2017-12-29 17:53:08 -05:00
|
|
|
|
2020-07-06 15:49:29 -04:00
|
|
|
if ($protocol != Protocol::PHANTOM) {
|
|
|
|
Profile::load($a, '', $contact, false);
|
2016-01-10 03:19:00 -05:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'),
|
2020-01-18 14:52:34 -05:00
|
|
|
['$title' => DI::l10n()->t('Status Messages and Posts')]
|
2018-01-23 21:59:16 -05:00
|
|
|
);
|
2016-01-10 03:19:00 -05:00
|
|
|
|
2016-07-26 16:10:13 -04:00
|
|
|
// Show last public posts
|
2020-07-06 15:49:29 -04:00
|
|
|
$o .= Contact::getPostsFromUrl($contact['url']);
|
2016-01-10 03:19:00 -05:00
|
|
|
}
|
|
|
|
|
2015-04-08 18:10:21 -04:00
|
|
|
return $o;
|
|
|
|
}
|
2020-01-21 01:26:07 -05:00
|
|
|
|
|
|
|
function follow_remote_item($url)
|
|
|
|
{
|
|
|
|
$item_id = Item::fetchByLink($url, local_user());
|
|
|
|
if (!$item_id) {
|
|
|
|
// If the user-specific search failed, we search and probe a public post
|
|
|
|
$item_id = Item::fetchByLink($url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item_id)) {
|
|
|
|
$item = Item::selectFirst(['guid'], ['id' => $item_id]);
|
|
|
|
if (DBA::isResult($item)) {
|
|
|
|
DI::baseUrl()->redirect('display/' . $item['guid']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|