Remove obsolote functions

This commit is contained in:
Michael Vogel 2016-07-09 20:09:09 +02:00
commit f27bc00464
8 changed files with 117 additions and 333 deletions

View file

@ -16,6 +16,7 @@
require_once('include/enotify.php');
require_once('include/group.php');
require_once('include/Probe.php');
function dfrn_confirm_post(&$a,$handsfree = null) {
@ -356,7 +357,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
$poll = (($contact['poll']) ? $contact['poll'] : '');
if((! $contact['notify']) || (! $contact['poll'])) {
$arr = lrdd($contact['url']);
$arr = Probe::lrdd($contact['url']);
if(count($arr)) {
foreach($arr as $link) {
if($link['@attributes']['rel'] === 'salmon')

View file

@ -448,7 +448,7 @@ function dfrn_request_post(&$a) {
$network = $data["network"];
// Canonicalise email-style profile locator
$url = webfinger_dfrn($url,$hcard);
$url = Probe::webfinger_dfrn($url,$hcard);
if (substr($url,0,5) === 'stat:') {

View file

@ -8,6 +8,7 @@ require_once('include/security.php');
require_once('include/redir.php');
require_once('include/tags.php');
require_once('include/threads.php');
require_once('include/Probe.php');
function photos_init(&$a) {
@ -552,7 +553,7 @@ function photos_post(&$a) {
$name = substr($tag,1);
if((strpos($name,'@')) || (strpos($name,'http://'))) {
$newname = $name;
$links = @lrdd($name);
$links = @Probe::lrdd($name);
if(count($links)) {
foreach($links as $link) {
if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page')

View file

@ -1,5 +1,6 @@
<?php
require_once("include/Contact.php");
require_once('include/Probe.php');
function profiles_init(&$a) {
@ -251,7 +252,7 @@ function profiles_post(&$a) {
$lookup = str_replace('_',' ', $lookup);
if(strpos($lookup,'@') || (strpos($lookup,'http://'))) {
$newname = $lookup;
$links = @lrdd($lookup);
$links = @Probe::lrdd($lookup);
if(count($links)) {
foreach($links as $link) {
if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {

View file

@ -1,6 +1,5 @@
<?php
require_once("include/Probe.php");
function webfinger_content(&$a) {
@ -8,16 +7,13 @@ function webfinger_content(&$a) {
$o .= '<form action="webfinger" method="get">';
$o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
$o .= '<br /><br />';
if(x($_GET,'addr')) {
$addr = trim($_GET['addr']);
if(strpos($addr,'@' !== false))
$res = webfinger($addr);
else
$res = lrdd($addr);
$res = Probe::lrdd($addr);
$o .= '<pre>';
$o .= str_replace("\n",'<br />',print_r($res,true));
$o .= '</pre>';