streams/include/follow.php

324 lines
7.9 KiB
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
2012-06-03 06:12:20 +00:00
2012-06-03 06:22:02 +00:00
//
2012-11-01 04:42:20 +00:00
// Takes a $uid and the channel associated with the uid, and a url/handle and adds a new channel
2012-06-03 06:22:02 +00:00
// Returns an array
// $return['success'] boolean true if successful
2013-01-01 01:18:11 +00:00
// $return['abook'] Address book entry joined with xchan if successful
2012-06-03 06:22:02 +00:00
// $return['message'] error text if success is false.
2012-11-01 04:42:20 +00:00
require_once('include/zot.php');
2012-06-03 06:22:02 +00:00
function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) {
2012-06-03 06:12:20 +00:00
$result = [ 'success' => false, 'message' => '' ];
$my_perms = false;
$is_zot = false;
$protocol = '';
if(substr($url,0,1) === '[') {
$x = strpos($url,']');
if($x) {
$protocol = substr($url,1,$x-1);
$url = substr($url,$x+1);
}
}
$is_http = ((strpos($url,'://') !== false) ? true : false);
2012-06-03 06:12:20 +00:00
if($is_http && substr($url,-1,1) === '/')
$url = substr($url,0,-1);
2012-06-03 06:12:20 +00:00
if(! allowed_url($url)) {
2012-11-01 04:42:20 +00:00
$result['message'] = t('Channel is blocked on this site.');
2012-06-03 06:12:20 +00:00
return $result;
}
if(! $url) {
2012-11-01 04:42:20 +00:00
$result['message'] = t('Channel location missing.');
2012-06-03 06:12:20 +00:00
return $result;
}
// check service class limits
2015-06-15 04:08:00 +00:00
$r = q("select count(*) as total from abook where abook_channel = %d and abook_self = 0 ",
intval($uid)
);
if($r)
$total_channels = $r[0]['total'];
if(! service_class_allows($uid,'total_channels',$total_channels)) {
$result['message'] = upgrade_message();
return $result;
}
$arr = array('url' => $url, 'protocol', 'channel' => array());
2012-06-03 06:12:20 +00:00
call_hooks('follow_init', $arr);
2012-06-03 06:12:20 +00:00
2012-11-01 09:00:25 +00:00
if($arr['channel']['success'])
2012-11-01 08:54:51 +00:00
$ret = $arr['channel'];
elseif((! $is_http) && ((! $protocol) || (strtolower($protocol) === 'zot')))
2016-05-22 01:18:33 +00:00
$ret = Zotlabs\Zot\Finger::run($url,$channel);
2012-11-01 04:42:20 +00:00
2016-05-22 01:18:33 +00:00
if($ret && is_array($ret) && $ret['success']) {
$is_zot = true;
2016-05-22 01:18:33 +00:00
$j = $ret;
}
$p = \Zotlabs\Access\Permissions::connect_perms($uid);
$my_perms = $p['perms'];
if($is_zot && $j) {
2014-02-18 00:00:17 +00:00
logger('follow: ' . $url . ' ' . print_r($j,true), LOGGER_DEBUG);
2012-06-03 06:12:20 +00:00
2014-02-18 00:00:17 +00:00
if(! ($j['success'] && $j['guid'])) {
$result['message'] = t('Response from remote channel was incomplete.');
logger('mod_follow: ' . $result['message']);
return $result;
}
2014-02-18 00:00:17 +00:00
// Premium channel, set confirm before callback to avoid recursion
if(array_key_exists('connect_url',$j) && (! $confirm)) {
if($interactive) {
goaway(zid($j['connect_url']));
}
else {
$result['message'] = t('Premium channel - please visit:') . ' ' . zid($j['connect_url']);
logger('mod_follow: ' . $result['message']);
return $result;
}
}
2014-02-18 00:00:17 +00:00
// do we have an xchan and hubloc?
// If not, create them.
2012-11-01 08:54:51 +00:00
2014-02-18 00:00:17 +00:00
$x = import_xchan($j);
2012-06-03 06:12:20 +00:00
if(array_key_exists('deleted',$j) && intval($j['deleted'])) {
$result['message'] = t('Channel was deleted and no longer exists.');
return $result;
}
2014-02-18 00:00:17 +00:00
if(! $x['success'])
return $x;
2014-02-18 00:00:17 +00:00
$xchan_hash = $x['hash'];
2014-02-18 00:00:17 +00:00
if( array_key_exists('permissions',$j) && array_key_exists('data',$j['permissions'])) {
$permissions = crypto_unencapsulate(array(
'data' => $j['permissions']['data'],
'key' => $j['permissions']['key'],
'iv' => $j['permissions']['iv']),
$channel['channel_prvkey']);
if($permissions)
$permissions = json_decode($permissions,true);
logger('decrypted permissions: ' . print_r($permissions,true), LOGGER_DATA);
}
else
$permissions = $j['permissions'];
2012-11-02 23:25:59 +00:00
2016-07-14 06:05:19 +00:00
if(is_array($permissions) && $permissions) {
foreach($permissions as $k => $v) {
set_abconfig($channel['channel_uid'],$xchan_hash,'their_perms',$k,intval($v));
2014-02-18 00:00:17 +00:00
}
2012-11-02 07:19:04 +00:00
}
}
2014-02-18 00:00:17 +00:00
else {
$xchan_hash = '';
$sql_options = (($protocol) ? " and xchan_network = '" . dbesc($protocol) . "' " : '');
2014-02-18 00:00:17 +00:00
$r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' $sql_options limit 1",
2014-09-01 01:50:30 +00:00
dbesc($url),
dbesc($url)
);
2014-02-18 00:00:17 +00:00
if(! $r) {
// attempt network auto-discovery
2016-03-21 04:41:19 +00:00
$wf = discover_by_webbie($url,$protocol);
2016-03-21 04:41:19 +00:00
if((! $wf) && ($is_http)) {
2016-03-21 04:41:19 +00:00
// try RSS discovery
$feeds = get_config('system','feed_contacts');
if(($feeds) && ($protocol === '' || $protocol === 'feed')) {
$d = discover_by_url($url);
2016-03-21 04:41:19 +00:00
}
else {
$result['message'] = t('Remote channel or protocol unavailable.');
return $result;
}
}
2016-03-21 04:41:19 +00:00
if($wf || $d) {
2014-09-01 01:50:30 +00:00
$r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1",
dbesc(($wf) ? $wf : $url),
2014-09-01 01:50:30 +00:00
dbesc($url)
);
}
}
2016-03-21 04:41:19 +00:00
// if discovery was a success we should have an xchan record in $r
if($r) {
2015-12-10 02:30:30 +00:00
$xchan = $r[0];
2014-09-01 01:50:30 +00:00
$xchan_hash = $r[0]['xchan_hash'];
$their_perms = 0;
}
2014-02-18 00:00:17 +00:00
}
if(! $xchan_hash) {
$result['message'] = t('Channel discovery failed.');
logger('follow: ' . $result['message']);
return $result;
}
2012-06-03 06:12:20 +00:00
$allowed = (($is_zot || $r[0]['xchan_network'] === 'rss') ? 1 : 0);
$x = array('channel_id' => $uid, 'follow_address' => $url, 'xchan' => $r[0], 'allowed' => $allowed, 'singleton' => 0);
call_hooks('follow_allow',$x);
if(! $x['allowed']) {
$result['message'] = t('Protocol disabled.');
return $result;
}
2016-07-14 06:05:19 +00:00
2015-12-10 02:30:30 +00:00
$singleton = intval($x['singleton']);
2016-03-21 04:41:19 +00:00
$aid = $channel['channel_account_id'];
$hash = get_observer_hash();
$default_group = $channel['channel_default_group'];
2015-12-28 05:08:28 +00:00
if($hash == $xchan_hash) {
$result['message'] = t('Cannot connect to yourself.');
return $result;
}
2016-03-21 04:41:19 +00:00
if($xchan['xchan_network'] === 'rss') {
2016-03-21 04:41:19 +00:00
// check service class feed limits
2014-09-01 11:17:10 +00:00
2015-06-15 04:08:00 +00:00
$r = q("select count(*) as total from abook where abook_account = %d and abook_feed = 1 ",
intval($aid)
);
if($r)
$total_feeds = $r[0]['total'];
if(! service_class_allows($uid,'total_feeds',$total_feeds)) {
$result['message'] = upgrade_message();
return $result;
}
// Always set these "remote" permissions for feeds since we cannot interact with them
// to negotiate a suitable permission response
set_abconfig($uid,$xchan_hash,'their_perms','view_stream',1);
set_abconfig($uid,$xchan_hash,'their_perms','republish',1);
}
2012-06-25 05:23:17 +00:00
2017-11-24 22:55:39 +00:00
$profile_assign = get_pconfig($uid,'system','profile_assign','');
$r = q("select abook_id, abook_xchan, abook_pending, abook_instance from abook
where abook_xchan = '%s' and abook_channel = %d limit 1",
dbesc($xchan_hash),
intval($uid)
);
2015-12-28 05:08:28 +00:00
if($r) {
2015-12-10 02:30:30 +00:00
$abook_instance = $r[0]['abook_instance'];
if(($singleton) && strpos($abook_instance,z_root()) === false) {
if($abook_instance)
$abook_instance .= ',';
$abook_instance .= z_root();
$x = q("update abook set abook_instance = '%s', abook_not_here = 0 where abook_id = %d",
dbesc($abook_instance),
intval($r[0]['abook_id'])
);
}
if(intval($r[0]['abook_pending'])) {
$x = q("update abook set abook_pending = 0 where abook_id = %d",
intval($r[0]['abook_id'])
);
}
}
else {
$closeness = get_pconfig($uid,'system','new_abook_closeness');
if($closeness === false)
$closeness = 80;
$r = abook_store_lowlevel(
[
'abook_account' => intval($aid),
'abook_channel' => intval($uid),
'abook_closeness' => intval($closeness),
'abook_xchan' => $xchan_hash,
2017-11-24 22:55:39 +00:00
'abook_profile' => $profile_assign,
'abook_feed' => intval(($xchan['xchan_network'] === 'rss') ? 1 : 0),
'abook_created' => datetime_convert(),
'abook_updated' => datetime_convert(),
'abook_instance' => (($singleton) ? z_root() : '')
]
);
}
if(! $r)
logger('mod_follow: abook creation failed');
if($my_perms) {
foreach($my_perms as $k => $v) {
set_abconfig($uid,$xchan_hash,'my_perms',$k,$v);
2016-07-14 06:05:19 +00:00
}
}
$r = q("select abook.*, xchan.* from abook left join xchan on abook_xchan = xchan_hash
where abook_xchan = '%s' and abook_channel = %d limit 1",
dbesc($xchan_hash),
intval($uid)
);
2015-12-28 05:08:28 +00:00
2013-05-20 03:38:53 +00:00
if($r) {
$result['abook'] = $r[0];
2016-05-20 05:26:37 +00:00
Zotlabs\Daemon\Master::Summon(array('Notifier', 'permission_create', $result['abook']['abook_id']));
2013-05-20 03:38:53 +00:00
}
2016-03-21 04:41:19 +00:00
$arr = array('channel_id' => $uid, 'channel' => $channel, 'abook' => $result['abook']);
2013-11-22 01:49:14 +00:00
call_hooks('follow', $arr);
/** If there is a default group for this channel, add this connection to it */
2012-06-03 06:12:20 +00:00
if($default_group) {
2012-06-03 06:12:20 +00:00
require_once('include/group.php');
$g = group_rec_byhash($uid,$default_group);
if($g)
group_add_member($uid,'',$xchan_hash,$g['id']);
2012-06-03 06:12:20 +00:00
}
$result['success'] = true;
return $result;
}