aboutsummaryrefslogtreecommitdiffstats
path: root/include/follow.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-31 21:42:20 -0700
committerfriendica <info@friendica.com>2012-10-31 21:42:20 -0700
commit77c30972cbdba4f1b29cdce05c362dd1975dfc41 (patch)
tree517720d8e892234f61a0102c2633a9db3a062c71 /include/follow.php
parent78f64c90a353606b0a46185d07e65359eebe99ad (diff)
downloadvolse-hubzilla-77c30972cbdba4f1b29cdce05c362dd1975dfc41.tar.gz
volse-hubzilla-77c30972cbdba4f1b29cdce05c362dd1975dfc41.tar.bz2
volse-hubzilla-77c30972cbdba4f1b29cdce05c362dd1975dfc41.zip
network discovery on follow
Diffstat (limited to 'include/follow.php')
-rw-r--r--include/follow.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/include/follow.php b/include/follow.php
index 4c835c8a7..8bea21ebc 100644
--- a/include/follow.php
+++ b/include/follow.php
@@ -2,28 +2,28 @@
//
-// Takes a $uid and a url/handle and adds a new channel
+// Takes a $uid and the channel associated with the uid, and a url/handle and adds a new channel
// Returns an array
// $return['success'] boolean true if successful
// $return['abook_id'] Address book ID if successful
// $return['message'] error text if success is false.
+require_once('include/zot.php');
-
-function new_contact($uid,$url,$interactive = false) {
+function new_contact($uid,$url,$channel.$interactive = false) {
$result = array('success' => false,'message' => '');
$a = get_app();
if(! allowed_url($url)) {
- $result['message'] = t('Disallowed profile URL.');
+ $result['message'] = t('Channel is blocked on this site.');
return $result;
}
if(! $url) {
- $result['message'] = t('Connect URL missing.');
+ $result['message'] = t('Channel location missing.');
return $result;
}
@@ -34,9 +34,15 @@ function new_contact($uid,$url,$interactive = false) {
if(x($arr['contact'],'name'))
$ret = $arr['contact'];
else
- $ret = zot_probe_url($url);
+ $ret = zot_finger($url,$channel,false);
+
+ if($ret['success']) {
+ $j = json_decode($ret['body']);
+ }
+// logger('follow: ' . print_r($j,true));
+ killme();
if($ret['network'] === NETWORK_DFRN) {