2010-07-01 23:48:07 +00:00
|
|
|
<?php
|
2016-07-03 22:14:08 +00:00
|
|
|
require_once('include/Probe.php');
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2011-08-18 06:10:55 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* 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
|
2012-02-19 18:27:54 +00:00
|
|
|
* an address (such as a Friendica address) supports more than one type
|
2015-11-04 23:42:38 +00:00
|
|
|
* of network.
|
2011-08-18 06:10:55 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-07-03 22:14:08 +00:00
|
|
|
define('PROBE_NORMAL', 0);
|
|
|
|
define('PROBE_DIASPORA', 1);
|
2011-04-15 07:59:00 +00:00
|
|
|
|
2015-06-13 23:52:26 +00:00
|
|
|
function probe_url($url, $mode = PROBE_NORMAL, $level = 1) {
|
2015-12-06 17:52:19 +00:00
|
|
|
|
2016-07-03 22:14:08 +00:00
|
|
|
if ($mode == PROBE_DIASPORA)
|
|
|
|
$network = NETWORK_DIASPORA;
|
|
|
|
else
|
|
|
|
$network = "";
|
2015-12-06 17:52:19 +00:00
|
|
|
|
2016-07-03 22:14:08 +00:00
|
|
|
$data = Probe::uri($url, $network);
|
2015-01-20 21:54:25 +00:00
|
|
|
|
2016-07-03 22:14:08 +00:00
|
|
|
return $data;
|
2011-04-15 07:59:00 +00:00
|
|
|
}
|