]> git.mxchange.org Git - friendica.git/blobdiff - include/network.php
Code cleaned
[friendica.git] / include / network.php
index bd64ab3508c45c2bb1222a6897907fa990c78483..a9110837d0b95fc33d24de9b60abff4e5d4f91c4 100644 (file)
@@ -3,6 +3,7 @@
  * @file include/network.php
  */
 use Friendica\App;
+use Friendica\Core\Addon;
 use Friendica\Core\System;
 use Friendica\Core\Config;
 use Friendica\Network\Probe;
@@ -32,10 +33,10 @@ function fetch_url($url, $binary = false, &$redirects = 0, $timeout = 0, $accept
                $url,
                $binary,
                $redirects,
-               array('timeout'=>$timeout,
+               ['timeout'=>$timeout,
                'accept_content'=>$accept_content,
                'cookiejar'=>$cookiejar
-               )
+               ]
        );
 
        return($ret['body']);
@@ -63,9 +64,9 @@ function fetch_url($url, $binary = false, &$redirects = 0, $timeout = 0, $accept
  *    string 'header' => HTTP headers
  *    string 'body' => fetched content
  */
-function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array())
+function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = [])
 {
-       $ret = array('return_code' => 0, 'success' => false, 'header' => '', 'info' => '', 'body' => '');
+       $ret = ['return_code' => 0, 'success' => false, 'header' => '', 'info' => '', 'body' => ''];
 
        $stamp1 = microtime(true);
 
@@ -97,7 +98,7 @@ function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array())
                curl_setopt(
                        $ch,
                        CURLOPT_HTTPHEADER,
-                       array('Accept: ' . $opts['accept_content'])
+                       ['Accept: ' . $opts['accept_content']]
                );
        }
 
@@ -213,7 +214,7 @@ function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array())
                        $newurl = $new_location_info['scheme'] . '://' . $new_location_info['host'] . $old_location_info['path'];
                }
 
-               $matches = array();
+               $matches = [];
 
                if (preg_match('/(Location:|URI:)(.*?)\n/i', $header, $matches)) {
                        $newurl = trim(array_pop($matches));
@@ -232,8 +233,6 @@ function z_fetch_url($url, $binary = false, &$redirects = 0, $opts = array())
        $a->set_curl_code($http_code);
        $a->set_curl_content_type($curl_info['content_type']);
 
-       $body = substr($s, strlen($header));
-
        $rc = intval($http_code);
        $ret['return_code'] = $rc;
        $ret['success'] = (($rc >= 200 && $rc <= 299) ? true : false);
@@ -308,7 +307,7 @@ function post_url($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
 
        if (defined('LIGHTTPD')) {
                if (!is_array($headers)) {
-                       $headers = array('Expect:');
+                       $headers = ['Expect:'];
                } else {
                        if (!in_array('Expect:', $headers)) {
                                array_push($headers, 'Expect:');
@@ -363,7 +362,7 @@ function post_url($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
        }
 
        if ($http_code == 301 || $http_code == 302 || $http_code == 303 || $http_code == 307) {
-               $matches = array();
+               $matches = [];
                preg_match('/(Location:|URI:)(.*?)\n/', $header, $matches);
                $newurl = trim(array_pop($matches));
 
@@ -399,7 +398,7 @@ function post_url($url, $params, $headers = null, &$redirects = 0, $timeout = 0)
 
 function xml_status($st, $message = '')
 {
-       $result = array('status' => $st);
+       $result = ['status' => $st];
 
        if ($message != '') {
                $result['message'] = $message;
@@ -411,7 +410,7 @@ function xml_status($st, $message = '')
 
        header("Content-type: text/xml");
 
-       $xmldata = array("result" => $result);
+       $xmldata = ["result" => $result];
 
        echo XML::fromArray($xmldata, $xml);
 
@@ -435,7 +434,7 @@ function xml_status($st, $message = '')
  *                             'title' => header title
  *                             'description' => optional message
  */
-function http_status_exit($val, $description = array())
+function http_status_exit($val, $description = [])
 {
        $err = '';
        if ($val >= 400) {
@@ -454,9 +453,9 @@ function http_status_exit($val, $description = array())
                $tpl = get_markup_template('http_status.tpl');
                echo replace_macros(
                        $tpl,
-                       array(
+                       [
                                '$title' => $description["title"],
-                               '$description' => $description["description"])
+                               '$description' => $description["description"]]
                );
        }
 
@@ -490,7 +489,7 @@ function validate_url($url)
        /// @TODO Really suppress function outcomes? Why not find them + debug them?
        $h = @parse_url($url);
 
-       if ((is_array($h)) && (dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
+       if ((is_array($h)) && (@dns_get_record($h['host'], DNS_A + DNS_CNAME + DNS_PTR) || filter_var($h['host'], FILTER_VALIDATE_IP) )) {
                return $url;
        }
 
@@ -583,7 +582,7 @@ function blocked_url($url)
                return true;
        }
 
-       $domain_blocklist = Config::get('system', 'blocklist', array());
+       $domain_blocklist = Config::get('system', 'blocklist', []);
        if (! $domain_blocklist) {
                return false;
        }
@@ -611,11 +610,15 @@ function blocked_url($url)
 function allowed_email($email)
 {
        $domain = strtolower(substr($email, strpos($email, '@') + 1));
-       if (! $domain) {
+       if (!$domain) {
                return false;
        }
 
        $str_allowed = Config::get('system', 'allowed_email', '');
+       if (!x($str_allowed)) {
+               return true;
+       }
+
        $allowed = explode(',', $str_allowed);
 
        return allowed_domain($domain, $allowed);
@@ -624,29 +627,23 @@ function allowed_email($email)
 /**
  * Checks for the existence of a domain in a domain list
  *
- * If strict is not set, an empty domain list counts as found
- *
  * @brief Checks for the existence of a domain in a domain list
  * @param string $domain
- * @param array $domain_list
- * @param bool   $strict
+ * @param array  $domain_list
  * @return boolean
  */
-function allowed_domain($domain, array $domain_list, $strict = false)
+function allowed_domain($domain, array $domain_list)
 {
        $found = false;
 
-       if (count($domain_list)) {
-               foreach ($domain_list as $item) {
-                       $pat = strtolower(trim($item));
-                       if (fnmatch($pat, $domain) || ($pat == $domain)) {
-                               $found = true;
-                               break;
-                       }
+       foreach ($domain_list as $item) {
+               $pat = strtolower(trim($item));
+               if (fnmatch($pat, $domain) || ($pat == $domain)) {
+                       $found = true;
+                       break;
                }
-       } elseif(!$strict) {
-               $found = true;
        }
+
        return $found;
 }
 
@@ -657,7 +654,7 @@ function avatar_img($email)
        $avatar['url'] = '';
        $avatar['success'] = false;
 
-       call_hooks('avatar_lookup', $avatar);
+       Addon::callHooks('avatar_lookup', $avatar);
 
        if (! $avatar['success']) {
                $avatar['url'] = System::baseUrl() . '/images/person-175.jpg';
@@ -693,8 +690,6 @@ function scale_external_images($srctext, $include_link = true, $scale_replace =
                $include_link = false;
        }
 
-       $a = get_app();
-
        // Picture addresses can contain special characters
        $s = htmlspecialchars_decode($srctext);
 
@@ -783,10 +778,10 @@ function fix_contact_ssl_policy(&$contact, $new_policy)
        }
 
        if ($ssl_changed) {
-               $fields = array('url' => $contact['url'], 'request' => $contact['request'],
+               $fields = ['url' => $contact['url'], 'request' => $contact['request'],
                                'notify' => $contact['notify'], 'poll' => $contact['poll'],
-                               'confirm' => $contact['confirm'], 'poco' => $contact['poco']);
-               dba::update('contact', $fields, array('id' => $contact['id']));
+                               'confirm' => $contact['confirm'], 'poco' => $contact['poco']];
+               dba::update('contact', $fields, ['id' => $contact['id']]);
        }
 }
 
@@ -807,12 +802,12 @@ function strip_tracking_query_params($url)
                        foreach ($querydata as $param => $value) {
                                if (in_array(
                                        $param,
-                                       array(
+                                       [
                                                "utm_source", "utm_medium", "utm_term", "utm_content", "utm_campaign",
                                                "wt_mc", "pk_campaign", "pk_kwd", "mc_cid", "mc_eid",
                                                "fb_action_ids", "fb_action_types", "fb_ref",
                                                "awesm", "wtrid",
-                                               "woo_campaign", "woo_source", "woo_medium", "woo_content", "woo_term")
+                                               "woo_campaign", "woo_source", "woo_medium", "woo_content", "woo_term"]
                                        )
                                ) {
                                        $pair = $param . "=" . urlencode($value);
@@ -826,7 +821,7 @@ function strip_tracking_query_params($url)
                                        $pair = $param . "=" . $value;
                                        $url = str_replace($pair, "", $url);
 
-                                       $url = str_replace(array("?&", "&&"), array("?", ""), $url);
+                                       $url = str_replace(["?&", "&&"], ["?", ""], $url);
                                }
                        }
                }
@@ -868,7 +863,6 @@ function original_url($url, $depth = 1, $fetchbody = false)
 
        $stamp1 = microtime(true);
 
-       $siteinfo = array();
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HEADER, 1);
@@ -877,7 +871,7 @@ function original_url($url, $depth = 1, $fetchbody = false)
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_USERAGENT, $a->get_useragent());
 
-       $header = curl_exec($ch);
+       curl_exec($ch);
        $curl_info = @curl_getinfo($ch);
        $http_code = $curl_info['http_code'];
        curl_close($ch);
@@ -939,7 +933,7 @@ function original_url($url, $depth = 1, $fetchbody = false)
 
        $list = $xpath->query("//meta[@content]");
        foreach ($list as $node) {
-               $attr = array();
+               $attr = [];
                if ($node->attributes->length) {
                        foreach ($node->attributes as $attribute) {
                                $attr[$attribute->name] = $attribute->value;
@@ -949,7 +943,6 @@ function original_url($url, $depth = 1, $fetchbody = false)
                if (@$attr["http-equiv"] == 'refresh') {
                        $path = $attr["content"];
                        $pathinfo = explode(";", $path);
-                       $content = "";
                        foreach ($pathinfo as $value) {
                                if (substr(strtolower($value), 0, 4) == "url=") {
                                        return(original_url(substr($value, 4), ++$depth));
@@ -958,7 +951,7 @@ function original_url($url, $depth = 1, $fetchbody = false)
                }
        }
 
-       return($url);
+       return $url;
 }
 
 function short_link($url)
@@ -975,12 +968,12 @@ function short_link($url)
                $yourls->set('password', $yourls_password);
                $yourls->set('ssl', $yourls_ssl);
                $yourls->set('yourls-url', $yourls_url);
-               $slinky->set_cascade(array($yourls, new Slinky_Ur1ca(), new Slinky_TinyURL()));
+               $slinky->set_cascade([$yourls, new Slinky_Ur1ca(), new Slinky_TinyURL()]);
        } else {
                // setup a cascade of shortening services
                // try to get a short link from these services
                // in the order ur1.ca, tinyurl
-               $slinky->set_cascade(array(new Slinky_Ur1ca(), new Slinky_TinyURL()));
+               $slinky->set_cascade([new Slinky_Ur1ca(), new Slinky_TinyURL()]);
        }
        return $slinky->short();
 }