2010-10-26 06:52:30 +02:00
|
|
|
<?php
|
2018-01-09 15:59:52 +01:00
|
|
|
/**
|
|
|
|
* @file mod/follow.php
|
|
|
|
*/
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Network\Probe;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-31 04:06:22 +02:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
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()) {
|
2018-08-21 17:35:09 +02:00
|
|
|
System::httpExit(403, ['title' => L10n::t('Access denied.')]);
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
2018-07-19 13:07:14 +02:00
|
|
|
if (isset($_REQUEST['cancel'])) {
|
2018-09-30 19:26:29 +02:00
|
|
|
goaway('contacts');
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$uid = local_user();
|
|
|
|
$url = notags(trim($_REQUEST['url']));
|
2018-09-30 19:03:05 +02:00
|
|
|
$return_url = 'contacts';
|
2017-09-12 13:04:59 +02: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-30 05:28:48 +02:00
|
|
|
$_SESSION['fastlane'] = $url;
|
2017-09-12 13:04:59 +02:00
|
|
|
|
2018-01-09 17:40:25 +01:00
|
|
|
$result = Contact::createFromProbe($uid, $url, true);
|
2017-09-12 13:04:59 +02:00
|
|
|
|
|
|
|
if ($result['success'] == false) {
|
|
|
|
if ($result['message']) {
|
|
|
|
notice($result['message']);
|
|
|
|
}
|
|
|
|
goaway($return_url);
|
|
|
|
} elseif ($result['cid']) {
|
2018-09-30 19:03:05 +02:00
|
|
|
goaway('contacts/' . $result['cid']);
|
2017-09-12 13:04:59 +02:00
|
|
|
}
|
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
info(L10n::t('The contact could not be added.'));
|
2017-09-12 13:04:59 +02:00
|
|
|
|
|
|
|
goaway($return_url);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
function follow_content(App $a)
|
|
|
|
{
|
2018-09-30 19:03:05 +02:00
|
|
|
$return_url = 'contacts';
|
|
|
|
|
2017-12-29 23:53:08 +01:00
|
|
|
if (!local_user()) {
|
2018-03-30 05:28:48 +02:00
|
|
|
notice(L10n::t('Permission denied.'));
|
2018-09-30 19:03:05 +02:00
|
|
|
goaway($return_url);
|
2010-10-26 06:52:30 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2015-04-09 00:10:21 +02:00
|
|
|
$uid = local_user();
|
|
|
|
$url = notags(trim($_REQUEST['url']));
|
|
|
|
|
2018-01-22 13:29:50 +01:00
|
|
|
$submit = 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
|
|
|
|
$r = q("SELECT `pending` FROM `contact` WHERE `uid` = %d AND ((`rel` != %d) OR (`network` = '%s')) AND
|
2015-05-31 13:28:16 +02:00
|
|
|
(`nurl` = '%s' OR `alias` = '%s' OR `alias` = '%s') AND
|
|
|
|
`network` != '%s' LIMIT 1",
|
2018-08-11 22:40:44 +02:00
|
|
|
intval(local_user()), DBA::escape(Contact::FOLLOWER), DBA::escape(Protocol::DFRN), DBA::escape(normalise_link($url)),
|
|
|
|
DBA::escape(normalise_link($url)), DBA::escape($url), DBA::escape(Protocol::STATUSNET));
|
2015-04-09 00:10:21 +02:00
|
|
|
|
|
|
|
if ($r) {
|
2018-03-16 07:43:10 +01:00
|
|
|
if ($r[0]['pending']) {
|
2018-03-30 05:28:48 +02:00
|
|
|
notice(L10n::t('You already added this contact.'));
|
|
|
|
$submit = '';
|
2018-03-16 07:43:10 +01:00
|
|
|
//goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
2015-04-09 00:10:21 +02:00
|
|
|
}
|
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
$ret = Probe::uri($url);
|
2015-04-09 00:10:21 +02:00
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if (($ret['network'] == Protocol::DIASPORA) && !Config::get('system', 'diaspora_enabled')) {
|
2018-03-30 05:28:48 +02:00
|
|
|
notice(L10n::t("Diaspora support isn't enabled. Contact can't be added."));
|
|
|
|
$submit = '';
|
2015-11-01 13:55:49 +01:00
|
|
|
//goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if (($ret['network'] == Protocol::OSTATUS) && Config::get('system', 'ostatus_disabled')) {
|
2018-03-30 05:28:48 +02:00
|
|
|
notice(L10n::t("OStatus support is disabled. Contact can't be added."));
|
|
|
|
$submit = '';
|
2015-11-01 13:55:49 +01:00
|
|
|
//goaway($_SESSION['return_url']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if ($ret['network'] == Protocol::PHANTOM) {
|
2018-03-30 05:28:48 +02:00
|
|
|
notice(L10n::t("The network type couldn't be detected. Contact can't be added."));
|
|
|
|
$submit = '';
|
2015-11-01 13:55:49 +01:00
|
|
|
//goaway($_SESSION['return_url']);
|
2015-10-04 00:28:15 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if ($ret['network'] == Protocol::MAIL) {
|
2018-03-30 05:28:48 +02:00
|
|
|
$ret['url'] = $ret['addr'];
|
2016-12-21 23:04:09 +01:00
|
|
|
}
|
2015-09-22 22:31:22 +02:00
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if (($ret['network'] === Protocol::DFRN) && !DBA::isResult($r)) {
|
2018-03-30 05:28:48 +02:00
|
|
|
$request = $ret['request'];
|
2015-04-09 00:10:21 +02:00
|
|
|
$tpl = get_markup_template('dfrn_request.tpl');
|
|
|
|
} else {
|
2018-03-30 05:28:48 +02:00
|
|
|
$request = System::baseUrl() . '/follow';
|
2015-04-09 00:10:21 +02:00
|
|
|
$tpl = get_markup_template('auto_request.tpl');
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("SELECT `url` FROM `contact` WHERE `uid` = %d AND `self` LIMIT 1", intval($uid));
|
|
|
|
|
|
|
|
if (!$r) {
|
2018-03-30 05:28:48 +02:00
|
|
|
notice(L10n::t('Permission denied.'));
|
2018-09-30 19:03:05 +02:00
|
|
|
goaway($return_url);
|
2015-04-09 00:10:21 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
$myaddr = $r[0]['url'];
|
2016-01-10 09:19:00 +01:00
|
|
|
$gcontact_id = 0;
|
2015-04-09 00:10:21 +02:00
|
|
|
|
|
|
|
// Makes the connection request for friendica contacts easier
|
2018-03-30 05:28:48 +02:00
|
|
|
$_SESSION['fastlane'] = $ret['url'];
|
2015-04-09 00:10:21 +02:00
|
|
|
|
2016-01-10 09:19:00 +01:00
|
|
|
$r = q("SELECT `id`, `location`, `about`, `keywords` FROM `gcontact` WHERE `nurl` = '%s'",
|
2018-03-30 05:28:48 +02:00
|
|
|
normalise_link($ret['url']));
|
2015-10-04 14:41:39 +02:00
|
|
|
|
2016-12-21 23:04:09 +01:00
|
|
|
if (!$r) {
|
2018-03-30 05:28:48 +02:00
|
|
|
$r = [['location' => '', 'about' => '', 'keywords' => '']];
|
2016-12-21 23:04:09 +01:00
|
|
|
} else {
|
2018-03-30 05:28:48 +02:00
|
|
|
$gcontact_id = $r[0]['id'];
|
2016-12-21 23:04:09 +01:00
|
|
|
}
|
2015-10-04 14:49:12 +02:00
|
|
|
|
2018-08-11 22:40:44 +02:00
|
|
|
if ($ret['network'] === Protocol::DIASPORA) {
|
2018-03-30 05:28:48 +02:00
|
|
|
$r[0]['location'] = '';
|
|
|
|
$r[0]['about'] = '';
|
2015-10-06 06:56:31 +02:00
|
|
|
}
|
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
$header = L10n::t('Connect/Follow');
|
|
|
|
|
|
|
|
$o = replace_macros($tpl, [
|
|
|
|
'$header' => htmlentities($header),
|
2018-07-31 04:06:22 +02:00
|
|
|
//'$photo' => ProxyUtils::proxifyUrl($ret['photo'], false, ProxyUtils::SIZE_SMALL),
|
2018-03-30 05:28:48 +02:00
|
|
|
'$desc' => '',
|
|
|
|
'$pls_answer' => L10n::t('Please answer the following:'),
|
|
|
|
'$does_know_you' => ['knowyou', L10n::t('Does %s know you?', $ret['name']), false, '', [L10n::t('No'), L10n::t('Yes')]],
|
|
|
|
'$add_note' => L10n::t('Add a personal note:'),
|
|
|
|
'$page_desc' => '',
|
|
|
|
'$friendica' => '',
|
|
|
|
'$statusnet' => '',
|
|
|
|
'$diaspora' => '',
|
|
|
|
'$diasnote' => '',
|
|
|
|
'$your_address' => L10n::t('Your Identity Address:'),
|
|
|
|
'$invite_desc' => '',
|
|
|
|
'$emailnet' => '',
|
|
|
|
'$submit' => $submit,
|
|
|
|
'$cancel' => L10n::t('Cancel'),
|
|
|
|
'$nickname' => '',
|
|
|
|
'$name' => $ret['name'],
|
|
|
|
'$url' => $ret['url'],
|
|
|
|
'$zrl' => Profile::zrl($ret['url']),
|
|
|
|
'$url_label' => L10n::t('Profile URL'),
|
|
|
|
'$myaddr' => $myaddr,
|
|
|
|
'$request' => $request,
|
2018-07-19 13:07:14 +02:00
|
|
|
/*
|
|
|
|
* @TODO commented out?
|
|
|
|
'$location' => Friendica\Content\Text\BBCode::::convert($r[0]['location']),
|
2018-03-30 05:28:48 +02:00
|
|
|
'$location_label'=> L10n::t('Location:'),
|
|
|
|
'$about' => Friendica\Content\Text\BBCode::::convert($r[0]['about'], false, false),
|
2018-07-19 13:07:14 +02:00
|
|
|
'$about_label' => L10n::t('About:'),
|
|
|
|
*/
|
2018-03-30 05:28:48 +02:00
|
|
|
'$keywords' => $r[0]['keywords'],
|
|
|
|
'$keywords_label'=> L10n::t('Tags:')
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2016-01-10 09:19:00 +01:00
|
|
|
|
2018-03-30 05:28:48 +02:00
|
|
|
$a->page['aside'] = '';
|
2017-12-29 23:53:08 +01:00
|
|
|
|
2018-03-30 05:29:41 +02:00
|
|
|
$profiledata = Contact::getDetailsByURL($ret['url']);
|
|
|
|
if ($profiledata) {
|
|
|
|
Profile::load($a, '', 0, $profiledata, false);
|
|
|
|
}
|
2016-01-10 09:19:00 +01:00
|
|
|
|
|
|
|
if ($gcontact_id <> 0) {
|
|
|
|
$o .= replace_macros(get_markup_template('section_title.tpl'),
|
2018-01-24 03:59:16 +01:00
|
|
|
['$title' => L10n::t('Status Messages and Posts')]
|
|
|
|
);
|
2016-01-10 09:19:00 +01:00
|
|
|
|
2016-07-26 22:10:13 +02:00
|
|
|
// Show last public posts
|
2018-03-30 05:28:48 +02:00
|
|
|
$o .= Contact::getPostsFromUrl($ret['url']);
|
2016-01-10 09:19:00 +01:00
|
|
|
}
|
|
|
|
|
2015-04-09 00:10:21 +02:00
|
|
|
return $o;
|
|
|
|
}
|