diff options
author | friendica <info@friendica.com> | 2012-07-18 04:49:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-18 04:49:15 -0700 |
commit | d683df17bd530739bc64c79f152957ab229b6a02 (patch) | |
tree | 80d8a9e92d764aeacbb7bc09551ca1e501456ace /include/Scrape.php | |
parent | 22cf19e174bcee88b44968f2773d1bad2da2b54d (diff) | |
download | volse-hubzilla-d683df17bd530739bc64c79f152957ab229b6a02.tar.gz volse-hubzilla-d683df17bd530739bc64c79f152957ab229b6a02.tar.bz2 volse-hubzilla-d683df17bd530739bc64c79f152957ab229b6a02.zip |
Removing connectors we won't be needing - this is probably going to break some shit.
Diffstat (limited to 'include/Scrape.php')
-rw-r--r-- | include/Scrape.php | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/include/Scrape.php b/include/Scrape.php index b784650cd..5dbab23af 100644 --- a/include/Scrape.php +++ b/include/Scrape.php @@ -333,7 +333,6 @@ function scrape_feed($url) { define ( 'PROBE_NORMAL', 0); -define ( 'PROBE_DIASPORA', 1); function probe_url($url, $mode = PROBE_NORMAL) { require_once('include/email.php'); @@ -344,10 +343,6 @@ function probe_url($url, $mode = PROBE_NORMAL) { return $result; $network = null; - $diaspora = false; - $diaspora_base = ''; - $diaspora_guid = ''; - $diaspora_key = ''; $has_lrdd = false; $email_conversant = false; @@ -384,19 +379,7 @@ function probe_url($url, $mode = PROBE_NORMAL) { $profile = unamp($link['@attributes']['href']); if($link['@attributes']['rel'] === 'http://portablecontacts.net/spec/1.0') $poco = unamp($link['@attributes']['href']); - if($link['@attributes']['rel'] === 'http://joindiaspora.com/seed_location') { - $diaspora_base = unamp($link['@attributes']['href']); - $diaspora = true; - } - if($link['@attributes']['rel'] === 'http://joindiaspora.com/guid') { - $diaspora_guid = unamp($link['@attributes']['href']); - $diaspora = true; - } - if($link['@attributes']['rel'] === 'diaspora-public-key') { - $diaspora_key = base64_decode(unamp($link['@attributes']['href'])); - $pubkey = rsatopem($diaspora_key); - $diaspora = true; - } + } // Status.Net can have more than one profile URL. We need to match the profile URL @@ -521,19 +504,8 @@ function probe_url($url, $mode = PROBE_NORMAL) { } } - if($diaspora && $diaspora_base && $diaspora_guid) { - if($mode == PROBE_DIASPORA || ! $notify) { - $notify = $diaspora_base . 'receive/users/' . $diaspora_guid; - $batch = $diaspora_base . 'receive/public' ; - } - if(strpos($url,'@')) - $addr = str_replace('acct:', '', $url); - } - if($network !== NETWORK_ZOT && $network !== NETWORK_DFRN && $network !== NETWORK_MAIL) { - if($diaspora) - $network = NETWORK_DIASPORA; - elseif($has_lrdd) + if($has_lrdd) $network = NETWORK_OSTATUS; $priority = 0; |