Move remaining functions

update remaining function calls
This commit is contained in:
Adam Magness
2018-01-27 08:25:54 -05:00
parent 1eb7c19c1e
commit ca76e49c23
19 changed files with 58 additions and 51 deletions
+2 -1
View File
@@ -13,6 +13,7 @@ use Friendica\Core\System;
use Friendica\Database\DBM;
use Friendica\Model\Contact;
use Friendica\Model\Profile;
use Friendica\Util\Network;
require_once 'include/dba.php';
require_once 'include/html2plain.php';
@@ -337,7 +338,7 @@ class NotificationsManager extends BaseObject
case ACTIVITY_FRIEND:
$xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
$obj = parse_xml_string($xmlhead . $it['object']);
$obj = Network::parseXmlString($xmlhead . $it['object']);
$it['fname'] = $obj->title;
$notif = [
+4 -5
View File
@@ -26,7 +26,6 @@ use DOMXPath;
use DOMDocument;
require_once 'include/dba.php';
require_once 'include/network.php';
/**
* @brief This class contain functions for probing URL
@@ -111,7 +110,7 @@ class Probe
$ret = Network::zFetchURL($ssl_url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
if ($ret['success']) {
$xml = $ret['body'];
$xrd = parse_xml_string($xml, false);
$xrd = Network::parseXmlString($xml, false);
$host_url = 'https://'.$host;
}
@@ -122,7 +121,7 @@ class Probe
return false;
}
$xml = $ret['body'];
$xrd = parse_xml_string($xml, false);
$xrd = Network::parseXmlString($xml, false);
$host_url = 'http://'.$host;
}
if (!is_object($xrd)) {
@@ -332,7 +331,7 @@ class Probe
}
if (x($data, "photo")) {
$data["baseurl"] = matching_url(normalise_link($data["baseurl"]), normalise_link($data["photo"]));
$data["baseurl"] = Network::matchingURL(normalise_link($data["baseurl"]), normalise_link($data["photo"]));
} else {
$data["photo"] = System::baseUrl().'/images/person-175.jpg';
}
@@ -709,7 +708,7 @@ class Probe
}
// If it is not JSON, maybe it is XML
$xrd = parse_xml_string($data, false);
$xrd = Network::parseXmlString($data, false);
if (!is_object($xrd)) {
logger("No webfinger data retrievable for ".$url, LOGGER_DEBUG);
return false;
+10 -10
View File
@@ -793,7 +793,7 @@ class DFRN
if ($activity) {
$entry = $doc->createElement($element);
$r = parse_xml_string($activity, false);
$r = Network::parseXmlString($activity, false);
if (!$r) {
return false;
}
@@ -816,7 +816,7 @@ class DFRN
$r->link = preg_replace('/\<link(.*?)\"\>/', '<link$1"/>', $r->link);
// XML does need a single element as root element so we add a dummy element here
$data = parse_xml_string("<dummy>" . $r->link . "</dummy>", false);
$data = Network::parseXmlString("<dummy>" . $r->link . "</dummy>", false);
if (is_object($data)) {
foreach ($data->link as $link) {
$attributes = [];
@@ -1212,7 +1212,7 @@ class DFRN
return 3;
}
$res = parse_xml_string($xml);
$res = Network::parseXmlString($xml);
if ((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id))) {
return (($res->status) ? $res->status : 3);
@@ -1357,7 +1357,7 @@ class DFRN
Contact::unmarkForArchival($contact);
}
$res = parse_xml_string($xml);
$res = Network::parseXmlString($xml);
if (!isset($res->status)) {
return -11;
@@ -2188,7 +2188,7 @@ class DFRN
if (!$verb) {
return;
}
$xo = parse_xml_string($item["object"], false);
$xo = Network::parseXmlString($item["object"], false);
if (($xo->type == ACTIVITY_OBJ_PERSON) && ($xo->id)) {
// somebody was poked/prodded. Was it me?
@@ -2310,8 +2310,8 @@ class DFRN
}
if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($item["object"], false);
$xt = parse_xml_string($item["target"], false);
$xo = Network::parseXmlString($item["object"], false);
$xt = Network::parseXmlString($item["target"], false);
if ($xt->type == ACTIVITY_OBJ_NOTE) {
$r = q(
@@ -2518,7 +2518,7 @@ class DFRN
$item["object"] = self::transformActivity($xpath, $object, "object");
if (trim($item["object"]) != "") {
$r = parse_xml_string($item["object"], false);
$r = Network::parseXmlString($item["object"], false);
if (isset($r->type)) {
$item["object-type"] = $r->type;
}
@@ -2787,8 +2787,8 @@ class DFRN
}
if (($item["verb"] == ACTIVITY_TAG) && ($item["object-type"] == ACTIVITY_OBJ_TAGTERM)) {
$xo = parse_xml_string($item["object"], false);
$xt = parse_xml_string($item["target"], false);
$xo = Network::parseXmlString($item["object"], false);
$xt = Network::parseXmlString($item["target"], false);
if ($xt->type == ACTIVITY_OBJ_NOTE) {
$i = q(
+6 -6
View File
@@ -186,7 +186,7 @@ class Diaspora
*/
private static function verifyMagicEnvelope($envelope)
{
$basedom = parse_xml_string($envelope);
$basedom = Network::parseXmlString($envelope);
if (!is_object($basedom)) {
logger("Envelope is no XML file");
@@ -296,7 +296,7 @@ class Diaspora
$xml = $raw;
}
$basedom = parse_xml_string($xml);
$basedom = Network::parseXmlString($xml);
if (!is_object($basedom)) {
logger('Received data does not seem to be an XML. Discarding. '.$xml);
@@ -347,7 +347,7 @@ class Diaspora
public static function decode($importer, $xml)
{
$public = false;
$basedom = parse_xml_string($xml);
$basedom = Network::parseXmlString($xml);
if (!is_object($basedom)) {
logger("XML is not parseable.");
@@ -381,7 +381,7 @@ class Diaspora
$decrypted = self::aesDecrypt($outer_key, $outer_iv, $ciphertext);
logger('decrypted: '.$decrypted, LOGGER_DEBUG);
$idom = parse_xml_string($decrypted);
$idom = Network::parseXmlString($decrypted);
$inner_iv = base64_decode($idom->iv);
$inner_aes_key = base64_decode($idom->aes_key);
@@ -631,7 +631,7 @@ class Diaspora
*/
private static function validPosting($msg)
{
$data = parse_xml_string($msg["message"]);
$data = Network::parseXmlString($msg["message"]);
if (!is_object($data)) {
logger("No valid XML ".$msg["message"], LOGGER_DEBUG);
@@ -1281,7 +1281,7 @@ class Diaspora
}
}
$source_xml = parse_xml_string($x);
$source_xml = Network::parseXmlString($x);
if (!is_object($source_xml)) {
return false;
+2 -1
View File
@@ -9,6 +9,7 @@ namespace Friendica\Protocol;
use Friendica\Database\DBM;
use Friendica\Core\System;
use Friendica\Model\Item;
use Friendica\Util\Network;
use dba;
use DOMDocument;
use DOMXPath;
@@ -243,7 +244,7 @@ class Feed {
$orig_plink = $item["plink"];
$item["plink"] = original_url($item["plink"]);
$item["plink"] = Network::originalURL($item["plink"]);
$item["parent-uri"] = $item["uri"];
+6 -5
View File
@@ -11,6 +11,7 @@ use Friendica\Core\System;
use Friendica\Core\Config;
use Friendica\Network\Probe;
use Friendica\Object\Image;
use Friendica\Util\Network;
use Friendica\Util\XML;
require_once 'library/slinky.php';
@@ -852,7 +853,7 @@ class Network
{
$a = get_app();
$url = strip_tracking_query_params($url);
$url = self::stripTrackingQueryParams($url);
if ($depth > 10) {
return($url);
@@ -885,15 +886,15 @@ class Network
&& (($curl_info['redirect_url'] != "") || ($curl_info['location'] != ""))
) {
if ($curl_info['redirect_url'] != "") {
return(original_url($curl_info['redirect_url'], ++$depth, $fetchbody));
return(Network::originalURL($curl_info['redirect_url'], ++$depth, $fetchbody));
} else {
return(original_url($curl_info['location'], ++$depth, $fetchbody));
return(Network::originalURL($curl_info['location'], ++$depth, $fetchbody));
}
}
// Check for redirects in the meta elements of the body if there are no redirects in the header.
if (!$fetchbody) {
return(original_url($url, ++$depth, true));
return(Network::originalURL($url, ++$depth, true));
}
// if the file is too large then exit
@@ -945,7 +946,7 @@ class Network
$pathinfo = explode(";", $path);
foreach ($pathinfo as $value) {
if (substr(strtolower($value), 0, 4) == "url=") {
return(original_url(substr($value, 4), ++$depth));
return(Network::originalURL(substr($value, 4), ++$depth));
}
}
}
+1 -1
View File
@@ -141,7 +141,7 @@ class ParseUrl
$url = trim($url, "'");
$url = trim($url, '"');
$url = strip_tracking_query_params($url);
$url = Network::stripTrackingQueryParams($url);
$siteinfo["url"] = $url;
$siteinfo["type"] = "link";
+2 -1
View File
@@ -15,6 +15,7 @@ use Friendica\Model\User;
use Friendica\Protocol\Diaspora;
use Friendica\Protocol\DFRN;
use Friendica\Protocol\Email;
use Friendica\Util\Network;
use dba;
require_once 'include/html2plain.php';
@@ -299,7 +300,7 @@ class Delivery {
}
$ssl_policy = Config::get('system','ssl_policy');
fix_contact_ssl_policy($x[0],$ssl_policy);
Network::fixContactSslPolicy($x[0], $ssl_policy);
// If we are setup as a soapbox we aren't accepting top level posts from this person
+1 -1
View File
@@ -219,7 +219,7 @@ class OnePoll
}
$res = parse_xml_string($handshake_xml);
$res = Network::parseXmlString($handshake_xml);
if (intval($res->status) == 1) {
logger("$url replied status 1 - marking for death ");