]> git.mxchange.org Git - friendica.git/blobdiff - src/Content/OEmbed.php
NL translation update THX casperrutten33
[friendica.git] / src / Content / OEmbed.php
index 51918283e0c2e48b86ac44114ae22b7af14a27cd..30a113f461414b336fc37dafa3ef0af345aa0204 100644 (file)
@@ -1,8 +1,24 @@
 <?php
-
 /**
- * @file src/Content/OEmbed.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Content;
 
 use DOMDocument;
@@ -10,10 +26,8 @@ use DOMNode;
 use DOMText;
 use DOMXPath;
 use Exception;
-use Friendica\Core\Cache;
-use Friendica\Core\Config;
+use Friendica\Core\Cache\Duration;
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\Database\DBA;
 use Friendica\DI;
@@ -30,8 +44,6 @@ use Friendica\Util\Strings;
  * third party sites
  *
  * @see https://oembed.com
- *
- * @author Hypolite Petovan <hypolite@mrpetovan.com>
  */
 class OEmbed
 {
@@ -45,7 +57,7 @@ class OEmbed
        }
 
        /**
-        * @brief Get data from an URL to embed its content.
+        * Get data from an URL to embed its content.
         *
         * @param string $embedurl     The URL from which the data should be fetched.
         * @param bool   $no_rich_type If set to true rich type content won't be fetched.
@@ -66,7 +78,7 @@ class OEmbed
                if (DBA::isResult($oembed_record)) {
                        $json_string = $oembed_record['content'];
                } else {
-                       $json_string = Cache::get($cache_key);
+                       $json_string = DI::cache()->get($cache_key);
                }
 
                // These media files should now be caught in bbcode.php
@@ -83,7 +95,7 @@ class OEmbed
 
                        if (!in_array($ext, $noexts)) {
                                // try oembed autodiscovery
-                               $html_text = Network::fetchUrl($embedurl, false, 15, 'text/*');
+                               $html_text = DI::httpRequest()->fetch($embedurl, false, 15, 'text/*');
                                if ($html_text) {
                                        $dom = @DOMDocument::loadHTML($html_text);
                                        if ($dom) {
@@ -91,14 +103,14 @@ class OEmbed
                                                $entries = $xpath->query("//link[@type='application/json+oembed']");
                                                foreach ($entries as $e) {
                                                        $href = $e->getAttributeNode('href')->nodeValue;
-                                                       $json_string = Network::fetchUrl($href . '&maxwidth=' . $a->videowidth);
+                                                       $json_string = DI::httpRequest()->fetch($href . '&maxwidth=' . $a->videowidth);
                                                        break;
                                                }
 
                                                $entries = $xpath->query("//link[@type='text/json+oembed']");
                                                foreach ($entries as $e) {
                                                        $href = $e->getAttributeNode('href')->nodeValue;
-                                                       $json_string = Network::fetchUrl($href . '&maxwidth=' . $a->videowidth);
+                                                       $json_string = DI::httpRequest()->fetch($href . '&maxwidth=' . $a->videowidth);
                                                        break;
                                                }
                                        }
@@ -120,9 +132,9 @@ class OEmbed
                                        'content' => $json_string,
                                        'created' => DateTimeFormat::utcNow()
                                ], true);
-                               $cache_ttl = Cache::DAY;
+                               $cache_ttl = Duration::DAY;
                        } else {
-                               $cache_ttl = Cache::FIVE_MINUTES;
+                               $cache_ttl = Duration::FIVE_MINUTES;
                        }
 
                        DI::cache()->set($cache_key, $json_string, $cache_ttl);
@@ -249,9 +261,9 @@ class OEmbed
 
        public static function BBCode2HTML($text)
        {
-               $stopoembed = Config::get("system", "no_oembed");
+               $stopoembed = DI::config()->get("system", "no_oembed");
                if ($stopoembed == true) {
-                       return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>" . L10n::t('Embedding disabled') . " : $1</i><!-- /oembed $1 -->", $text);
+                       return preg_replace("/\[embed\](.+?)\[\/embed\]/is", "<!-- oembed $1 --><i>" . DI::l10n()->t('Embedding disabled') . " : $1</i><!-- /oembed $1 -->", $text);
                }
                return preg_replace_callback("/\[embed\](.+?)\[\/embed\]/is", ['self', 'replaceCallback'], $text);
        }
@@ -297,14 +309,13 @@ class OEmbed
        /**
         * Determines if rich content OEmbed is allowed for the provided URL
         *
-        * @brief Determines if rich content OEmbed is allowed for the provided URL
         * @param string $url
         * @return boolean
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function isAllowedURL($url)
        {
-               if (!Config::get('system', 'no_oembed_rich_content')) {
+               if (!DI::config()->get('system', 'no_oembed_rich_content')) {
                        return true;
                }
 
@@ -313,7 +324,7 @@ class OEmbed
                        return false;
                }
 
-               $str_allowed = Config::get('system', 'allowed_oembed', '');
+               $str_allowed = DI::config()->get('system', 'allowed_oembed', '');
                if (empty($str_allowed)) {
                        return false;
                }
@@ -345,7 +356,7 @@ class OEmbed
        }
 
        /**
-        * @brief Generates the iframe HTML for an oembed attachment.
+        * Generates the iframe HTML for an oembed attachment.
         *
         * Width and height are given by the remote, and are regularly too small for
         * the generated iframe.
@@ -374,15 +385,15 @@ class OEmbed
                $width = '100%';
 
                $src = DI::baseUrl() . '/oembed/' . Strings::base64UrlEncode($src);
-               return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $src . '" allowfullscreen scrolling="no" frameborder="no">' . L10n::t('Embedded content') . '</iframe>';
+               return '<iframe onload="resizeIframe(this);" class="embed_rich" height="' . $height . '" width="' . $width . '" src="' . $src . '" allowfullscreen scrolling="no" frameborder="no">' . DI::l10n()->t('Embedded content') . '</iframe>';
        }
 
        /**
+        * Generates attribute search XPath string
+        *
         * Generates an XPath query to select elements whose provided attribute contains
         * the provided value in a space-separated list.
         *
-        * @brief Generates attribute search XPath string
-        *
         * @param string $attr Name of the attribute to seach
         * @param string $value Value to search in a space-separated list
         * @return string
@@ -396,8 +407,6 @@ class OEmbed
        /**
         * Returns the inner XML string of a provided DOMNode
         *
-        * @brief Returns the inner XML string of a provided DOMNode
-        *
         * @param DOMNode $node
         * @return string
         */