2012-06-03 06:12:20 +00:00
|
|
|
<?php
|
2018-01-04 02:12:19 +00:00
|
|
|
|
2017-11-15 15:53:16 +00:00
|
|
|
/**
|
|
|
|
* @file include/follow.php
|
|
|
|
*/
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2017-11-07 02:22:52 +00:00
|
|
|
use Friendica\Core\Config;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2017-11-05 12:15:53 +00:00
|
|
|
use Friendica\Core\Worker;
|
2017-11-08 03:57:46 +00:00
|
|
|
use Friendica\Database\DBM;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-09 18:45:17 +00:00
|
|
|
use Friendica\Model\Group;
|
|
|
|
use Friendica\Model\User;
|
2017-10-15 19:34:15 +00:00
|
|
|
use Friendica\Network\Probe;
|
2017-11-08 00:37:53 +00:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2017-11-16 04:09:11 +00:00
|
|
|
use Friendica\Protocol\OStatus;
|
2017-11-15 15:53:16 +00:00
|
|
|
use Friendica\Protocol\PortableContact;
|
2017-12-02 14:32:45 +00:00
|
|
|
use Friendica\Protocol\Salmon;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
function update_contact($id)
|
|
|
|
{
|
2015-07-12 09:19:40 +00:00
|
|
|
/*
|
2018-01-04 02:12:19 +00:00
|
|
|
Warning: Never ever fetch the public key via Probe::uri and write it into the contacts.
|
|
|
|
This will reliably kill your communication with Friendica contacts.
|
|
|
|
*/
|
2015-07-12 09:19:40 +00:00
|
|
|
|
2015-07-12 09:46:08 +00:00
|
|
|
$r = q("SELECT `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `network` FROM `contact` WHERE `id` = %d", intval($id));
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!$r) {
|
2015-09-11 19:35:58 +00:00
|
|
|
return false;
|
2018-01-04 02:12:19 +00:00
|
|
|
}
|
2015-07-11 12:36:04 +00:00
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
$ret = Probe::uri($r[0]["url"]);
|
2015-07-11 12:36:04 +00:00
|
|
|
|
2017-11-07 02:22:52 +00:00
|
|
|
// If Probe::uri fails the network code will be different
|
2018-01-04 02:12:19 +00:00
|
|
|
if ($ret["network"] != $r[0]["network"]) {
|
2015-09-11 19:35:58 +00:00
|
|
|
return false;
|
2018-01-04 02:12:19 +00:00
|
|
|
}
|
2015-07-11 12:36:04 +00:00
|
|
|
|
2015-07-12 09:46:08 +00:00
|
|
|
$update = false;
|
|
|
|
|
2015-07-12 09:19:40 +00:00
|
|
|
// make sure to not overwrite existing values with blank entries
|
2015-07-12 09:46:08 +00:00
|
|
|
foreach ($ret AS $key => $val) {
|
2017-06-08 02:00:59 +00:00
|
|
|
if (isset($r[0][$key]) && ($r[0][$key] != "") && ($val == ""))
|
2015-07-12 09:19:40 +00:00
|
|
|
$ret[$key] = $r[0][$key];
|
|
|
|
|
2017-06-08 02:00:59 +00:00
|
|
|
if (isset($r[0][$key]) && ($ret[$key] != $r[0][$key]))
|
2015-07-12 09:46:08 +00:00
|
|
|
$update = true;
|
|
|
|
}
|
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!$update) {
|
2015-09-11 19:35:58 +00:00
|
|
|
return true;
|
2018-01-04 02:12:19 +00:00
|
|
|
}
|
2015-07-12 09:46:08 +00:00
|
|
|
|
|
|
|
q("UPDATE `contact` SET `url` = '%s', `nurl` = '%s', `addr` = '%s', `alias` = '%s', `batch` = '%s', `notify` = '%s', `poll` = '%s', `poco` = '%s' WHERE `id` = %d",
|
2015-07-11 12:36:04 +00:00
|
|
|
dbesc($ret['url']),
|
|
|
|
dbesc(normalise_link($ret['url'])),
|
|
|
|
dbesc($ret['addr']),
|
|
|
|
dbesc($ret['alias']),
|
|
|
|
dbesc($ret['batch']),
|
|
|
|
dbesc($ret['notify']),
|
|
|
|
dbesc($ret['poll']),
|
|
|
|
dbesc($ret['poco']),
|
|
|
|
intval($id)
|
|
|
|
);
|
2015-09-11 19:35:58 +00:00
|
|
|
|
2016-02-13 13:09:08 +00:00
|
|
|
// Update the corresponding gcontact entry
|
2017-11-15 15:53:16 +00:00
|
|
|
PortableContact::lastUpdated($ret["url"]);
|
2016-02-13 13:09:08 +00:00
|
|
|
|
2015-09-11 19:35:58 +00:00
|
|
|
return true;
|
2015-07-11 12:36:04 +00:00
|
|
|
}
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
/**
|
|
|
|
* Takes a $uid and a url/handle and adds a new contact
|
|
|
|
* Currently if the contact is DFRN, interactive needs to be true, to redirect to the
|
|
|
|
* dfrn_request page.
|
|
|
|
*
|
|
|
|
* Otherwise this can be used to bulk add statusnet contacts, twitter contacts, etc.
|
|
|
|
*
|
|
|
|
* Returns an array
|
|
|
|
* $return['success'] boolean true if successful
|
|
|
|
* $return['message'] error text if success is false.
|
|
|
|
*
|
|
|
|
* @brief Takes a $uid and a url/handle and adds a new contact
|
|
|
|
* @param int $uid
|
|
|
|
* @param string $url
|
|
|
|
* @param bool $interactive
|
|
|
|
* @param string $network
|
|
|
|
* @return boolean|string
|
|
|
|
*/
|
|
|
|
function new_contact($uid, $url, $interactive = false, $network = '')
|
|
|
|
{
|
|
|
|
$result = array('cid' => -1, 'success' => false, 'message' => '');
|
2012-06-03 06:12:20 +00:00
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
// remove ajax junk, e.g. Twitter
|
2018-01-04 02:12:19 +00:00
|
|
|
$url = str_replace('/#!/', '/', $url);
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!allowed_url($url)) {
|
2012-06-03 06:12:20 +00:00
|
|
|
$result['message'] = t('Disallowed profile URL.');
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2017-04-26 04:23:01 +00:00
|
|
|
if (blocked_url($url)) {
|
2017-04-26 02:45:56 +00:00
|
|
|
$result['message'] = t('Blocked domain');
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!$url) {
|
2012-06-03 06:12:20 +00:00
|
|
|
$result['message'] = t('Connect URL missing.');
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
$arr = array('url' => $url, 'contact' => array());
|
|
|
|
|
|
|
|
call_hooks('follow', $arr);
|
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (x($arr['contact'], 'name')) {
|
2012-06-03 06:12:20 +00:00
|
|
|
$ret = $arr['contact'];
|
2017-10-15 19:34:15 +00:00
|
|
|
} else {
|
|
|
|
$ret = Probe::uri($url, $network, $uid, false);
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2017-10-15 19:34:15 +00:00
|
|
|
|
|
|
|
if (($network != '') && ($ret['network'] != $network)) {
|
2018-01-04 02:12:19 +00:00
|
|
|
logger('Expected network ' . $network . ' does not match actual network ' . $ret['network']);
|
2017-10-15 19:34:15 +00:00
|
|
|
return result;
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2016-12-20 16:43:46 +00:00
|
|
|
if ($ret['network'] === NETWORK_DFRN) {
|
|
|
|
if ($interactive) {
|
|
|
|
if (strlen($a->path)) {
|
2017-08-26 07:32:10 +00:00
|
|
|
$myaddr = bin2hex(System::baseUrl() . '/profile/' . $a->user['nickname']);
|
2016-12-19 13:26:13 +00:00
|
|
|
} else {
|
2012-06-03 06:12:20 +00:00
|
|
|
$myaddr = bin2hex($a->user['nickname'] . '@' . $a->get_hostname());
|
2016-12-20 16:43:46 +00:00
|
|
|
}
|
2013-01-20 13:08:28 +00:00
|
|
|
|
2012-06-03 06:12:20 +00:00
|
|
|
goaway($ret['request'] . "&addr=$myaddr");
|
2013-01-20 13:08:28 +00:00
|
|
|
|
2012-06-03 06:12:20 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
2018-01-04 02:12:19 +00:00
|
|
|
} elseif (Config::get('system', 'dfrn_only')) {
|
2016-12-30 20:48:09 +00:00
|
|
|
$result['message'] = t('This site is not configured to allow communications with other networks.') . EOL;
|
|
|
|
$result['message'] != t('No compatible communication protocols or feeds were discovered.') . EOL;
|
|
|
|
return $result;
|
2012-06-03 06:12:20 +00:00
|
|
|
}
|
2013-01-20 13:08:28 +00:00
|
|
|
|
2012-06-03 06:12:20 +00:00
|
|
|
// This extra param just confuses things, remove it
|
2016-12-19 13:26:13 +00:00
|
|
|
if ($ret['network'] === NETWORK_DIASPORA) {
|
2018-01-04 02:12:19 +00:00
|
|
|
$ret['url'] = str_replace('?absolute=true', '', $ret['url']);
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2012-06-03 06:12:20 +00:00
|
|
|
|
|
|
|
// do we have enough information?
|
2015-01-20 21:54:25 +00:00
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!((x($ret, 'name')) && (x($ret, 'poll')) && ((x($ret, 'url')) || (x($ret, 'addr'))))) {
|
|
|
|
$result['message'] .= t('The profile address specified does not provide adequate information.') . EOL;
|
|
|
|
if (!x($ret, 'poll')) {
|
2012-06-03 06:12:20 +00:00
|
|
|
$result['message'] .= t('No compatible communication protocols or feeds were discovered.') . EOL;
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!x($ret, 'name')) {
|
|
|
|
$result['message'] .= t('An author or name was not found.') . EOL;
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!x($ret, 'url')) {
|
|
|
|
$result['message'] .= t('No browser URL could be matched to this address.') . EOL;
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2018-01-04 02:12:19 +00:00
|
|
|
if (strpos($url, '@') !== false) {
|
|
|
|
$result['message'] .= t('Unable to match @-style Identity Address with a known protocol or email contact.') . EOL;
|
|
|
|
$result['message'] .= t('Use mailto: in front of address to force email check.') . EOL;
|
2012-06-03 06:12:20 +00:00
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if ($ret['network'] === NETWORK_OSTATUS && Config::get('system', 'ostatus_disabled')) {
|
2012-06-03 06:12:20 +00:00
|
|
|
$result['message'] .= t('The profile address specified belongs to a network which has been disabled on this site.') . EOL;
|
|
|
|
$ret['notify'] = '';
|
|
|
|
}
|
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!$ret['notify']) {
|
|
|
|
$result['message'] .= t('Limited profile. This person will be unable to receive direct/personal notifications from you.') . EOL;
|
2012-06-03 06:12:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$writeable = ((($ret['network'] === NETWORK_OSTATUS) && ($ret['notify'])) ? 1 : 0);
|
2012-06-08 02:53:39 +00:00
|
|
|
|
|
|
|
$subhub = (($ret['network'] === NETWORK_OSTATUS) ? true : false);
|
|
|
|
|
2012-06-03 06:12:20 +00:00
|
|
|
$hidden = (($ret['network'] === NETWORK_MAIL) ? 1 : 0);
|
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if (in_array($ret['network'], array(NETWORK_MAIL, NETWORK_DIASPORA))) {
|
2012-06-03 06:12:20 +00:00
|
|
|
$writeable = 1;
|
2016-12-19 13:26:13 +00:00
|
|
|
}
|
2012-06-03 06:12:20 +00:00
|
|
|
|
|
|
|
// check if we already have a contact
|
|
|
|
// the poll url is more reliable than the profile url, as we may have
|
|
|
|
// indirect links or webfinger links
|
|
|
|
|
2015-07-11 12:36:04 +00:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `poll` IN ('%s', '%s') AND `network` = '%s' LIMIT 1",
|
2012-06-03 06:12:20 +00:00
|
|
|
intval($uid),
|
2015-01-20 21:54:25 +00:00
|
|
|
dbesc($ret['poll']),
|
2015-07-11 12:36:04 +00:00
|
|
|
dbesc(normalise_link($ret['poll'])),
|
2015-01-20 21:54:25 +00:00
|
|
|
dbesc($ret['network'])
|
2014-03-11 22:52:32 +00:00
|
|
|
);
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!DBM::is_result($r)) {
|
2015-09-03 20:18:25 +00:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `network` = '%s' LIMIT 1",
|
|
|
|
intval($uid), dbesc(normalise_link($url)), dbesc($ret['network'])
|
2018-01-04 02:12:19 +00:00
|
|
|
);
|
|
|
|
}
|
2015-09-03 20:18:25 +00:00
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2012-06-03 06:12:20 +00:00
|
|
|
// update contact
|
2017-09-23 14:48:27 +00:00
|
|
|
$new_relation = (($r[0]['rel'] == CONTACT_IS_FOLLOWER) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING);
|
|
|
|
|
|
|
|
$fields = array('rel' => $new_relation, 'subhub' => $subhub, 'readonly' => false);
|
|
|
|
dba::update('contact', $fields, array('id' => $r[0]['id']));
|
2015-07-11 12:36:04 +00:00
|
|
|
} else {
|
2017-09-23 14:48:27 +00:00
|
|
|
$new_relation = ((in_array($ret['network'], array(NETWORK_MAIL))) ? CONTACT_IS_FRIEND : CONTACT_IS_SHARING);
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2015-01-20 21:54:25 +00:00
|
|
|
// create contact record
|
2018-01-04 02:12:19 +00:00
|
|
|
q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `batch`, `notify`, `poll`, `poco`, `name`, `nick`, `network`, `pubkey`, `rel`, `priority`,
|
2012-06-08 02:53:39 +00:00
|
|
|
`writable`, `hidden`, `blocked`, `readonly`, `pending`, `subhub` )
|
2015-01-20 21:54:25 +00:00
|
|
|
VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, %d, 0, 0, 0, %d ) ",
|
2012-06-03 06:12:20 +00:00
|
|
|
intval($uid),
|
|
|
|
dbesc(datetime_convert()),
|
|
|
|
dbesc($ret['url']),
|
|
|
|
dbesc(normalise_link($ret['url'])),
|
|
|
|
dbesc($ret['addr']),
|
|
|
|
dbesc($ret['alias']),
|
|
|
|
dbesc($ret['batch']),
|
|
|
|
dbesc($ret['notify']),
|
|
|
|
dbesc($ret['poll']),
|
|
|
|
dbesc($ret['poco']),
|
|
|
|
dbesc($ret['name']),
|
|
|
|
dbesc($ret['nick']),
|
|
|
|
dbesc($ret['network']),
|
|
|
|
dbesc($ret['pubkey']),
|
|
|
|
intval($new_relation),
|
|
|
|
intval($ret['priority']),
|
|
|
|
intval($writeable),
|
2012-06-08 02:53:39 +00:00
|
|
|
intval($hidden),
|
|
|
|
intval($subhub)
|
2012-06-03 06:12:20 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-01-20 21:54:25 +00:00
|
|
|
$r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `network` = '%s' AND `uid` = %d LIMIT 1",
|
2012-06-03 06:12:20 +00:00
|
|
|
dbesc($ret['url']),
|
2015-01-20 21:54:25 +00:00
|
|
|
dbesc($ret['network']),
|
2012-06-03 06:12:20 +00:00
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
2018-01-04 02:12:19 +00:00
|
|
|
if (!DBM::is_result($r)) {
|
|
|
|
$result['message'] .= t('Unable to retrieve contact information.') . EOL;
|
2012-06-03 06:12:20 +00:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = $r[0];
|
2018-01-04 02:12:19 +00:00
|
|
|
$contact_id = $r[0]['id'];
|
2015-04-08 22:10:21 +00:00
|
|
|
$result['cid'] = $contact_id;
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2017-12-09 18:45:17 +00:00
|
|
|
Group::addMember(User::getDefaultGroup($uid, $contact["network"]), $contact_id);
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2016-01-28 10:09:08 +00:00
|
|
|
// Update the avatar
|
2017-11-29 22:29:11 +00:00
|
|
|
Contact::updateAvatar($ret['photo'], $uid, $contact_id);
|
2012-06-03 06:12:20 +00:00
|
|
|
|
|
|
|
// pull feed and consume it, which should subscribe to the hub.
|
|
|
|
|
2017-11-12 18:50:35 +00:00
|
|
|
Worker::add(PRIORITY_HIGH, "OnePoll", $contact_id, "force");
|
2012-06-03 06:12:20 +00:00
|
|
|
|
2014-03-11 22:52:32 +00:00
|
|
|
$r = q("SELECT `contact`.*, `user`.* FROM `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid`
|
2016-12-18 17:10:38 +00:00
|
|
|
WHERE `user`.`uid` = %d AND `contact`.`self` LIMIT 1",
|
2012-06-03 06:12:20 +00:00
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
|
2017-11-08 03:57:46 +00:00
|
|
|
if (DBM::is_result($r)) {
|
2016-12-18 17:10:38 +00:00
|
|
|
if (($contact['network'] == NETWORK_OSTATUS) && (strlen($contact['notify']))) {
|
|
|
|
// create a follow slap
|
|
|
|
$item = array();
|
|
|
|
$item['verb'] = ACTIVITY_FOLLOW;
|
|
|
|
$item['follow'] = $contact["url"];
|
2017-11-16 04:09:11 +00:00
|
|
|
$slap = OStatus::salmon($item, $r[0]);
|
2017-12-02 14:32:45 +00:00
|
|
|
Salmon::slapper($r[0], $contact['notify'], $slap);
|
2012-06-03 06:12:20 +00:00
|
|
|
}
|
2016-12-20 17:52:24 +00:00
|
|
|
|
2016-12-18 17:10:38 +00:00
|
|
|
if ($contact['network'] == NETWORK_DIASPORA) {
|
2017-11-23 19:01:58 +00:00
|
|
|
$ret = Diaspora::sendShare($a->user, $contact);
|
2018-01-04 02:12:19 +00:00
|
|
|
logger('share returns: ' . $ret);
|
2012-06-03 06:12:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$result['success'] = true;
|
|
|
|
return $result;
|
|
|
|
}
|