]> git.mxchange.org Git - friendica.git/blobdiff - include/Scrape.php
Rename include/Scrape to include/probe
[friendica.git] / include / Scrape.php
diff --git a/include/Scrape.php b/include/Scrape.php
deleted file mode 100644 (file)
index 2d52059..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-use Friendica\Network\Probe;
-
-/**
- *
- * Probe a network address to discover what kind of protocols we need to communicate with it.
- *
- * Warning: this function is a bit touchy and there are some subtle dependencies within the logic flow.
- * Edit with care.
- *
- */
-
-/**
- *
- * PROBE_DIASPORA has a bias towards returning Diaspora information
- * while PROBE_NORMAL has a bias towards dfrn/zot - in the case where
- * an address (such as a Friendica address) supports more than one type
- * of network.
- *
- */
-
-define('PROBE_NORMAL',   0);
-define('PROBE_DIASPORA', 1);
-
-function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
-
-       if ($mode == PROBE_DIASPORA)
-               $network = NETWORK_DIASPORA;
-       else
-               $network = "";
-
-       $data = Probe::uri($url, $network);
-
-       return $data;
-}