]> git.mxchange.org Git - friendica.git/commitdiff
Review update
authorAdam Magness <adam.magness@gmail.com>
Sat, 27 Jan 2018 16:13:41 +0000 (11:13 -0500)
committerAdam Magness <adam.magness@gmail.com>
Sat, 27 Jan 2018 16:13:41 +0000 (11:13 -0500)
Rename function, move others

55 files changed:
include/acl_selectors.php
include/api.php
include/bb2diaspora.php
include/bbcode.php
include/conversation.php
include/html2bbcode.php
include/items.php
mod/dfrn_confirm.php
mod/dfrn_notify.php
mod/dfrn_poll.php
mod/dfrn_request.php
mod/dirfind.php
mod/hovercard.php
mod/install.php
mod/item.php
mod/match.php
mod/nodeinfo.php
mod/notifications.php
mod/oexchange.php
mod/ostatus_subscribe.php
mod/parse_url.php
mod/proxy.php
mod/pubsubhubbub.php
mod/settings.php
mod/smilies.php
spec/dfrn2_contact_confirmation.svg
spec/dfrn2_contact_request.svg
src/Content/OEmbed.php
src/Content/Text/BBCode.php
src/Core/NotificationsManager.php
src/Core/Worker.php
src/Model/Contact.php
src/Model/GContact.php
src/Model/Photo.php
src/Model/Profile.php
src/Model/User.php
src/Module/Login.php
src/Network/Probe.php
src/Object/Image.php
src/Protocol/DFRN.php
src/Protocol/Diaspora.php
src/Protocol/Feed.php
src/Protocol/OStatus.php
src/Protocol/PortableContact.php
src/Protocol/Salmon.php
src/Util/ExAuth.php
src/Util/Network.php
src/Util/ParseUrl.php
src/Util/XML.php
src/Worker/CheckVersion.php
src/Worker/Delivery.php
src/Worker/Directory.php
src/Worker/DiscoverPoCo.php
src/Worker/OnePoll.php
src/Worker/PubSubPublish.php

index 38a418dd1cd94020fdd9ce8ee62882be4ec526fb..72f49a40ba108910d8c52b4ec7d67c7cd5f447b0 100644 (file)
@@ -734,7 +734,7 @@ function navbar_complete(App $a) {
        if (! $localsearch) {
                $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
 
-               $x = Network::zFetchURL(get_server() . '/lsearch?f=' . $p .  '&search=' . urlencode($search));
+               $x = Network::curl(get_server() . '/lsearch?f=' . $p .  '&search=' . urlencode($search));
                if ($x['success']) {
                        $j = json_decode($x['body'],true);
                        if ($j && isset($j['results'])) {
index 610cd26ddafad7f2ec29ef534d210a1985fe276c..7164f85abf1dbed7aaf5a490d0a2dfb59014aec5 100644 (file)
@@ -5074,7 +5074,7 @@ function api_get_nick($profile)
                if ($StatusnetHost != $profile) {
                        $StatusnetUser = preg_replace("=https?://(.*)/user/(.*)=ism", "$2", $profile);
                        if ($StatusnetUser != $profile) {
-                               $UserData = Network::fetchURL("http://".$StatusnetHost."/api/users/show.json?user_id=".$StatusnetUser);
+                               $UserData = Network::fetchUrl("http://".$StatusnetHost."/api/users/show.json?user_id=".$StatusnetUser);
                                $user = json_decode($UserData);
                                if ($user) {
                                        $nick = $user->screen_name;
index d5fa8642ad4961b0dda0193345921439582d3899..95047d61aed597d63ab51d7d362d446ec9e5d75f 100644 (file)
@@ -1,11 +1,11 @@
 <?php
 
+use Friendica\Content\Text\BBCode;
 use Friendica\Content\Text\Markdown;
 use Friendica\Core\Addon;
 use Friendica\Core\System;
 use Friendica\Model\Contact;
 use Friendica\Network\Probe;
-use Friendica\Util\Network;
 use League\HTMLToMarkdown\HtmlConverter;
 
 require_once 'include/event.php';
@@ -83,7 +83,7 @@ function diaspora2bb($s) {
        $s = preg_replace('/(\[code\])+(.*?)(\[\/code\])+/ism', '[code]$2[/code]', $s);
 
        // Don't show link to full picture (until it is fixed)
-       $s = Network::scaleExternalImages($s, false);
+       $s = BBCode::scaleExternalImages($s, false);
 
        return $s;
 }
index 8f758ae616a9de291916ce3a7f3dfb3f2985fc3c..fd7bcbf9b3195345dc5de9c18c44ff17b8b9abf2 100644 (file)
@@ -689,7 +689,7 @@ function GetProfileUsername($profile, $username, $compact = false, $getnetwork =
                $StatusnetUser = preg_replace("=https?://(.*)/user/(.*)=ism", "$2", $profile);
                if ($StatusnetUser != $profile) {
                        /// @TODO Some hosts run on https, not just http and sometimes http is disabled, let's support both here
-                       $UserData = Network::fetchURL("http://".$StatusnetHost."/api/users/show.json?user_id=".$StatusnetUser);
+                       $UserData = Network::fetchUrl("http://".$StatusnetHost."/api/users/show.json?user_id=".$StatusnetUser);
                        $user = json_decode($UserData);
                        if ($user) {
                                if ($getnetwork) {
@@ -748,7 +748,7 @@ function bb_RemovePictureLinks($match) {
                        $text = "[url=".$match[2]."]".$match[2]."[/url]";
 
                        // if its not a picture then look if its a page that contains a picture link
-                       $body = Network::fetchURL($match[1]);
+                       $body = Network::fetchUrl($match[1]);
 
                        $doc = new DOMDocument();
                        @$doc->loadHTML($body);
@@ -803,7 +803,7 @@ function bb_CleanPictureLinksSub($match) {
                        $text = "[img]".$match[2]."[/img]";
 
                        // if its not a picture then look if its a page that contains a picture link
-                       $body = Network::fetchURL($match[1]);
+                       $body = Network::fetchUrl($match[1]);
 
                        $doc = new DOMDocument();
                        @$doc->loadHTML($body);
index 11d0a0d0dce04b85a870f4ba7b458760bfda5ff8..af4bb0559efd752efa252f0535a447d6765c5dea 100644 (file)
@@ -15,7 +15,7 @@ use Friendica\Model\Contact;
 use Friendica\Model\Profile;
 use Friendica\Object\Thread;
 use Friendica\Object\Post;
-use Friendica\Util\Network;
+use Friendica\Util\XML;
 
 require_once "include/bbcode.php";
 require_once "include/acl_selectors.php";
@@ -185,8 +185,8 @@ function localize_item(&$item) {
 
                $xmlhead="<"."?xml version='1.0' encoding='UTF-8' ?".">";
 
-               $obj = Network::parseXmlString($xmlhead.$item['object']);
-               $links = Network::parseXmlString($xmlhead."<links>".unxmlify($obj->link)."</links>");
+               $obj = XML::parseString($xmlhead.$item['object']);
+               $links = XML::parseString($xmlhead."<links>".unxmlify($obj->link)."</links>");
 
                $Bname = $obj->title;
                $Blink = ""; $Bphoto = "";
@@ -221,8 +221,8 @@ function localize_item(&$item) {
 
                $xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
 
-               $obj = Network::parseXmlString($xmlhead.$item['object']);
-               $links = Network::parseXmlString($xmlhead."<links>".unxmlify($obj->link)."</links>");
+               $obj = XML::parseString($xmlhead.$item['object']);
+               $links = XML::parseString($xmlhead."<links>".unxmlify($obj->link)."</links>");
 
                $Bname = $obj->title;
                $Blink = "";
@@ -296,7 +296,7 @@ function localize_item(&$item) {
                }
                $plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
 
-               $parsedobj = Network::parseXmlString($xmlhead.$item['object']);
+               $parsedobj = XML::parseString($xmlhead.$item['object']);
 
                $tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
                $item['body'] = L10n::t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag );
@@ -313,7 +313,7 @@ function localize_item(&$item) {
 
                $xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
 
-               $obj = Network::parseXmlString($xmlhead.$item['object']);
+               $obj = XML::parseString($xmlhead.$item['object']);
                if (strlen($obj->id)) {
                        $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
                                        dbesc($obj->id),
index c8a05c14530c5142eb1e9fa52328be6835e6083a..a5967d2cb3556b514c0665a0375c48ad94a16658 100644 (file)
@@ -363,7 +363,7 @@ function addHostnameSub($matches, $basepath)
        $url = $matches[1];
 
        $parts = array_merge($base, parse_url($url));
-       $url2 = Network::unParseURL($parts);
+       $url2 = Network::unparseURL($parts);
 
        return str_replace($url, $url2, $link);
 }
index a1afbb30625978994ea761c7f9552117fa63f65b..1951b340cbcbedb4a3a7e694d92c62f05cb99581 100644 (file)
@@ -1481,7 +1481,7 @@ function subscribe_to_hub($url, $importer, $contact, $hubmode = 'subscribe') {
                dba::update('contact', ['hub-verify' => $verify_token], ['id' => $contact['id']]);
        }
 
-       Network::postURL($url, $params);
+       Network::post($url, $params);
 
        logger('subscribe_to_hub: returns: ' . $a->get_curl_code(), LOGGER_DEBUG);
 
index 8c50a05a1651a235e2bbe15a8c7fa8b3bf3f089c..85e896dcf5775239d6dc47d750ff14ddda1dbe92 100644 (file)
@@ -31,6 +31,7 @@ use Friendica\Network\Probe;
 use Friendica\Protocol\Diaspora;
 use Friendica\Util\Crypto;
 use Friendica\Util\Network;
+use Friendica\Util\XML;
 
 require_once 'include/enotify.php';
 require_once 'include/items.php';
@@ -221,7 +222,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                         *
                         */
 
-                       $res = Network::postURL($dfrn_confirm, $params, null, $redirects, 120);
+                       $res = Network::post($dfrn_confirm, $params, null, $redirects, 120);
 
                        logger(' Confirm: received data: ' . $res, LOGGER_DATA);
 
@@ -252,7 +253,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                                return;
                        }
 
-                       $xml = Network::parseXmlString($res);
+                       $xml = XML::parseString($res);
                        $status = (int) $xml->status;
                        $message = unxmlify($xml->message);   // human readable text of what may have gone wrong.
                        switch ($status) {
@@ -493,7 +494,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                $user = dba::selectFirst('user', [], ['nickname' => $node]);
                if (!DBM::is_result($user)) {
                        $message = L10n::t('No user record found for \'%s\' ', $node);
-                       Network::xmlStatus(3, $message); // failure
+                       Network::xmlExit(3, $message); // failure
                        // NOTREACHED
                }
 
@@ -503,7 +504,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
 
                if (!strstr($my_prvkey, 'PRIVATE KEY')) {
                        $message = L10n::t('Our site encryption key is apparently messed up.');
-                       Network::xmlStatus(3, $message);
+                       Network::xmlExit(3, $message);
                }
 
                // verify everything
@@ -514,7 +515,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
 
                if (!strlen($decrypted_source_url)) {
                        $message = L10n::t('Empty site URL was provided or URL could not be decrypted by us.');
-                       Network::xmlStatus(3, $message);
+                       Network::xmlExit(3, $message);
                        // NOTREACHED
                }
 
@@ -530,7 +531,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                        if (!DBM::is_result($contact)) {
                                // this is either a bogus confirmation (?) or we deleted the original introduction.
                                $message = L10n::t('Contact record was not found for you on our site.');
-                               Network::xmlStatus(3, $message);
+                               Network::xmlExit(3, $message);
                                return; // NOTREACHED
                        }
                }
@@ -544,7 +545,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
 
                if (!$foreign_pubkey) {
                        $message = L10n::t('Site public key not available in contact record for URL %s.', $decrypted_source_url);
-                       Network::xmlStatus(3, $message);
+                       Network::xmlExit(3, $message);
                }
 
                $decrypted_dfrn_id = "";
@@ -560,7 +561,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
 
                if (dba::exists('contact', ['dfrn-id' => $decrypted_dfrn_id])) {
                        $message = L10n::t('The ID provided by your system is a duplicate on our system. It should work if you try again.');
-                       Network::xmlStatus(1, $message); // Birthday paradox - duplicate dfrn-id
+                       Network::xmlExit(1, $message); // Birthday paradox - duplicate dfrn-id
                        // NOTREACHED
                }
 
@@ -571,7 +572,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                );
                if (!DBM::is_result($r)) {
                        $message = L10n::t('Unable to set your contact credentials on our system.');
-                       Network::xmlStatus(3, $message);
+                       Network::xmlExit(3, $message);
                }
 
                // It's possible that the other person also requested friendship.
@@ -626,7 +627,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                );
                if (!DBM::is_result($r)) {      // indicates schema is messed up or total db failure
                        $message = L10n::t('Unable to update your contact profile details on our system');
-                       Network::xmlStatus(3, $message);
+                       Network::xmlExit(3, $message);
                }
 
                // Otherwise everything seems to have worked and we are almost done. Yay!
@@ -707,7 +708,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
                                }
                        }
                }
-               Network::xmlStatus(0); // Success
+               Network::xmlExit(0); // Success
                return; // NOTREACHED
                ////////////////////// End of this scenario ///////////////////////////////////////////////
        }
index b1af5b3ef7fc2f8d675acdc40b239900b7120ae4..8efb9328d53cc887d7cb707a7a2fba313ef86898 100644 (file)
@@ -49,7 +49,7 @@ function dfrn_notify_post(App $a) {
        );
        if (! DBM::is_result($r)) {
                logger('dfrn_notify: could not match challenge to dfrn_id ' . $dfrn_id . ' challenge=' . $challenge);
-               Network::xmlStatus(3, 'Could not match challenge');
+               Network::xmlExit(3, 'Could not match challenge');
        }
 
        $r = q("DELETE FROM `challenge` WHERE `dfrn-id` = '%s' AND `challenge` = '%s'",
@@ -71,7 +71,7 @@ function dfrn_notify_post(App $a) {
                        $sql_extra = sprintf(" AND `dfrn-id` = '%s' AND `duplex` = 1 ", dbesc($dfrn_id));
                        break;
                default:
-                       Network::xmlStatus(3, 'Invalid direction');
+                       Network::xmlExit(3, 'Invalid direction');
                        break; // NOTREACHED
        }
 
@@ -97,7 +97,7 @@ function dfrn_notify_post(App $a) {
 
        if (! DBM::is_result($r)) {
                logger('dfrn_notify: contact not found for dfrn_id ' . $dfrn_id);
-               Network::xmlStatus(3, 'Contact not found');
+               Network::xmlExit(3, 'Contact not found');
                //NOTREACHED
        }
 
@@ -123,7 +123,7 @@ function dfrn_notify_post(App $a) {
 
        // if contact's ssl policy changed, update our links
 
-       Network::fixContactSslPolicy($importer, $ssl_policy);
+       $importer = Contact::updateSslPolicy($importer, $ssl_policy);
 
        logger('dfrn_notify: received notify from ' . $importer['name'] . ' for ' . $importer['username']);
        logger('dfrn_notify: data: ' . $data, LOGGER_DATA);
@@ -132,7 +132,7 @@ function dfrn_notify_post(App $a) {
                // Relationship is dissolved permanently
                Contact::remove($importer['id']);
                logger('relationship dissolved : ' . $importer['name'] . ' dissolved ' . $importer['username']);
-               Network::xmlStatus(0, 'relationship dissolved');
+               Network::xmlExit(0, 'relationship dissolved');
        }
 
        $rino = Config::get('system', 'rino_encrypt');
@@ -146,7 +146,7 @@ function dfrn_notify_post(App $a) {
                // but only for $remote_rino > 1, because old code did't send rino version
                if ($rino_remote > 1 && $rino < $rino_remote) {
                        logger("rino version '$rino_remote' is lower than supported '$rino'");
-                       Network::xmlStatus(0, "rino version '$rino_remote' is lower than supported '$rino'");
+                       Network::xmlExit(0, "rino version '$rino_remote' is lower than supported '$rino'");
                }
 
                $rawkey = hex2bin(trim($key));
@@ -176,14 +176,14 @@ function dfrn_notify_post(App $a) {
                                break;
                        default:
                                logger("rino: invalid sent version '$rino_remote'");
-                               Network::xmlStatus(0, "Invalid sent version '$rino_remote'");
+                               Network::xmlExit(0, "Invalid sent version '$rino_remote'");
                }
 
                logger('rino: decrypted data: ' . $data, LOGGER_DATA);
        }
 
        $ret = DFRN::import($data, $importer);
-       Network::xmlStatus($ret, 'Processed');
+       Network::xmlExit($ret, 'Processed');
 
        // NOTREACHED
 }
index 5042ed642d8725afa05fdaf7c5194b6fd9cb2411..3e5aa5b1c7bb285df46ad0298418624bfaacf127 100644 (file)
@@ -12,6 +12,7 @@ use Friendica\Module\Login;
 use Friendica\Protocol\DFRN;
 use Friendica\Protocol\OStatus;
 use Friendica\Util\Network;
+use Friendica\Util\XML;
 
 require_once 'include/items.php';
 
@@ -99,12 +100,12 @@ function dfrn_poll_init(App $a)
                );
 
                if (DBM::is_result($r)) {
-                       $s = Network::fetchURL($r[0]['poll'] . '?dfrn_id=' . $my_id . '&type=profile-check');
+                       $s = Network::fetchUrl($r[0]['poll'] . '?dfrn_id=' . $my_id . '&type=profile-check');
 
                        logger("dfrn_poll: old profile returns " . $s, LOGGER_DATA);
 
                        if (strlen($s)) {
-                               $xml = Network::parseXmlString($s);
+                               $xml = XML::parseString($s);
 
                                if ((int) $xml->status === 1) {
                                        $_SESSION['authenticated'] = 1;
@@ -144,7 +145,7 @@ function dfrn_poll_init(App $a)
                                dbesc($sec)
                        );
                        if (!DBM::is_result($r)) {
-                               Network::xmlStatus(3, 'No ticket');
+                               Network::xmlExit(3, 'No ticket');
                                // NOTREACHED
                        }
 
@@ -157,7 +158,7 @@ function dfrn_poll_init(App $a)
                                intval($r[0]['cid'])
                        );
                        if (!DBM::is_result($c)) {
-                               Network::xmlStatus(3, 'No profile');
+                               Network::xmlExit(3, 'No profile');
                        }
 
                        $contact = $c[0];
@@ -184,7 +185,7 @@ function dfrn_poll_init(App $a)
                        if ($final_dfrn_id != $orig_id) {
                                logger('profile_check: ' . $final_dfrn_id . ' != ' . $orig_id, LOGGER_DEBUG);
                                // did not decode properly - cannot trust this site
-                               Network::xmlStatus(3, 'Bad decryption');
+                               Network::xmlExit(3, 'Bad decryption');
                        }
 
                        header("Content-type: text/xml");
@@ -208,10 +209,10 @@ function dfrn_poll_init(App $a)
                        $r = q("SELECT * FROM `profile_check` WHERE `dfrn_id` = '%s' ORDER BY `expire` DESC",
                                dbesc($dfrn_id));
                        if (DBM::is_result($r)) {
-                               Network::xmlStatus(1);
+                               Network::xmlExit(1);
                                return; // NOTREACHED
                        }
-                       Network::xmlStatus(0);
+                       Network::xmlExit(0);
                        return; // NOTREACHED
                }
        }
@@ -236,7 +237,7 @@ function dfrn_poll_post(App $a)
                                dbesc($sec)
                        );
                        if (!DBM::is_result($r)) {
-                               Network::xmlStatus(3, 'No ticket');
+                               Network::xmlExit(3, 'No ticket');
                                // NOTREACHED
                        }
 
@@ -249,7 +250,7 @@ function dfrn_poll_post(App $a)
                                intval($r[0]['cid'])
                        );
                        if (!DBM::is_result($c)) {
-                               Network::xmlStatus(3, 'No profile');
+                               Network::xmlExit(3, 'No profile');
                        }
 
                        $contact = $c[0];
@@ -276,7 +277,7 @@ function dfrn_poll_post(App $a)
                        if ($final_dfrn_id != $orig_id) {
                                logger('profile_check: ' . $final_dfrn_id . ' != ' . $orig_id, LOGGER_DEBUG);
                                // did not decode properly - cannot trust this site
-                               Network::xmlStatus(3, 'Bad decryption');
+                               Network::xmlExit(3, 'Bad decryption');
                        }
 
                        header("Content-type: text/xml");
@@ -482,7 +483,7 @@ function dfrn_poll_content(App $a)
                if (($type === 'profile') && (strlen($sec))) {
                        // URL reply
                        if ($dfrn_version < 2.2) {
-                               $s = Network::fetchURL($r[0]['poll']
+                               $s = Network::fetchUrl($r[0]['poll']
                                        . '?dfrn_id=' . $encrypted_id
                                        . '&type=profile-check'
                                        . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
@@ -490,7 +491,7 @@ function dfrn_poll_content(App $a)
                                        . '&sec=' . $sec
                                );
                        } else {
-                               $s = Network::postURL($r[0]['poll'], [
+                               $s = Network::post($r[0]['poll'], [
                                        'dfrn_id' => $encrypted_id,
                                        'type' => 'profile-check',
                                        'dfrn_version' => DFRN_PROTOCOL_VERSION,
@@ -521,7 +522,7 @@ function dfrn_poll_content(App $a)
                        logger("dfrn_poll: sec profile: " . $s, LOGGER_DATA);
 
                        if (strlen($s) && strstr($s, '<?xml')) {
-                               $xml = Network::parseXmlString($s);
+                               $xml = XML::parseString($s);
 
                                logger('dfrn_poll: profile: parsed xml: ' . print_r($xml, true), LOGGER_DATA);
 
index 1d3e4cd8f6dfb76812f22bc6058955372a5679c3..41d13ff8118177338f5cdead6c599469ea80b64f 100644 (file)
@@ -183,7 +183,7 @@ function dfrn_request_post(App $a)
                                }
 
                                if (strlen($dfrn_request) && strlen($confirm_key)) {
-                                       $s = Network::fetchURL($dfrn_request . '?confirm_key=' . $confirm_key);
+                                       $s = Network::fetchUrl($dfrn_request . '?confirm_key=' . $confirm_key);
                                }
 
                                // (ignore reply, nothing we can do it failed)
@@ -332,20 +332,20 @@ function dfrn_request_post(App $a)
                                        intval($contact_record['id'])
                                );
                        } else {
-                               $url = Network::validateURL($url);
+                               $url = Network::isUrlValid($url);
                                if (!$url) {
                                        notice(L10n::t('Invalid profile URL.') . EOL);
                                        goaway(System::baseUrl() . '/' . $a->cmd);
                                        return; // NOTREACHED
                                }
 
-                               if (!Network::allowedURL($url)) {
+                               if (!Network::isUrlAllowed($url)) {
                                        notice(L10n::t('Disallowed profile URL.') . EOL);
                                        goaway(System::baseUrl() . '/' . $a->cmd);
                                        return; // NOTREACHED
                                }
 
-                               if (Network::blockedURL($url)) {
+                               if (Network::isUrlBlocked($url)) {
                                        notice(L10n::t('Blocked domain') . EOL);
                                        goaway(System::baseUrl() . '/' . $a->cmd);
                                        return; // NOTREACHED
index f08e723bae02c6a0819256aa01da90435c425898..9db4eeb7b61d629f75436dd3856cb88274df014c 100644 (file)
@@ -46,7 +46,7 @@ function dirfind_content(App $a, $prefix = "") {
        if (strpos($search,'@') === 0) {
                $search = substr($search,1);
                $header = L10n::t('People Search - %s', $search);
-               if ((valid_email($search) && Network::validateEmail($search)) ||
+               if ((valid_email($search) && Network::isEmailDomainValid($search)) ||
                        (substr(normalise_link($search), 0, 7) == "http://")) {
                        $user_data = Probe::uri($search);
                        $discover_user = (in_array($user_data["network"], [NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA]));
@@ -178,7 +178,7 @@ function dirfind_content(App $a, $prefix = "") {
                        $p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
 
                        if(strlen(Config::get('system','directory')))
-                               $x = Network::fetchURL(get_server().'/lsearch?f=' . $p .  '&search=' . urlencode($search));
+                               $x = Network::fetchUrl(get_server().'/lsearch?f=' . $p .  '&search=' . urlencode($search));
 
                        $j = json_decode($x);
                }
index fbe783a51bbc4039f1bdb6b9e9e76e03d12fd1f3..0bd1d261782e594ce42eeedd3b195c582326bf90 100644 (file)
@@ -91,7 +91,7 @@ function hovercard_content()
 
                return $o;
        } else {
-               Network::jsonReturnAndDie($profile);
+               Network::jsonExit($profile);
        }
 }
 
index ef9f023f52bb1c2f04acfe625f76d0da19321945..c5f2e985f9cf5689e0dbee96188856c134394281 100644 (file)
@@ -483,10 +483,10 @@ function check_htaccess(&$checks) {
        $status = true;
        $help = "";
        if (function_exists('curl_init')) {
-               $test = Network::fetchURL(System::baseUrl()."/install/testrewrite");
+               $test = Network::fetchUrl(System::baseUrl()."/install/testrewrite");
 
                if ($test != "ok") {
-                       $test = Network::fetchURL(normalise_link(System::baseUrl()."/install/testrewrite"));
+                       $test = Network::fetchUrl(normalise_link(System::baseUrl()."/install/testrewrite"));
                }
 
                if ($test != "ok") {
index ad089adc0f0a484e48d173e0c82f0ea201d93a2b..1a512acec8b87e7973ea1cb32e61e8cafea1c4f1 100644 (file)
@@ -29,7 +29,6 @@ use Friendica\Network\Probe;
 use Friendica\Protocol\Diaspora;
 use Friendica\Protocol\Email;
 use Friendica\Util\Emailer;
-use Friendica\Util\Network;
 
 require_once 'include/enotify.php';
 require_once 'include/tags.php';
@@ -520,7 +519,7 @@ function item_post(App $a) {
        // Fold multi-line [code] sequences
        $body = preg_replace('/\[\/code\]\s*\[code\]/ism', "\n", $body);
 
-       $body = Network::scaleExternalImages($body, false);
+       $body = BBCode::scaleExternalImages($body, false);
 
        // Setting the object type if not defined before
        if (!$objecttype) {
index ad1e00101ea3f3ec465a53e101aa0f3011f61b3e..c5e35031f5aefcada8bba8db3d620c2b49466cff 100644 (file)
@@ -59,9 +59,9 @@ function match_content(App $a)
                }
 
                if (strlen(Config::get('system', 'directory'))) {
-                       $x = Network::postURL(get_server().'/msearch', $params);
+                       $x = Network::post(get_server().'/msearch', $params);
                } else {
-                       $x = Network::postURL(System::baseUrl() . '/msearch', $params);
+                       $x = Network::post(System::baseUrl() . '/msearch', $params);
                }
 
                $j = json_decode($x);
index b3d42ab52ee35b95a864efbaa8eeeb50bbe0b3bf..026d3f03d93a49edbe156058714c4a9582332c79 100644 (file)
@@ -247,7 +247,7 @@ function nodeinfo_cron() {
        // Now trying to register
        $url = 'http://the-federation.info/register/'.$a->get_hostname();
         logger('registering url: '.$url, LOGGER_DEBUG);
-       $ret = Network::fetchURL($url);
+       $ret = Network::fetchUrl($url);
         logger('registering answer: '.$ret, LOGGER_DEBUG);
 
         logger('cron_end');
index 06624f3c000fda02befbf730cc963ad189d9dd09..067e954228db696eedc0734a13ce8fb3e830ca3c 100644 (file)
@@ -139,7 +139,7 @@ function notifications_content(App $a) {
 
        // Json output
        if (intval($json) === 1) {
-               Network::jsonReturnAndDie($notifs);
+               Network::jsonExit($notifs);
        }
 
        $notif_tpl = get_markup_template('notifications.tpl');
index 79414a7f6a727f010edd7bb743369d8ccb2f8565..feca39d3530334f418e785f8ae7790795ad2291c 100644 (file)
@@ -40,7 +40,7 @@ function oexchange_content(App $a) {
        $tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags']))
                ? '&tags=' . urlencode(notags(trim($_REQUEST['tags']))) : '');
 
-       $s = Network::fetchURL(System::baseUrl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
+       $s = Network::fetchUrl(System::baseUrl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
 
        if (! strlen($s)) {
                return;
index 81eced22e7cb0e12ca716e1e1ba298b7805549cd..07f4647e69caed04160a948b1b8cb10f73eab288 100644 (file)
@@ -41,7 +41,7 @@ function ostatus_subscribe_content(App $a) {
                $api = $contact["baseurl"]."/api/";
 
                // Fetching friends
-               $data = Network::zFetchURL($api."statuses/friends.json?screen_name=".$contact["nick"]);
+               $data = Network::curl($api."statuses/friends.json?screen_name=".$contact["nick"]);
 
                if (!$data["success"]) {
                        return $o.L10n::t("Couldn't fetch friends for contact.");
index f1214e160f1267ab3d39dded5a3235f66d09b025..ea860f6d318016636f40af1387b842b1d1fe5da0 100644 (file)
@@ -61,7 +61,7 @@ function parse_url_content(App $a) {
        // the URL with the corresponding BBCode media tag
        $redirects = 0;
        // Fetch the header of the URL
-       $result = Network::zFetchURL($url, false, $redirects, ["novalidate" => true, "nobody" => true]);
+       $result = Network::curl($url, false, $redirects, ["novalidate" => true, "nobody" => true]);
        if($result["success"]) {
                // Convert the header fields into an array
                $hdrs = [];
index 1497185917f1ea189195fbbf9dfb30289346d84d..7efc0ffbaa67ed7d12e049fd1aecf9e091a4b7ee 100644 (file)
@@ -162,7 +162,7 @@ function proxy_init(App $a) {
                // It shouldn't happen but it does - spaces in URL
                $_REQUEST['url'] = str_replace(' ', '+', $_REQUEST['url']);
                $redirects = 0;
-               $img_str = Network::fetchURL($_REQUEST['url'], true, $redirects, 10);
+               $img_str = Network::fetchUrl($_REQUEST['url'], true, $redirects, 10);
 
                $tempfile = tempnam(get_temppath(), 'cache');
                file_put_contents($tempfile, $img_str);
index af7172cee29bc376130c52b75fd22afeb0033d87..210bc6efbc12ec8c28395e1251c034f665db72bf 100644 (file)
@@ -110,7 +110,7 @@ function pubsubhubbub_init(App $a) {
                // we don't actually enforce the lease time because GNU
                // Social/StatusNet doesn't honour it (yet)
 
-               $body = Network::fetchURL($hub_callback . "?" . $params);
+               $body = Network::fetchUrl($hub_callback . "?" . $params);
                $ret = $a->get_curl_code();
 
                // give up if the HTTP return code wasn't a success (2xx)
index a6ffd99e992ef4e13ba9108d8426852ec4598d44..2ea6d53343e7a3656dcb60157ffea126c42b47e0 100644 (file)
@@ -536,7 +536,7 @@ function settings_post(App $a)
 
        // If openid has changed or if there's an openid but no openidserver, try and discover it.
        if ($openid != $a->user['openid'] || (strlen($openid) && (!strlen($openidserver)))) {
-               if (Network::validateURL($openid)) {
+               if (Network::isUrlValid($openid)) {
                        logger('updating openidserver');
                        require_once 'library/openid.php';
                        $open_id_obj = new LightOpenID;
index 232ef91d05c4fb2de03e0dc957c26ce48748a9ed..19f0152ef8a80edec930ba5b1af0bf6182c657da 100644 (file)
@@ -18,7 +18,7 @@ function smilies_content(App $a)
                for ($i = 0; $i < count($tmp['texts']); $i++) {
                        $results[] = ['text' => $tmp['texts'][$i], 'icon' => $tmp['icons'][$i]];
                }
-               Network::jsonReturnAndDie($results);
+               Network::jsonExit($results);
        } else {
                return Smilies::replace('', true);
        }
index 53c2b6c19f5a5206d6bade86a7726b80f49ed5a4..fc5b33162526cdf21c2d51e86573be4becf6c924 100644 (file)
@@ -69,7 +69,7 @@ text { font:12px Dialog; }
 <text x="29" y="1664" style="font:13px Open Sans">getting transmitted (if $aes_allow -&gt; encrypt the the public key)</text>
 <text x="29" y="1710" style="font:13px Open Sans">     -&gt; add duplex state and page-flags to the params</text>
 <text x="29" y="1756" style="font:13px Open Sans">  -&gt; send params to Bobs dfrn_confirm page ($res = </text>
-<text x="29" y="1779" style="font:13px Open Sans">Network::postURL($dfrn_confirm,$params);</text>
+<text x="29" y="1779" style="font:13px Open Sans">Network::post($dfrn_confirm,$params);</text>
 <clipPath id="clip11"><path d="M1041,1319 L1619,1319 L1619,1913 L1041,1913 L1041,1319 Z" /></clipPath>
 <path d="M1050,1320 C1045.5820313,1320 1042,1323.5820313 1042,1328 L1042,1903 C1042,1907.4179688 1045.5820313,1911 1050,1911 L1609,1911 C1613.4179688,1911 1617,1907.4179688 1617,1903 L1617,1328 C1617,1323.5820313 1613.4179688,1320 1609,1320 Z" style="fill:rgb(255,255,3);stroke:none" clip-path="url(#clip11)" />
 <text x="1055" y="1342" style="font:13px Open Sans">dfrn_confirm_post()</text>
index 23b040985f0fca23fbd5724bec608811e65171cf..cc78be55c8fa34e93c8f0a130f981fc7c8b77d74 100644 (file)
@@ -93,9 +93,9 @@ text { font:12px Dialog; }
 <text x="149" y="2112" style="font:13px Open Sans">- create a contact for Karen in the contact table with </text>
 <text x="149" y="2135" style="font:13px Open Sans">the scraped data with blocked = 1 and pending = 1 </text>
 <text x="149" y="2158" style="font:13px Open Sans">(Karens pubkey becomes the contact site-pubkey)</text>
-<text x="149" y="2204" style="font:13px Open Sans">- Network::fetchURL($dfrn_request . '?confirm_key=' . </text>
+<text x="149" y="2204" style="font:13px Open Sans">- Network::fetchUrl($dfrn_request . '?confirm_key=' . </text>
 <text x="149" y="2227" style="font:13px Open Sans">$confirm_key);</text>
-<text x="149" y="2273" style="font:13px Open Sans">- Network::fetchURL(http://karenhomepage.com/dfrn_request?</text>
+<text x="149" y="2273" style="font:13px Open Sans">- Network::fetchUrl(http://karenhomepage.com/dfrn_request?</text>
 <text x="149" y="2296" style="font:13px Open Sans">confirm_key=”ABC123”)</text>
 <clipPath id="clip13"><path d="M1061,2027 L1238,2027 L1238,2069 L1061,2069 L1061,2027 Z" /></clipPath>
 <path d="M1070,2028 C1065.5820313,2028 1062,2031.5820313 1062,2036 L1062,2059 C1062,2063.4179688 1065.5820313,2067 1070,2067 L1228,2067 C1232.4179688,2067 1236,2063.4179688 1236,2059 L1236,2036 C1236,2031.5820313 1232.4179688,2028 1228,2028 Z" style="fill:rgb(127,127,127);stroke:none" clip-path="url(#clip13)" />
index 1ddd3e65c621ed8d5f4924364ce2dabd2527c643..170ee7ba265eb13a40d1e49d1f7cf22abb2c1ea0 100644 (file)
@@ -78,7 +78,7 @@ class OEmbed
                        if (!in_array($ext, $noexts)) {
                                // try oembed autodiscovery
                                $redirects = 0;
-                               $html_text = Network::fetchURL($embedurl, false, $redirects, 15, "text/*");
+                               $html_text = Network::fetchUrl($embedurl, false, $redirects, 15, "text/*");
                                if ($html_text) {
                                        $dom = @DOMDocument::loadHTML($html_text);
                                        if ($dom) {
@@ -86,13 +86,13 @@ class OEmbed
                                                $entries = $xpath->query("//link[@type='application/json+oembed']");
                                                foreach ($entries as $e) {
                                                        $href = $e->getAttributeNode("href")->nodeValue;
-                                                       $txt = Network::fetchURL($href . '&maxwidth=' . $a->videowidth);
+                                                       $txt = Network::fetchUrl($href . '&maxwidth=' . $a->videowidth);
                                                        break;
                                                }
                                                $entries = $xpath->query("//link[@type='text/json+oembed']");
                                                foreach ($entries as $e) {
                                                        $href = $e->getAttributeNode("href")->nodeValue;
-                                                       $txt = Network::fetchURL($href . '&maxwidth=' . $a->videowidth);
+                                                       $txt = Network::fetchUrl($href . '&maxwidth=' . $a->videowidth);
                                                        break;
                                                }
                                        }
@@ -312,7 +312,7 @@ class OEmbed
 
                $allowed = explode(',', $str_allowed);
 
-               return Network::allowedDomain($domain, $allowed);
+               return Network::isDomainAllowed($domain, $allowed);
        }
 
        public static function getHTML($url, $title = null)
index 664be933ae6642de82c6a2d5bbd951f34aa99e1f..5760533d379c9875e914cd8c62c63e5be494591b 100644 (file)
@@ -6,7 +6,10 @@ namespace Friendica\Content\Text;
 
 use Friendica\App;
 use Friendica\Content\Text\Plaintext;
+use Friencica\Core\Config;
+use Friendica\Core\L10n;
 use Friendica\Core\PConfig;
+use Friendica\Core\System;
 use Friendica\Object\Image;
 use Friendica\Util\ParseUrl;
 
@@ -475,4 +478,74 @@ class BBCode
 
                return($post);
        }
+
+       public static function scaleExternalImages($srctext, $include_link = true, $scale_replace = false)
+       {
+               // Suppress "view full size"
+               if (intval(Config::get('system', 'no_view_full_size'))) {
+                       $include_link = false;
+               }
+
+               // Picture addresses can contain special characters
+               $s = htmlspecialchars_decode($srctext);
+
+               $matches = null;
+               $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
+               if ($c) {
+                       foreach ($matches as $mtch) {
+                               logger('scale_external_image: ' . $mtch[1]);
+
+                               $hostname = str_replace('www.', '', substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3));
+                               if (stristr($mtch[1], $hostname)) {
+                                       continue;
+                               }
+
+                               // $scale_replace, if passed, is an array of two elements. The
+                               // first is the name of the full-size image. The second is the
+                               // name of a remote, scaled-down version of the full size image.
+                               // This allows Friendica to display the smaller remote image if
+                               // one exists, while still linking to the full-size image
+                               if ($scale_replace) {
+                                       $scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
+                               } else {
+                                       $scaled = $mtch[1];
+                               }
+                               $i = self::fetchURL($scaled);
+                               if (! $i) {
+                                       return $srctext;
+                               }
+
+                               // guess mimetype from headers or filename
+                               $type = Image::guessType($mtch[1], true);
+
+                               if ($i) {
+                                       $Image = new Image($i, $type);
+                                       if ($Image->isValid()) {
+                                               $orig_width = $Image->getWidth();
+                                               $orig_height = $Image->getHeight();
+
+                                               if ($orig_width > 640 || $orig_height > 640) {
+                                                       $Image->scaleDown(640);
+                                                       $new_width = $Image->getWidth();
+                                                       $new_height = $Image->getHeight();
+                                                       logger('scale_external_images: ' . $orig_width . '->' . $new_width . 'w ' . $orig_height . '->' . $new_height . 'h' . ' match: ' . $mtch[0], LOGGER_DEBUG);
+                                                       $s = str_replace(
+                                                               $mtch[0],
+                                                               '[img=' . $new_width . 'x' . $new_height. ']' . $scaled . '[/img]'
+                                                               . "\n" . (($include_link)
+                                                                       ? '[url=' . $mtch[1] . ']' . L10n::t('view full size') . '[/url]' . "\n"
+                                                                       : ''),
+                                                               $s
+                                                       );
+                                                       logger('scale_external_images: new string: ' . $s, LOGGER_DEBUG);
+                                               }
+                                       }
+                               }
+                       }
+               }
+
+               // replace the special char encoding
+               $s = htmlspecialchars($s, ENT_NOQUOTES, 'UTF-8');
+               return $s;
+       }
 }
index 654ed5cc48d6fa64e022efa3909545c1c2f9e7f1..7c2760a85be62f85ad98bc4ee978288c6d6601dd 100644 (file)
@@ -13,7 +13,7 @@ use Friendica\Core\System;
 use Friendica\Database\DBM;
 use Friendica\Model\Contact;
 use Friendica\Model\Profile;
-use Friendica\Util\Network;
+use Friendica\Util\XML;
 
 require_once 'include/dba.php';
 require_once 'include/html2plain.php';
@@ -338,7 +338,7 @@ class NotificationsManager extends BaseObject
 
                                        case ACTIVITY_FRIEND:
                                                $xmlhead = "<" . "?xml version='1.0' encoding='UTF-8' ?" . ">";
-                                               $obj = Network::parseXmlString($xmlhead . $it['object']);
+                                               $obj = XML::parseString($xmlhead . $it['object']);
                                                $it['fname'] = $obj->title;
 
                                                $notif = [
index 11146e4a215f782328439fdb5de99b7f7ebf2a76..ee313bef01cc68ca0c60bdb7a466920fc53e8005 100644 (file)
@@ -888,7 +888,7 @@ class Worker
                }
 
                $url = System::baseUrl()."/worker";
-               Network::fetchURL($url, false, $redirects, 1);
+               Network::fetchUrl($url, false, $redirects, 1);
        }
 
        /**
index bda5a925f51b03f0fdc92fa9d112baaa7e05281a..ba9536b391a11421dc7af5409308741066a7aa81 100644 (file)
@@ -1132,12 +1132,12 @@ class Contact extends BaseObject
                // remove ajax junk, e.g. Twitter
                $url = str_replace('/#!/', '/', $url);
 
-               if (!Network::allowedURL($url)) {
+               if (!Network::isUrlAllowed($url)) {
                        $result['message'] = L10n::t('Disallowed profile URL.');
                        return $result;
                }
 
-               if (Network::blockedURL($url)) {
+               if (Network::isUrlBlocked($url)) {
                        $result['message'] = L10n::t('Blocked domain');
                        return $result;
                }
@@ -1321,4 +1321,37 @@ class Contact extends BaseObject
                $result['success'] = true;
                return $result;
        }
+
+       public static function updateSslPolicy($contact, $new_policy)
+       {
+               $ssl_changed = false;
+               if ((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
+                       $ssl_changed = true;
+                       $contact['url']     =   str_replace('https:', 'http:', $contact['url']);
+                       $contact['request'] =   str_replace('https:', 'http:', $contact['request']);
+                       $contact['notify']  =   str_replace('https:', 'http:', $contact['notify']);
+                       $contact['poll']    =   str_replace('https:', 'http:', $contact['poll']);
+                       $contact['confirm'] =   str_replace('https:', 'http:', $contact['confirm']);
+                       $contact['poco']    =   str_replace('https:', 'http:', $contact['poco']);
+               }
+
+               if ((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
+                       $ssl_changed = true;
+                       $contact['url']     =   str_replace('http:', 'https:', $contact['url']);
+                       $contact['request'] =   str_replace('http:', 'https:', $contact['request']);
+                       $contact['notify']  =   str_replace('http:', 'https:', $contact['notify']);
+                       $contact['poll']    =   str_replace('http:', 'https:', $contact['poll']);
+                       $contact['confirm'] =   str_replace('http:', 'https:', $contact['confirm']);
+                       $contact['poco']    =   str_replace('http:', 'https:', $contact['poco']);
+               }
+
+               if ($ssl_changed) {
+                       $fields = ['url' => $contact['url'], 'request' => $contact['request'],
+                                       'notify' => $contact['notify'], 'poll' => $contact['poll'],
+                                       'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
+                       dba::update('contact', $fields, ['id' => $contact['id']]);
+               }
+
+               return $contact;
+       }
 }
index 0991110316d28429a277b9a41f6a1c93a8d4bd05..0d0969ca0cdc700c7843d171b7852fefc350e3b4 100644 (file)
@@ -568,7 +568,7 @@ class GContact
                $done[] = System::baseUrl() . '/poco';
 
                if (strlen(Config::get('system', 'directory'))) {
-                       $x = Network::fetchURL(get_server()."/pubsites");
+                       $x = Network::fetchUrl(get_server()."/pubsites");
                        if ($x) {
                                $j = json_decode($x);
                                if ($j->entries) {
@@ -980,7 +980,7 @@ class GContact
 
                $url = $server."/main/statistics";
 
-               $result = Network::zFetchURL($url);
+               $result = Network::curl($url);
                if (!$result["success"]) {
                        return false;
                }
index 23d893c9251092777faadb5b7f4a10a44682b4d5..fc6e60a9cef4d61a5b8167bf41c2c2a9e36a91cb 100644 (file)
@@ -102,7 +102,7 @@ class Photo
                $photo_failure = false;
 
                $filename = basename($image_url);
-               $img_str = Network::fetchURL($image_url, true);
+               $img_str = Network::fetchUrl($image_url, true);
 
                if ($quit_on_error && ($img_str == "")) {
                        return false;
index c77b6bbe442c31629e107570e41d306bc20cef6a..df53b5d80a5faa1d8e6fc2931d84b145ce2d70fb 100644 (file)
@@ -964,7 +964,7 @@ class Profile
        public static function zrlInit(App $a)
        {
                $my_url = self::getMyURL();
-               $my_url = Network::validateURL($my_url);
+               $my_url = Network::isUrlValid($my_url);
                if ($my_url) {
                        // Is it a DDoS attempt?
                        // The check fetches the cached value from gprobe to reduce the load for this system
index c767ec1b62f887e90fc6fac42724ed531e04ab23..4eba5112ad5bf28c567ab71931f7c3a04f0878c1 100644 (file)
@@ -281,7 +281,7 @@ class User
 
                if (!x($username) || !x($email) || !x($nickname)) {
                        if ($openid_url) {
-                               if (!Network::validateURL($openid_url)) {
+                               if (!Network::isUrlValid($openid_url)) {
                                        throw new Exception(L10n::t('Invalid OpenID url'));
                                }
                                $_SESSION['register'] = 1;
@@ -304,7 +304,7 @@ class User
                        throw new Exception(L10n::t('Please enter the required information.'));
                }
 
-               if (!Network::validateURL($openid_url)) {
+               if (!Network::isUrlValid($openid_url)) {
                        $openid_url = '';
                }
 
@@ -329,11 +329,11 @@ class User
                        }
                }
 
-               if (!Network::allowedEmail($email)) {
+               if (!Network::isEmailDomainAllowed($email)) {
                        throw new Exception(L10n::t('Your email domain is not among those allowed on this site.'));
                }
 
-               if (!valid_email($email) || !Network::validateEmail($email)) {
+               if (!valid_email($email) || !Network::isEmailDomainValid($email)) {
                        throw new Exception(L10n::t('Not a valid email address.'));
                }
 
@@ -460,7 +460,7 @@ class User
 
                // if we have no OpenID photo try to look up an avatar
                if (!strlen($photo)) {
-                       $photo = Network::avatarImg($email);
+                       $photo = Network::lookupAvatarByEmail($email);
                }
 
                // unless there is no avatar-addon loaded
@@ -468,7 +468,7 @@ class User
                        $photo_failure = false;
 
                        $filename = basename($photo);
-                       $img_str = Network::fetchURL($photo, true);
+                       $img_str = Network::fetchUrl($photo, true);
                        // guess mimetype from headers or filename
                        $type = Image::guessType($photo, true);
 
index c6396a4148e1bda0af1cc92d098f961b9d1ff7f0..e080663d7f0429199ecab7a5ac882124a0410798 100644 (file)
@@ -60,7 +60,7 @@ class Login extends BaseModule
                        $openid_url = trim($_POST['openid_url'] ? : $_POST['username']);
 
                        // if it's an email address or doesn't resolve to a URL, fail.
-                       if ($noid || strpos($openid_url, '@') || !Network::validateURL($openid_url)) {
+                       if ($noid || strpos($openid_url, '@') || !Network::isUrlValid($openid_url)) {
                                notice(L10n::t('Login failed.') . EOL);
                                goaway(self::getApp()->get_baseurl());
                                // NOTREACHED
index 79b3840034d69a39a908a5af1afabf1e7dbce8f8..f7c3b84fdd46803c35eb334a505366189595004f 100644 (file)
@@ -107,21 +107,21 @@ class Probe
 
                logger("Probing for ".$host, LOGGER_DEBUG);
 
-               $ret = Network::zFetchURL($ssl_url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
+               $ret = Network::curl($ssl_url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
                if ($ret['success']) {
                        $xml = $ret['body'];
-                       $xrd = Network::parseXmlString($xml, false);
+                       $xrd = XML::parseString($xml, false);
                        $host_url = 'https://'.$host;
                }
 
                if (!is_object($xrd)) {
-                       $ret = Network::zFetchURL($url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
+                       $ret = Network::curl($url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => 'application/xrd+xml']);
                        if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                                logger("Probing timeout for ".$url, LOGGER_DEBUG);
                                return false;
                        }
                        $xml = $ret['body'];
-                       $xrd = Network::parseXmlString($xml, false);
+                       $xrd = XML::parseString($xml, false);
                        $host_url = 'http://'.$host;
                }
                if (!is_object($xrd)) {
@@ -331,7 +331,7 @@ class Probe
                }
 
                if (x($data, "photo")) {
-                       $data["baseurl"] = Network::matchingURL(normalise_link($data["baseurl"]), normalise_link($data["photo"]));
+                       $data["baseurl"] = Network::getUrlMatch(normalise_link($data["baseurl"]), normalise_link($data["photo"]));
                } else {
                        $data["photo"] = System::baseUrl().'/images/person-175.jpg';
                }
@@ -692,7 +692,7 @@ class Probe
                $xrd_timeout = Config::get('system', 'xrd_timeout', 20);
                $redirects = 0;
 
-               $ret = Network::zFetchURL($url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => $type]);
+               $ret = Network::curl($url, false, $redirects, ['timeout' => $xrd_timeout, 'accept_content' => $type]);
                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return false;
                }
@@ -708,7 +708,7 @@ class Probe
                }
 
                // If it is not JSON, maybe it is XML
-               $xrd = Network::parseXmlString($data, false);
+               $xrd = XML::parseString($data, false);
                if (!is_object($xrd)) {
                        logger("No webfinger data retrievable for ".$url, LOGGER_DEBUG);
                        return false;
@@ -759,7 +759,7 @@ class Probe
         */
        private static function pollNoscrape($noscrape_url, $data)
        {
-               $ret = Network::zFetchURL($noscrape_url);
+               $ret = Network::curl($noscrape_url);
                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return false;
                }
@@ -993,7 +993,7 @@ class Probe
         */
        private static function pollHcard($hcard_url, $data, $dfrn = false)
        {
-               $ret = Network::zFetchURL($hcard_url);
+               $ret = Network::curl($hcard_url);
                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return false;
                }
@@ -1232,7 +1232,7 @@ class Probe
                                                        $pubkey = substr($pubkey, 5);
                                                }
                                        } elseif (normalise_link($pubkey) == 'http://') {
-                                               $ret = Network::zFetchURL($pubkey);
+                                               $ret = Network::curl($pubkey);
                                                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                                                        return false;
                                                }
@@ -1264,7 +1264,7 @@ class Probe
                }
 
                // Fetch all additional data from the feed
-               $ret = Network::zFetchURL($data["poll"]);
+               $ret = Network::curl($data["poll"]);
                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return false;
                }
@@ -1448,7 +1448,7 @@ class Probe
         */
        private static function feed($url, $probe = true)
        {
-               $ret = Network::zFetchURL($url);
+               $ret = Network::curl($url);
                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return false;
                }
@@ -1509,7 +1509,7 @@ class Probe
         */
        private static function mail($uri, $uid)
        {
-               if (!Network::validateEmail($uri)) {
+               if (!Network::isEmailDomainValid($uri)) {
                        return false;
                }
 
@@ -1543,7 +1543,7 @@ class Probe
                $data["network"] = NETWORK_MAIL;
                $data["name"]    = substr($uri, 0, strpos($uri, '@'));
                $data["nick"]    = $data["name"];
-               $data["photo"]   = Network::avatarImg($uri);
+               $data["photo"]   = Network::lookupAvatarByEmail($uri);
                $data["url"]     = 'mailto:'.$uri;
                $data["notify"]  = 'smtp '.random_string();
                $data["poll"]    = 'email '.random_string();
index 84c462205e28e82d10cbf6dc1285b1ba1c634967..d8d6dafc3ca86d60bfbe180f6ad2e8f290cddac3 100644 (file)
@@ -774,7 +774,7 @@ class Image
                $data = Cache::get($url);
 
                if (is_null($data) || !$data || !is_array($data)) {
-                       $img_str = Network::fetchURL($url, true, $redirects, 4);
+                       $img_str = Network::fetchUrl($url, true, $redirects, 4);
                        $filesize = strlen($img_str);
 
                        if (function_exists("getimagesizefromstring")) {
index 2901796db4c6da3a687ef5cd1349325f6220bcb3..59141576b38fa68aa970b8fd1c57bd99f81ea8d3 100644 (file)
@@ -793,7 +793,7 @@ class DFRN
                if ($activity) {
                        $entry = $doc->createElement($element);
 
-                       $r = Network::parseXmlString($activity, false);
+                       $r = XML::parseString($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 = Network::parseXmlString("<dummy>" . $r->link . "</dummy>", false);
+                                       $data = XML::parseString("<dummy>" . $r->link . "</dummy>", false);
                                        if (is_object($data)) {
                                                foreach ($data->link as $link) {
                                                        $attributes = [];
@@ -1187,7 +1187,7 @@ class DFRN
 
                logger('dfrn_deliver: ' . $url);
 
-               $ret = Network::zFetchURL($url);
+               $ret = Network::curl($url);
 
                if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                        return -2; // timed out
@@ -1212,7 +1212,7 @@ class DFRN
                        return 3;
                }
 
-               $res = Network::parseXmlString($xml);
+               $res = XML::parseString($xml);
 
                if ((intval($res->status) != 0) || (! strlen($res->challenge)) || (! strlen($res->dfrn_id))) {
                        return (($res->status) ? $res->status : 3);
@@ -1333,7 +1333,7 @@ class DFRN
 
                logger('dfrn_deliver: ' . "SENDING: " . print_r($postvars, true), LOGGER_DATA);
 
-               $xml = Network::postURL($contact['notify'], $postvars);
+               $xml = Network::post($contact['notify'], $postvars);
 
                logger('dfrn_deliver: ' . "RECEIVED: " . $xml, LOGGER_DATA);
 
@@ -1357,7 +1357,7 @@ class DFRN
                        Contact::unmarkForArchival($contact);
                }
 
-               $res = Network::parseXmlString($xml);
+               $res = XML::parseString($xml);
 
                if (!isset($res->status)) {
                        return -11;
@@ -2188,7 +2188,7 @@ class DFRN
                if (!$verb) {
                        return;
                }
-               $xo = Network::parseXmlString($item["object"], false);
+               $xo = XML::parseString($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 = Network::parseXmlString($item["object"], false);
-                               $xt = Network::parseXmlString($item["target"], false);
+                               $xo = XML::parseString($item["object"], false);
+                               $xt = XML::parseString($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 = Network::parseXmlString($item["object"], false);
+                       $r = XML::parseString($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 = Network::parseXmlString($item["object"], false);
-                               $xt = Network::parseXmlString($item["target"], false);
+                               $xo = XML::parseString($item["object"], false);
+                               $xt = XML::parseString($item["target"], false);
 
                                if ($xt->type == ACTIVITY_OBJ_NOTE) {
                                        $i = q(
index b87aabfb4791cfbff6d76ab87d851e9b8ae3a3a7..a6c74537d2b6d8358dab4b95e850c81c63f48446 100644 (file)
@@ -186,7 +186,7 @@ class Diaspora
         */
        private static function verifyMagicEnvelope($envelope)
        {
-               $basedom = Network::parseXmlString($envelope);
+               $basedom = XML::parseString($envelope);
 
                if (!is_object($basedom)) {
                        logger("Envelope is no XML file");
@@ -296,7 +296,7 @@ class Diaspora
                        $xml = $raw;
                }
 
-               $basedom = Network::parseXmlString($xml);
+               $basedom = XML::parseString($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 = Network::parseXmlString($xml);
+               $basedom = XML::parseString($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 = Network::parseXmlString($decrypted);
+                       $idom = XML::parseString($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 = Network::parseXmlString($msg["message"]);
+               $data = XML::parseString($msg["message"]);
 
                if (!is_object($data)) {
                        logger("No valid XML ".$msg["message"], LOGGER_DEBUG);
@@ -1257,7 +1257,7 @@ class Diaspora
 
                logger("Fetch post from ".$source_url, LOGGER_DEBUG);
 
-               $envelope = Network::fetchURL($source_url);
+               $envelope = Network::fetchUrl($source_url);
                if ($envelope) {
                        logger("Envelope was fetched.", LOGGER_DEBUG);
                        $x = self::verifyMagicEnvelope($envelope);
@@ -1275,13 +1275,13 @@ class Diaspora
                        $source_url = $server."/p/".urlencode($guid).".xml";
                        logger("Fetch post from ".$source_url, LOGGER_DEBUG);
 
-                       $x = Network::fetchURL($source_url);
+                       $x = Network::fetchUrl($source_url);
                        if (!$x) {
                                return false;
                        }
                }
 
-               $source_xml = Network::parseXmlString($x);
+               $source_xml = XML::parseString($x);
 
                if (!is_object($source_xml)) {
                        return false;
@@ -3229,7 +3229,7 @@ class Diaspora
                        if (!intval(Config::get("system", "diaspora_test"))) {
                                $content_type = (($public_batch) ? "application/magic-envelope+xml" : "application/json");
 
-                               Network::postURL($dest_url."/", $envelope, ["Content-Type: ".$content_type]);
+                               Network::post($dest_url."/", $envelope, ["Content-Type: ".$content_type]);
                                $return_code = $a->get_curl_code();
                        } else {
                                logger("test_mode");
index e728afa24502ab8c2d49ecc91c79f596771fbec0..cc0915472d05cb75ee10aa849cb413abd003eab9 100644 (file)
@@ -244,7 +244,7 @@ class Feed {
 
                        $orig_plink = $item["plink"];
 
-                       $item["plink"] = Network::originalURL($item["plink"]);
+                       $item["plink"] = Network::finalUrl($item["plink"]);
 
                        $item["parent-uri"] = $item["uri"];
 
index 87b894a717a60d48e528523562859cf0ac37d8e2..e41f3addc194435d355e1181a9b4e368b6017e3b 100644 (file)
@@ -726,7 +726,7 @@ class OStatus
 
                self::$conv_list[$conversation] = true;
 
-               $conversation_data = Network::zFetchURL($conversation, false, $redirects, ['accept_content' => 'application/atom+xml, text/html']);
+               $conversation_data = Network::curl($conversation, false, $redirects, ['accept_content' => 'application/atom+xml, text/html']);
 
                if (!$conversation_data['success']) {
                        return;
@@ -754,7 +754,7 @@ class OStatus
                                        }
                                }
                                if ($file != '') {
-                                       $conversation_atom = Network::zFetchURL($attribute['href']);
+                                       $conversation_atom = Network::curl($attribute['href']);
 
                                        if ($conversation_atom['success']) {
                                                $xml = $conversation_atom['body'];
@@ -870,7 +870,7 @@ class OStatus
                        return;
                }
 
-               $self_data = Network::zFetchURL($self);
+               $self_data = Network::curl($self);
 
                if (!$self_data['success']) {
                        return;
@@ -915,7 +915,7 @@ class OStatus
                }
 
                $stored = false;
-               $related_data = Network::zFetchURL($related, false, $redirects, ['accept_content' => 'application/atom+xml, text/html']);
+               $related_data = Network::curl($related, false, $redirects, ['accept_content' => 'application/atom+xml, text/html']);
 
                if (!$related_data['success']) {
                        return;
@@ -946,7 +946,7 @@ class OStatus
                                        }
                                }
                                if ($atom_file != '') {
-                                       $related_atom = Network::zFetchURL($atom_file);
+                                       $related_atom = Network::curl($atom_file);
 
                                        if ($related_atom['success']) {
                                                logger('Fetched XML for URI '.$related_uri, LOGGER_DEBUG);
@@ -958,7 +958,7 @@ class OStatus
 
                // Workaround for older GNU Social servers
                if (($xml == '') && strstr($related, '/notice/')) {
-                       $related_atom = Network::zFetchURL(str_replace('/notice/', '/api/statuses/show/', $related).'.atom');
+                       $related_atom = Network::curl(str_replace('/notice/', '/api/statuses/show/', $related).'.atom');
 
                        if ($related_atom['success']) {
                                logger('GNU Social workaround to fetch XML for URI '.$related_uri, LOGGER_DEBUG);
@@ -969,7 +969,7 @@ class OStatus
                // Even more worse workaround for GNU Social ;-)
                if ($xml == '') {
                        $related_guess = OStatus::convertHref($related_uri);
-                       $related_atom = Network::zFetchURL(str_replace('/notice/', '/api/statuses/show/', $related_guess).'.atom');
+                       $related_atom = Network::curl(str_replace('/notice/', '/api/statuses/show/', $related_guess).'.atom');
 
                        if ($related_atom['success']) {
                                logger('GNU Social workaround 2 to fetch XML for URI '.$related_uri, LOGGER_DEBUG);
index 9ed48b1cf4f7fb5af5d7790b8c4056a6ad38a933..f2def21ec1ee2c11c8aca503ec441d12a1eb610e 100644 (file)
@@ -85,7 +85,7 @@ class PortableContact
 
                logger('load: ' . $url, LOGGER_DEBUG);
 
-               $s = Network::fetchURL($url);
+               $s = Network::fetchUrl($url);
 
                logger('load: returns ' . $s, LOGGER_DATA);
 
@@ -287,7 +287,7 @@ class PortableContact
                }
 
                // Fetch the host-meta to check if this really is a server
-               $serverret = Network::zFetchURL($server_url."/.well-known/host-meta");
+               $serverret = Network::curl($server_url."/.well-known/host-meta");
                if (!$serverret["success"]) {
                        return "";
                }
@@ -366,7 +366,7 @@ class PortableContact
                        $server = q("SELECT `noscrape`, `network` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($server_url)));
 
                        if ($server) {
-                               $noscraperet = Network::zFetchURL($server[0]["noscrape"]."/".$gcontacts[0]["nick"]);
+                               $noscraperet = Network::curl($server[0]["noscrape"]."/".$gcontacts[0]["nick"]);
 
                                if ($noscraperet["success"] && ($noscraperet["body"] != "")) {
                                        $noscrape = json_decode($noscraperet["body"], true);
@@ -480,7 +480,7 @@ class PortableContact
 
                GContact::update($contact);
 
-               $feedret = Network::zFetchURL($data["poll"]);
+               $feedret = Network::curl($data["poll"]);
 
                if (!$feedret["success"]) {
                        $fields = ['last_failure' => datetime_convert()];
@@ -631,7 +631,7 @@ class PortableContact
         */
        private static function fetchNodeinfo($server_url)
        {
-               $serverret = Network::zFetchURL($server_url."/.well-known/nodeinfo");
+               $serverret = Network::curl($server_url."/.well-known/nodeinfo");
                if (!$serverret["success"]) {
                        return false;
                }
@@ -663,7 +663,7 @@ class PortableContact
                        return false;
                }
 
-               $serverret = Network::zFetchURL($nodeinfo_url);
+               $serverret = Network::curl($nodeinfo_url);
                if (!$serverret["success"]) {
                        return false;
                }
@@ -872,7 +872,7 @@ class PortableContact
                $server_url = str_replace("http://", "https://", $server_url);
 
                // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
-               $serverret = Network::zFetchURL($server_url."/.well-known/host-meta", false, $redirects, ['timeout' => 20]);
+               $serverret = Network::curl($server_url."/.well-known/host-meta", false, $redirects, ['timeout' => 20]);
 
                // Quit if there is a timeout.
                // But we want to make sure to only quit if we are mostly sure that this server url fits.
@@ -889,7 +889,7 @@ class PortableContact
                        $server_url = str_replace("https://", "http://", $server_url);
 
                        // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
-                       $serverret = Network::zFetchURL($server_url."/.well-known/host-meta", false, $redirects, ['timeout' => 20]);
+                       $serverret = Network::curl($server_url."/.well-known/host-meta", false, $redirects, ['timeout' => 20]);
 
                        // Quit if there is a timeout
                        if ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT) {
@@ -925,7 +925,7 @@ class PortableContact
 
                // Look for poco
                if (!$failure) {
-                       $serverret = Network::zFetchURL($server_url."/poco");
+                       $serverret = Network::curl($server_url."/poco");
                        if ($serverret["success"]) {
                                $data = json_decode($serverret["body"]);
                                if (isset($data->totalResults)) {
@@ -951,7 +951,7 @@ class PortableContact
 
                if (!$failure) {
                        // Test for Diaspora, Hubzilla, Mastodon or older Friendica servers
-                       $serverret = Network::zFetchURL($server_url);
+                       $serverret = Network::curl($server_url);
 
                        if (!$serverret["success"] || ($serverret["body"] == "")) {
                                $failure = true;
@@ -990,7 +990,7 @@ class PortableContact
                        // Test for Statusnet
                        // Will also return data for Friendica and GNU Social - but it will be overwritten later
                        // The "not implemented" is a special treatment for really, really old Friendica versions
-                       $serverret = Network::zFetchURL($server_url."/api/statusnet/version.json");
+                       $serverret = Network::curl($server_url."/api/statusnet/version.json");
                        if ($serverret["success"] && ($serverret["body"] != '{"error":"not implemented"}') &&
                                ($serverret["body"] != '') && (strlen($serverret["body"]) < 30)) {
                                $platform = "StatusNet";
@@ -1001,7 +1001,7 @@ class PortableContact
                        }
 
                        // Test for GNU Social
-                       $serverret = Network::zFetchURL($server_url."/api/gnusocial/version.json");
+                       $serverret = Network::curl($server_url."/api/gnusocial/version.json");
                        if ($serverret["success"] && ($serverret["body"] != '{"error":"not implemented"}') &&
                                ($serverret["body"] != '') && (strlen($serverret["body"]) < 30)) {
                                $platform = "GNU Social";
@@ -1013,7 +1013,7 @@ class PortableContact
 
                        // Test for Mastodon
                        $orig_version = $version;
-                       $serverret = Network::zFetchURL($server_url."/api/v1/instance");
+                       $serverret = Network::curl($server_url."/api/v1/instance");
                        if ($serverret["success"] && ($serverret["body"] != '')) {
                                $data = json_decode($serverret["body"]);
 
@@ -1036,7 +1036,7 @@ class PortableContact
 
                if (!$failure) {
                        // Test for Hubzilla and Red
-                       $serverret = Network::zFetchURL($server_url."/siteinfo.json");
+                       $serverret = Network::curl($server_url."/siteinfo.json");
                        if ($serverret["success"]) {
                                $data = json_decode($serverret["body"]);
                                if (isset($data->url)) {
@@ -1064,7 +1064,7 @@ class PortableContact
                                }
                        } else {
                                // Test for Hubzilla, Redmatrix or Friendica
-                               $serverret = Network::zFetchURL($server_url."/api/statusnet/config.json");
+                               $serverret = Network::curl($server_url."/api/statusnet/config.json");
                                if ($serverret["success"]) {
                                        $data = json_decode($serverret["body"]);
                                        if (isset($data->site->server)) {
@@ -1119,7 +1119,7 @@ class PortableContact
 
                // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix
                if (!$failure) {
-                       $serverret = Network::zFetchURL($server_url."/statistics.json");
+                       $serverret = Network::curl($server_url."/statistics.json");
                        if ($serverret["success"]) {
                                $data = json_decode($serverret["body"]);
 
@@ -1181,10 +1181,10 @@ class PortableContact
                // Check for noscrape
                // Friendica servers could be detected as OStatus servers
                if (!$failure && in_array($network, [NETWORK_DFRN, NETWORK_OSTATUS])) {
-                       $serverret = Network::zFetchURL($server_url."/friendica/json");
+                       $serverret = Network::curl($server_url."/friendica/json");
 
                        if (!$serverret["success"]) {
-                               $serverret = Network::zFetchURL($server_url."/friendika/json");
+                               $serverret = Network::curl($server_url."/friendika/json");
                        }
 
                        if ($serverret["success"]) {
@@ -1294,7 +1294,7 @@ class PortableContact
         */
        private static function fetchServerlist($poco)
        {
-               $serverret = Network::zFetchURL($poco."/@server");
+               $serverret = Network::curl($poco."/@server");
                if (!$serverret["success"]) {
                        return;
                }
@@ -1343,7 +1343,7 @@ class PortableContact
                        if (!empty($accesstoken)) {
                                $api = 'https://instances.social/api/1.0/instances/list?count=0';
                                $header = ['Authorization: Bearer '.$accesstoken];
-                               $serverdata = Network::zFetchURL($api, false, $redirects, ['headers' => $header]);
+                               $serverdata = Network::curl($api, false, $redirects, ['headers' => $header]);
                                if ($serverdata['success']) {
                                        $servers = json_decode($serverdata['body']);
                                        foreach ($servers->instances as $server) {
@@ -1360,7 +1360,7 @@ class PortableContact
                //if (!Config::get('system','ostatus_disabled')) {
                //      $serverdata = "http://gstools.org/api/get_open_instances/";
 
-               //      $result = Network::zFetchURL($serverdata);
+               //      $result = Network::curl($serverdata);
                //      if ($result["success"]) {
                //              $servers = json_decode($result["body"]);
 
@@ -1389,7 +1389,7 @@ class PortableContact
 
                logger("Fetch all users from the server ".$server["url"], LOGGER_DEBUG);
 
-               $retdata = Network::zFetchURL($url);
+               $retdata = Network::curl($url);
                if ($retdata["success"]) {
                        $data = json_decode($retdata["body"]);
 
@@ -1408,7 +1408,7 @@ class PortableContact
 
                                $success = false;
 
-                               $retdata = Network::zFetchURL($url);
+                               $retdata = Network::curl($url);
                                if ($retdata["success"]) {
                                        logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG);
                                        $success = self::discoverServer(json_decode($retdata["body"]));
@@ -1493,7 +1493,7 @@ class PortableContact
                                // Fetch all contacts from a given user from the other server
                                $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
 
-                               $retdata = Network::zFetchURL($url);
+                               $retdata = Network::curl($url);
                                if ($retdata["success"]) {
                                        self::discoverServer(json_decode($retdata["body"]), 3);
                                }
index f49225021e9a11522d4234dde253af54168d55ac..f30488ce140eeef304b7dd99eb8258707c11c014 100644 (file)
@@ -51,7 +51,7 @@ class Salmon
                                                $ret[$x] = substr($ret[$x], 5);
                                        }
                                } elseif (normalise_link($ret[$x]) == 'http://') {
-                                       $ret[$x] = Network::fetchURL($ret[$x]);
+                                       $ret[$x] = Network::fetchUrl($ret[$x]);
                                }
                        }
                }
@@ -133,7 +133,7 @@ class Salmon
                $salmon = XML::fromArray($xmldata, $xml, false, $namespaces);
 
                // slap them
-               Network::postURL($url, $salmon, [
+               Network::post($url, $salmon, [
                        'Content-type: application/magic-envelope+xml',
                        'Content-length: ' . strlen($salmon)
                ]);
@@ -159,7 +159,7 @@ class Salmon
                        $salmon = XML::fromArray($xmldata, $xml, false, $namespaces);
 
                        // slap them
-                       Network::postURL($url, $salmon, [
+                       Network::post($url, $salmon, [
                                'Content-type: application/magic-envelope+xml',
                                'Content-length: ' . strlen($salmon)
                        ]);
@@ -182,7 +182,7 @@ class Salmon
                        $salmon = XML::fromArray($xmldata, $xml, false, $namespaces);
 
                        // slap them
-                       Network::postURL($url, $salmon, [
+                       Network::post($url, $salmon, [
                                'Content-type: application/magic-envelope+xml',
                                'Content-length: ' . strlen($salmon)]);
                        $return_code = $a->get_curl_code();
index 35e812a5c9ade6ee11c0f1225c7fdbe8b0d95095..a6851c3852441358d184cc3ca785434c17773fab 100644 (file)
@@ -181,7 +181,7 @@ class ExAuth
 
                $url = ($ssl ? 'https' : 'http') . '://' . $host . '/noscrape/' . $user;
 
-               $data = Network::zFetchURL($url);
+               $data = Network::curl($url);
 
                if (!is_array($data)) {
                        return false;
index 9cd3cb71977b719ffb1fb4b75a974e9d6a3abbbc..b013f65a3df60c1cb6d1751de4bd3234d6adc208 100644 (file)
@@ -11,7 +11,6 @@ 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';
@@ -35,9 +34,9 @@ class Network
         *
         * @return string The fetched content
         */
-       public static function fetchURL($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0)
+       public static function fetchUrl($url, $binary = false, &$redirects = 0, $timeout = 0, $accept_content = null, $cookiejar = 0)
        {
-               $ret = self::zFetchURL(
+               $ret = self::curl(
                        $url,
                        $binary,
                        $redirects,
@@ -72,7 +71,7 @@ class Network
         *    string 'header' => HTTP headers
         *    string 'body' => fetched content
         */
-       public static function zFetchURL($url, $binary = false, &$redirects = 0, $opts = [])
+       public static function curl($url, $binary = false, &$redirects = 0, $opts = [])
        {
                $ret = ['return_code' => 0, 'success' => false, 'header' => '', 'info' => '', 'body' => ''];
 
@@ -80,7 +79,7 @@ class Network
 
                $a = get_app();
 
-               if (self::blockedURL($url)) {
+               if (self::isUrlBlocked($url)) {
                        logger('z_fetch_url: domain of ' . $url . ' is blocked', LOGGER_DATA);
                        return $ret;
                }
@@ -278,11 +277,11 @@ class Network
         *
         * @return string The content
         */
-       public static function postURL($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
+       public static function post($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
        {
                $stamp1 = microtime(true);
 
-               if (self::blockedURL($url)) {
+               if (self::isUrlBlocked($url)) {
                        logger('post_url: domain of ' . $url . ' is blocked', LOGGER_DATA);
                        return false;
                }
@@ -381,7 +380,7 @@ class Network
                        if (filter_var($newurl, FILTER_VALIDATE_URL)) {
                                $redirects++;
                                logger('post_url: redirect ' . $url . ' to ' . $newurl);
-                               return self::postURL($newurl, $params, $headers, $redirects, $timeout);
+                               return self::post($newurl, $params, $headers, $redirects, $timeout);
                        }
                }
 
@@ -405,7 +404,7 @@ class Network
         * Outputs a basic dfrn XML status structure to STDOUT, with a <status> variable
         * of $st and an optional text <message> of $message and terminates the current process.
         */
-       public static function xmlStatus($st, $message = '')
+       public static function xmlExit($st, $message = '')
        {
                $result = ['status' => $st];
 
@@ -465,7 +464,7 @@ class Network
        }
 
        /**
-        * @brief Check URL to se if ts's real
+        * @brief Check URL to see if it's real
         *
         * Take a URL from the wild, prepend http:// if necessary
         * and check DNS to see if it's real (or check if is a valid IP address)
@@ -473,7 +472,7 @@ class Network
         * @param string $url The URL to be validated
         * @return string|boolean The actual working URL, false else
         */
-       public static function validateURL($url)
+       public static function isUrlValid($url)
        {
                if (Config::get('system', 'disable_url_validation')) {
                        return $url;
@@ -504,7 +503,7 @@ class Network
         * @param string $addr The email address
         * @return boolean True if it's a valid email address, false if it's not
         */
-       public static function validateEmail($addr)
+       public static function isEmailDomainValid($addr)
        {
                if (Config::get('system', 'disable_email_validation')) {
                        return true;
@@ -531,7 +530,7 @@ class Network
         * @param string $url URL which get tested
         * @return boolean True if url is allowed otherwise return false
         */
-       public static function allowedURL($url)
+       public static function isUrlAllowed($url)
        {
                $h = @parse_url($url);
 
@@ -576,7 +575,7 @@ class Network
         *
         * @return boolean
         */
-       public static function blockedURL($url)
+       public static function isUrlBlocked($url)
        {
                $h = @parse_url($url);
 
@@ -609,7 +608,7 @@ class Network
         * @return boolean False if not allowed, true if allowed
         *    or if allowed list is not configured
         */
-       public static function allowedEmail($email)
+       public static function isEmailDomainAllowed($email)
        {
                $domain = strtolower(substr($email, strpos($email, '@') + 1));
                if (!$domain) {
@@ -623,7 +622,7 @@ class Network
 
                $allowed = explode(',', $str_allowed);
 
-               return self::allowedDomain($domain, $allowed);
+               return self::isDomainAllowed($domain, $allowed);
        }
 
        /**
@@ -634,7 +633,7 @@ class Network
         * @param array  $domain_list
         * @return boolean
         */
-       public static function allowedDomain($domain, array $domain_list)
+       public static function isDomainAllowed($domain, array $domain_list)
        {
                $found = false;
 
@@ -649,7 +648,7 @@ class Network
                return $found;
        }
 
-       public static function avatarImg($email)
+       public static function lookupAvatarByEmail($email)
        {
                $avatar['size'] = 175;
                $avatar['email'] = $email;
@@ -666,125 +665,6 @@ class Network
                return $avatar['url'];
        }
 
-       public static function parseXmlString($s, $strict = true)
-       {
-               // the "strict" parameter is deactivated
-
-               /// @todo Move this function to the xml class
-               libxml_use_internal_errors(true);
-
-               $x = @simplexml_load_string($s);
-               if (!$x) {
-                       logger('libxml: parse: error: ' . $s, LOGGER_DATA);
-                       foreach (libxml_get_errors() as $err) {
-                               logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA);
-                       }
-                       libxml_clear_errors();
-               }
-               return $x;
-       }
-
-       public static function scaleExternalImages($srctext, $include_link = true, $scale_replace = false)
-       {
-               // Suppress "view full size"
-               if (intval(Config::get('system', 'no_view_full_size'))) {
-                       $include_link = false;
-               }
-
-               // Picture addresses can contain special characters
-               $s = htmlspecialchars_decode($srctext);
-
-               $matches = null;
-               $c = preg_match_all('/\[img.*?\](.*?)\[\/img\]/ism', $s, $matches, PREG_SET_ORDER);
-               if ($c) {
-                       foreach ($matches as $mtch) {
-                               logger('scale_external_image: ' . $mtch[1]);
-
-                               $hostname = str_replace('www.', '', substr(System::baseUrl(), strpos(System::baseUrl(), '://') + 3));
-                               if (stristr($mtch[1], $hostname)) {
-                                       continue;
-                               }
-
-                               // $scale_replace, if passed, is an array of two elements. The
-                               // first is the name of the full-size image. The second is the
-                               // name of a remote, scaled-down version of the full size image.
-                               // This allows Friendica to display the smaller remote image if
-                               // one exists, while still linking to the full-size image
-                               if ($scale_replace) {
-                                       $scaled = str_replace($scale_replace[0], $scale_replace[1], $mtch[1]);
-                               } else {
-                                       $scaled = $mtch[1];
-                               }
-                               $i = self::fetchURL($scaled);
-                               if (! $i) {
-                                       return $srctext;
-                               }
-
-                               // guess mimetype from headers or filename
-                               $type = Image::guessType($mtch[1], true);
-
-                               if ($i) {
-                                       $Image = new Image($i, $type);
-                                       if ($Image->isValid()) {
-                                               $orig_width = $Image->getWidth();
-                                               $orig_height = $Image->getHeight();
-
-                                               if ($orig_width > 640 || $orig_height > 640) {
-                                                       $Image->scaleDown(640);
-                                                       $new_width = $Image->getWidth();
-                                                       $new_height = $Image->getHeight();
-                                                       logger('scale_external_images: ' . $orig_width . '->' . $new_width . 'w ' . $orig_height . '->' . $new_height . 'h' . ' match: ' . $mtch[0], LOGGER_DEBUG);
-                                                       $s = str_replace(
-                                                               $mtch[0],
-                                                               '[img=' . $new_width . 'x' . $new_height. ']' . $scaled . '[/img]'
-                                                               . "\n" . (($include_link)
-                                                                       ? '[url=' . $mtch[1] . ']' . L10n::t('view full size') . '[/url]' . "\n"
-                                                                       : ''),
-                                                               $s
-                                                       );
-                                                       logger('scale_external_images: new string: ' . $s, LOGGER_DEBUG);
-                                               }
-                                       }
-                               }
-                       }
-               }
-
-               // replace the special char encoding
-               $s = htmlspecialchars($s, ENT_NOQUOTES, 'UTF-8');
-               return $s;
-       }
-
-       public static function fixContactSslPolicy(&$contact, $new_policy)
-       {
-               $ssl_changed = false;
-               if ((intval($new_policy) == SSL_POLICY_SELFSIGN || $new_policy === 'self') && strstr($contact['url'], 'https:')) {
-                       $ssl_changed = true;
-                       $contact['url']     =   str_replace('https:', 'http:', $contact['url']);
-                       $contact['request'] =   str_replace('https:', 'http:', $contact['request']);
-                       $contact['notify']  =   str_replace('https:', 'http:', $contact['notify']);
-                       $contact['poll']    =   str_replace('https:', 'http:', $contact['poll']);
-                       $contact['confirm'] =   str_replace('https:', 'http:', $contact['confirm']);
-                       $contact['poco']    =   str_replace('https:', 'http:', $contact['poco']);
-               }
-
-               if ((intval($new_policy) == SSL_POLICY_FULL || $new_policy === 'full') && strstr($contact['url'], 'http:')) {
-                       $ssl_changed = true;
-                       $contact['url']     =   str_replace('http:', 'https:', $contact['url']);
-                       $contact['request'] =   str_replace('http:', 'https:', $contact['request']);
-                       $contact['notify']  =   str_replace('http:', 'https:', $contact['notify']);
-                       $contact['poll']    =   str_replace('http:', 'https:', $contact['poll']);
-                       $contact['confirm'] =   str_replace('http:', 'https:', $contact['confirm']);
-                       $contact['poco']    =   str_replace('http:', 'https:', $contact['poco']);
-               }
-
-               if ($ssl_changed) {
-                       $fields = ['url' => $contact['url'], 'request' => $contact['request'],
-                                       'notify' => $contact['notify'], 'poll' => $contact['poll'],
-                                       'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
-                       dba::update('contact', $fields, ['id' => $contact['id']]);
-               }
-       }
-
        /**
         * @brief Remove Google Analytics and other tracking platforms params from URL
         *
@@ -849,7 +729,7 @@ class Network
         * @param bool   $fetchbody Wether to fetch the body or not after the HEAD requests
         * @return string A canonical URL
         */
-       public static function originalURL($url, $depth = 1, $fetchbody = false)
+       public static function finalUrl($url, $depth = 1, $fetchbody = false)
        {
                $a = get_app();
 
@@ -886,15 +766,15 @@ class Network
                        && (($curl_info['redirect_url'] != "") || ($curl_info['location'] != ""))
                ) {
                        if ($curl_info['redirect_url'] != "") {
-                               return(Network::originalURL($curl_info['redirect_url'], ++$depth, $fetchbody));
+                               return(self::finalUrl($curl_info['redirect_url'], ++$depth, $fetchbody));
                        } else {
-                               return(Network::originalURL($curl_info['location'], ++$depth, $fetchbody));
+                               return(self::finalUrl($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(Network::originalURL($url, ++$depth, true));
+                       return(self::finalUrl($url, ++$depth, true));
                }
 
                // if the file is too large then exit
@@ -946,7 +826,7 @@ class Network
                                $pathinfo = explode(";", $path);
                                foreach ($pathinfo as $value) {
                                        if (substr(strtolower($value), 0, 4) == "url=") {
-                                               return(Network::originalURL(substr($value, 4), ++$depth));
+                                               return(self::finalUrl(substr($value, 4), ++$depth));
                                        }
                                }
                        }
@@ -955,7 +835,7 @@ class Network
                return $url;
        }
 
-       public static function shortLink($url)
+       public static function shortenUrl($url)
        {
                $slinky = new Slinky($url);
                $yourls_url = Config::get('yourls', 'url1');
@@ -987,7 +867,7 @@ class Network
         *
         * @param array $x The input content
         */
-       public static function jsonReturnAndDie($x)
+       public static function jsonExit($x)
        {
                header("content-type: application/json");
                echo json_encode($x);
@@ -1001,7 +881,7 @@ class Network
         * @param string $url2
         * @return string The matching part
         */
-       public static function matchingURL($url1, $url2)
+       public static function getUrlMatch($url1, $url2)
        {
                if (($url1 == "") || ($url2 == "")) {
                        return "";
@@ -1061,7 +941,7 @@ class Network
         *
         * @return string The glued URL
         */
-       public static function unParseURL($parsed)
+       public static function unparseURL($parsed)
        {
                $get = function ($key) use ($parsed) {
                        return isset($parsed[$key]) ? $parsed[$key] : null;
index 1c5676aced15b516e3fd137d30cd4423e21f821d..868bd7ede8b621d41c38d45f1821255908a613f8 100644 (file)
@@ -145,7 +145,7 @@ class ParseUrl
                $siteinfo["url"] = $url;
                $siteinfo["type"] = "link";
 
-               $data = Network::zFetchURL($url);
+               $data = Network::curl($url);
                if (!$data['success']) {
                        return($siteinfo);
                }
index c866475c1b40d69e1c057de9e739e6c1e9c3e17f..d8c5e032396df4f7626eab100f0700afff740836 100644 (file)
@@ -413,4 +413,20 @@ class XML
                        $child->parentNode->removeChild($child);
                }
        }
+
+       public static function parseString($s, $strict = true)
+       {
+               // the "strict" parameter is deactivated
+               libxml_use_internal_errors(true);
+
+               $x = @simplexml_load_string($s);
+               if (!$x) {
+                       logger('libxml: parse: error: ' . $s, LOGGER_DATA);
+                       foreach (libxml_get_errors() as $err) {
+                               logger('libxml: parse: ' . $err->code." at ".$err->line.":".$err->column." : ".$err->message, LOGGER_DATA);
+                       }
+                       libxml_clear_errors();
+               }
+               return $x;
+       }
 }
index 2e089502f16c49e7bf75beae9ba548b57e40a546..a6056ccbc477b08c7a176a737a190eb53daa0c98 100644 (file)
@@ -38,7 +38,7 @@ class CheckVersion {
                logger("Checking VERSION from: ".$checked_url, LOGGER_DEBUG);
 
                // fetch the VERSION file
-               $gitversion = dbesc(trim(Network::fetchURL($checked_url)));
+               $gitversion = dbesc(trim(Network::fetchUrl($checked_url)));
                logger("Upstream VERSION is: ".$gitversion, LOGGER_DEBUG);
 
                Config::set('system', 'git_friendica_version', $gitversion);
index cc704474e0e9b2c90f6d701fb3e82b8612104af0..e17d68f8851dc17cea6f22a7766ca5c02426c081 100644 (file)
@@ -15,7 +15,6 @@ 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';
@@ -300,7 +299,7 @@ class Delivery {
                                                }
 
                                                $ssl_policy = Config::get('system','ssl_policy');
-                                               Network::fixContactSslPolicy($x[0], $ssl_policy);
+                                               $x[0] = Contact::updateSslPolicy($x[0], $ssl_policy);
 
                                                // If we are setup as a soapbox we aren't accepting top level posts from this person
 
index 634c5a5ec513479a9bce8066dcd7967e4e15e703..a59461037d4899d7c61c0a54c52eaa8fb55f3e0a 100644 (file)
@@ -12,8 +12,10 @@ use Friendica\Core\Worker;
 use Friendica\Database\DBM;
 use Friendica\Util\Network;
 
-class Directory {
-       public static function execute($url = '') {
+class Directory
+{
+       public static function execute($url = '')
+       {
                $dir = Config::get('system', 'directory');
 
                if (!strlen($dir)) {
@@ -33,7 +35,7 @@ class Directory {
 
                logger('Updating directory: ' . $arr['url'], LOGGER_DEBUG);
                if (strlen($arr['url'])) {
-                       Network::fetchURL($dir . '?url=' . bin2hex($arr['url']));
+                       Network::fetchUrl($dir . '?url=' . bin2hex($arr['url']));
                }
 
                return;
index 0172bcd34234f5bf88600e291f681f3af03a038f..0657b0e1b23b4ffe6feaa2a1733a4fa707cb50b7 100644 (file)
@@ -218,7 +218,7 @@ class DiscoverPoCo {
                        }
                }
 
-               $x = Network::fetchURL(get_server()."/lsearch?p=1&n=500&search=".urlencode($search));
+               $x = Network::fetchUrl(get_server()."/lsearch?p=1&n=500&search=".urlencode($search));
                $j = json_decode($x);
 
                if (count($j->results)) {
@@ -281,7 +281,7 @@ class DiscoverPoCo {
 
                $url = "http://gstools.org/api/users_search/".urlencode($search);
 
-               $result = Network::zFetchURL($url);
+               $result = Network::curl($url);
                if (!$result["success"]) {
                        return false;
                }
index c06b8f593012bad142da09e628225e086adf8c03..3a5fa5575ba26a08c2593313a6b551a391f0d47f 100644 (file)
@@ -11,6 +11,7 @@ use Friendica\Model\Contact;
 use Friendica\Protocol\Email;
 use Friendica\Protocol\PortableContact;
 use Friendica\Util\Network;
+use Friendica\Util\XML;
 use dba;
 
 require_once 'include/dba.php';
@@ -177,7 +178,7 @@ class OnePoll
                                . '&type=data&last_update=' . $last_update
                                . '&perm=' . $perm ;
 
-                       $ret = Network::zFetchURL($url);
+                       $ret = Network::curl($url);
 
                        if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
                                // set the last-update so we don't keep polling
@@ -219,7 +220,7 @@ class OnePoll
                        }
 
 
-                       $res = Network::parseXmlString($handshake_xml);
+                       $res = XML::parseString($handshake_xml);
 
                        if (intval($res->status) == 1) {
                                logger("$url replied status 1 - marking for death ");
@@ -281,7 +282,7 @@ class OnePoll
                        $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
                        $postvars['perm'] = 'rw';
 
-                       $xml = Network::postURL($contact['poll'], $postvars);
+                       $xml = Network::post($contact['poll'], $postvars);
 
                } elseif (($contact['network'] === NETWORK_OSTATUS)
                        || ($contact['network'] === NETWORK_DIASPORA)
@@ -312,7 +313,7 @@ class OnePoll
                        }
 
                        $cookiejar = tempnam(get_temppath(), 'cookiejar-onepoll-');
-                       $ret = Network::zFetchURL($contact['poll'], false, $redirects, ['cookiejar' => $cookiejar]);
+                       $ret = Network::curl($contact['poll'], false, $redirects, ['cookiejar' => $cookiejar]);
                        unlink($cookiejar);
 
                        if ($ret['errno'] == CURLE_OPERATION_TIMEDOUT) {
index a287e89d33f6e88cecc85667b45949074a87ac5a..03608bea66d540c8a3376fca791fd533b1d52a1c 100644 (file)
@@ -69,7 +69,7 @@ class PubSubPublish {
 
                logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
 
-               Network::postURL($rr['callback_url'], $params, $headers);
+               Network::post($rr['callback_url'], $params, $headers);
                $ret = $a->get_curl_code();
 
                if ($ret >= 200 && $ret <= 299) {