2010-10-26 06:52:30 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:18:46 +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/>.
|
|
|
|
*
|
2018-01-09 15:59:52 +01:00
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2021-07-23 14:39:37 +02:00
|
|
|
use Friendica\Content\Widget;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2020-01-21 07:26:07 +01:00
|
|
|
use Friendica\Model\Item;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Network\Probe;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2021-01-16 05:11:28 +01:00
|
|
|
use Friendica\Model\Post;
|
2020-07-06 21:49:29 +02:00
|
|
|
use Friendica\Model\User;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
function follow_post(App $a)
|
|
|
|
{
|
2017-12-29 23:53:08 +01:00
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
throw new \Friendica\Network\HTTPException\ForbiddenException(DI::l10n()->t('Access denied.'));
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
2018-07-19 13:07:14 +02:00
|
|
|
if (isset($_REQUEST['cancel'])) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('contact');
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
2020-10-20 06:05:04 +02:00
|
|
|
$url = Probe::cleanURI($_REQUEST['url']);
|
|
|
|
|
|
|
|
follow_process($a, $url);
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
function follow_content(App $a)
|
|
|
|
{
|
2018-11-13 22:02:33 +01:00
|
|
|
$return_path = 'contact';
|
2018-09-30 19:03:05 +02:00
|
|
|
|
2017-12-29 23:53:08 +01:00
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2010-10-26 06:52:30 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2015-04-09 00:10:21 +02:00
|
|
|
$uid = local_user();
|
2019-06-29 21:01:07 +02:00
|
|
|
|
2021-08-24 17:32:27 +02:00
|
|
|
$url = Probe::cleanURI(trim($_REQUEST['url'] ?? ''));
|
2019-03-09 03:53:44 +01:00
|
|
|
|
2019-03-14 21:08:38 +01:00
|
|
|
// Issue 6874: Allow remote following from Peertube
|
2019-03-14 22:18:07 +01:00
|
|
|
if (strpos($url, 'acct:') === 0) {
|
|
|
|
$url = str_replace('acct:', '', $url);
|
|
|
|
}
|
2019-03-14 20:45:51 +01:00
|
|
|
|
2019-03-09 03:53:44 +01:00
|
|
|
if (!$url) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2019-03-09 03:53:44 +01:00
|
|
|
}
|
2015-04-09 00:10:21 +02:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
$submit = DI::l10n()->t('Submit Request');
|
2015-11-01 13:55:49 +01:00
|
|
|
|
2018-03-16 07:43:10 +01:00
|
|
|
// Don't try to add a pending contact
|
2020-07-06 21:49:29 +02:00
|
|
|
$user_contact = DBA::selectFirst('contact', ['pending'], ["`uid` = ? AND ((`rel` != ?) OR (`network` = ?)) AND
|
2021-07-23 14:39:37 +02:00
|
|
|
(`nurl` = ? OR `alias` = ? OR `alias` = ?) AND `network` != ?",
|
2020-07-06 21:49:29 +02:00
|
|
|
$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 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('You already added this contact.'));
|
2018-03-30 05:28:48 +02:00
|
|
|
$submit = '';
|
2018-03-16 07:43:10 +01:00
|
|
|
}
|
2015-04-09 00:10:21 +02:00
|
|
|
}
|
|
|
|
|
2020-07-15 19:06:48 +02:00
|
|
|
$contact = Contact::getByURL($url, true);
|
2020-08-26 21:46:01 +02:00
|
|
|
|
|
|
|
// Possibly it is a mail contact
|
2020-07-06 21:49:29 +02:00
|
|
|
if (empty($contact)) {
|
2020-08-26 21:46:01 +02:00
|
|
|
$contact = Probe::uri($url, Protocol::MAIL, $uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($contact) || ($contact['network'] == Protocol::PHANTOM)) {
|
2020-07-06 21:49:29 +02:00
|
|
|
// 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-09 00:10:21 +02:00
|
|
|
|
2020-07-06 21:49:29 +02:00
|
|
|
$protocol = Contact::getProtocol($contact['url'], $contact['network']);
|
2019-05-02 15:05:31 +02:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (($protocol == Protocol::DIASPORA) && !DI::config()->get('system', 'diaspora_enabled')) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t("Diaspora support isn't enabled. Contact can't be added."));
|
2018-03-30 05:28:48 +02:00
|
|
|
$submit = '';
|
2015-11-01 13:55:49 +01:00
|
|
|
}
|
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (($protocol == Protocol::OSTATUS) && DI::config()->get('system', 'ostatus_disabled')) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t("OStatus support is disabled. Contact can't be added."));
|
2018-03-30 05:28:48 +02:00
|
|
|
$submit = '';
|
2015-10-04 00:28:15 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 15:05:31 +02:00
|
|
|
if ($protocol == Protocol::MAIL) {
|
2020-07-06 21:49:29 +02:00
|
|
|
$contact['url'] = $contact['addr'];
|
2016-12-21 23:04:09 +01:00
|
|
|
}
|
2015-09-22 22:31:22 +02:00
|
|
|
|
2021-07-15 15:28:32 +02:00
|
|
|
if (!empty($_REQUEST['auto'])) {
|
|
|
|
follow_process($a, $contact['url']);
|
2015-04-09 00:10:21 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 15:28:32 +02:00
|
|
|
$request = DI::baseUrl() . '/follow';
|
|
|
|
$tpl = Renderer::getMarkupTemplate('auto_request.tpl');
|
|
|
|
|
2020-07-06 21:49:29 +02:00
|
|
|
$owner = User::getOwnerDataById($uid);
|
|
|
|
if (empty($owner)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2015-04-09 00:10:21 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-07-06 21:49:29 +02:00
|
|
|
$myaddr = $owner['url'];
|
2015-04-09 00:10:21 +02:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2020-01-18 20:52:34 +01: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-06 04:41:04 +01:00
|
|
|
'$url_label' => DI::l10n()->t('Profile URL'),
|
|
|
|
'$keywords_label'=> DI::l10n()->t('Tags:'),
|
2018-03-30 05:28:48 +02:00
|
|
|
'$submit' => $submit,
|
2020-01-18 20:52:34 +01:00
|
|
|
'$cancel' => DI::l10n()->t('Cancel'),
|
2020-02-06 04:41:04 +01:00
|
|
|
|
|
|
|
'$request' => $request,
|
2020-07-06 21:49:29 +02:00
|
|
|
'$name' => $contact['name'],
|
|
|
|
'$url' => $contact['url'],
|
|
|
|
'$zrl' => Profile::zrl($contact['url']),
|
2018-03-30 05:28:48 +02:00
|
|
|
'$myaddr' => $myaddr,
|
2020-07-06 21:49:29 +02:00
|
|
|
'$keywords' => $contact['keywords'],
|
2020-02-06 04:41:04 +01:00
|
|
|
|
2020-07-06 21:49:29 +02:00
|
|
|
'$does_know_you' => ['knowyou', DI::l10n()->t('%s knows you', $contact['name'])],
|
2020-02-06 04:41:04 +01:00
|
|
|
'$addnote_field' => ['dfrn-request-message', DI::l10n()->t('Add a personal note:')],
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2016-01-10 09:19:00 +01:00
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] = '';
|
2017-12-29 23:53:08 +01:00
|
|
|
|
2021-09-16 20:19:36 +02:00
|
|
|
if (!in_array($protocol, [Protocol::PHANTOM, Protocol::MAIL])) {
|
|
|
|
DI::page()['aside'] = Widget\VCard::getHTML($contact);
|
2016-01-10 09:19:00 +01:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'),
|
2020-01-18 20:52:34 +01:00
|
|
|
['$title' => DI::l10n()->t('Status Messages and Posts')]
|
2018-01-24 03:59:16 +01:00
|
|
|
);
|
2016-01-10 09:19:00 +01:00
|
|
|
|
2016-07-26 22:10:13 +02:00
|
|
|
// Show last public posts
|
2020-07-06 21:49:29 +02:00
|
|
|
$o .= Contact::getPostsFromUrl($contact['url']);
|
2016-01-10 09:19:00 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 00:10:21 +02:00
|
|
|
return $o;
|
|
|
|
}
|
2020-01-21 07:26:07 +01:00
|
|
|
|
2020-10-20 06:05:04 +02:00
|
|
|
function follow_process(App $a, string $url)
|
2020-10-20 05:49:58 +02:00
|
|
|
{
|
|
|
|
$return_path = 'follow?url=' . urlencode($url);
|
|
|
|
|
2021-08-09 22:33:46 +02:00
|
|
|
$result = Contact::createFromProbeForUser($a->getLoggedInUserId(), $url);
|
2020-10-20 05:49:58 +02:00
|
|
|
|
|
|
|
if ($result['success'] == false) {
|
|
|
|
// Possibly it is a remote item and not an account
|
|
|
|
follow_remote_item($url);
|
|
|
|
|
|
|
|
if ($result['message']) {
|
|
|
|
notice($result['message']);
|
|
|
|
}
|
|
|
|
DI::baseUrl()->redirect($return_path);
|
|
|
|
} elseif ($result['cid']) {
|
|
|
|
DI::baseUrl()->redirect('contact/' . $result['cid']);
|
|
|
|
}
|
|
|
|
|
|
|
|
notice(DI::l10n()->t('The contact could not be added.'));
|
|
|
|
|
|
|
|
DI::baseUrl()->redirect($return_path);
|
|
|
|
}
|
|
|
|
|
2020-01-21 07:26:07 +01: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)) {
|
2021-01-16 05:11:28 +01:00
|
|
|
$item = Post::selectFirst(['guid'], ['id' => $item_id]);
|
2020-01-21 07:26:07 +01:00
|
|
|
if (DBA::isResult($item)) {
|
|
|
|
DI::baseUrl()->redirect('display/' . $item['guid']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|