diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-08-03 16:52:51 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-08-03 16:52:51 -0700 |
commit | b737e224b149c1c27775bfc213125eea0ce540b8 (patch) | |
tree | 76625d521743a6af375700231a009321ab9d86e8 /include/follow.php | |
parent | db70c76494997dfda4f850b4ee63ddae2c608bde (diff) | |
download | volse-hubzilla-b737e224b149c1c27775bfc213125eea0ce540b8.tar.gz volse-hubzilla-b737e224b149c1c27775bfc213125eea0ce540b8.tar.bz2 volse-hubzilla-b737e224b149c1c27775bfc213125eea0ce540b8.zip |
more work separating Diaspora from core
Diffstat (limited to 'include/follow.php')
-rw-r--r-- | include/follow.php | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/include/follow.php b/include/follow.php index 9430feac6..960138743 100644 --- a/include/follow.php +++ b/include/follow.php @@ -129,19 +129,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) } } else { - if(! ($is_http)) { - if(! intval(get_config('system','diaspora_enabled'))) { - $result['message'] = t('Protocol disabled.'); - return $result; - } - - $allowed = get_pconfig($uid,'system','diaspora_allowed'); - - if(! intval($allowed)) { - $result['message'] = t('Protocol blocked for this channel.'); - return $result; - } - } $their_perms = 0; $xchan_hash = ''; @@ -158,8 +145,15 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) } elseif($is_http) { $r = discover_by_url($url); + $r['allowed'] = intval(get_config('system','feed_contacts')); } if($r) { + $r['channel_id'] = $uid; + call_hooks('follow_allow',$r); + if(! $r['allowed']) { + $result['message'] = t('Protocol disabled.'); + return $result; + } $r = q("select * from xchan where xchan_hash = '%s' or xchan_url = '%s' limit 1", dbesc($url), dbesc($url) @@ -199,10 +193,6 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) if($is_http) { - if(! intval(get_config('system','feed_contacts'))) { - $result['message'] = t('Protocol disabled.'); - return $result; - } $r = q("select count(*) as total from abook where abook_account = %d and abook_feed = 1 ", intval($aid) @@ -261,8 +251,7 @@ function new_contact($uid,$url,$channel,$interactive = false, $confirm = false) ); if($r) { $result['abook'] = $r[0]; - if($is_red) - proc_run('php', 'include/notifier.php', 'permission_update', $result['abook']['abook_id']); + proc_run('php', 'include/notifier.php', 'permission_update', $result['abook']['abook_id']); } $arr = array('channel_id' => $uid, 'abook' => $result['abook']); |