]> git.mxchange.org Git - friendica.git/commitdiff
Rework smilies class and module
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 14 Jul 2018 09:14:11 +0000 (05:14 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Sun, 15 Jul 2018 12:03:12 +0000 (08:03 -0400)
- Add new replaceFromArray function to enable smilies replacement with
an arbitrary array
- Moved $sample logic from class to module

mod/smilies.php
src/Content/Smilies.php
src/Model/Profile.php

index a33cbf6ad5adabc4ca4e8704d278df634f6513d7..1c0a1bbd769e2415a739aa2aafe9e542a6282639 100644 (file)
@@ -8,18 +8,24 @@ use Friendica\Core\System;
 
 /**
  * @param object $a App
- * @return mixed
+ * @return string
  */
 function smilies_content(App $a)
 {
+       $smilies = Smilies::getList();
        if ($a->argv[1] === "json") {
-               $tmp = Smilies::getList();
                $results = [];
-               for ($i = 0; $i < count($tmp['texts']); $i++) {
-                       $results[] = ['text' => $tmp['texts'][$i], 'icon' => $tmp['icons'][$i]];
+               for ($i = 0; $i < count($smilies['texts']); $i++) {
+                       $results[] = ['text' => $smilies['texts'][$i], 'icon' => $smilies['icons'][$i]];
                }
                System::jsonExit($results);
        } else {
-               return Smilies::replace('', true);
+               $s = '<div class="smiley-sample">';
+               for ($x = 0; $x < count($smilies['texts']); $x ++) {
+                       $s .= '<dl><dt>' . $smilies['texts'][$x] . '</dt><dd>' . $smilies['icons'][$x] . '</dd></dl>';
+               }
+               $s .= '</div>';
+
+               return $s;
        }
 }
index 2fedb894270116befdbac68613c29e495bb1ef59..39de3c20e04a6d74bcdbab0bc53c08c20fa96218 100644 (file)
@@ -167,7 +167,7 @@ class Smilies
        }
 
        /**
-        * @brief Replaces text emoticons with graphical images
+        * Replaces text emoticons with graphical images
         *
         * It is expected that this function will be called using HTML text.
         * We will escape text between HTML pre and code blocks from being
@@ -177,53 +177,61 @@ class Smilies
         * function from being executed by the prepare_text() routine when preparing
         * bbcode source for HTML display
         *
+        * @brief Replaces text emoticons with graphical images
         * @param string  $s         Text that should be replaced
-        * @param boolean $sample    optional, default false
         * @param boolean $no_images Only replace emoticons without images
         *
-        * @return string HML Output of the Smilie
+        * @return string HTML Output of the Smilie
+        */
+       public static function replace($s, $no_images = false)
+       {
+               $smilies = self::getList();
+
+               $s = self::replaceFromArray($s, $smilies, $no_images);
+
+               return $s;
+       }
+
+       /**
+        * Replaces emoji shortcodes in a string from a structured array of searches and replaces.
+        *
+        * Depends on system.no_smilies config value, skips <pre> and <code> tags.
+        *
+        * @param string $text      An HTML string
+        * @param array  $smilies   An string replacement array with the following structure: ['texts' => [], 'icons' => []]
+        * @param bool   $no_images Only replace shortcodes without image replacement (e.g. Unicode characters)
+        * @return string
         */
-       public static function replace($s, $sample = false, $no_images = false)
+       public static function replaceFromArray($text, array $smilies, $no_images = false)
        {
                if (intval(Config::get('system', 'no_smilies'))
                        || (local_user() && intval(PConfig::get(local_user(), 'system', 'no_smilies')))
                ) {
-                       return $s;
+                       return $text;
                }
 
-               $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism', 'self::encode', $s);
-               $s = preg_replace_callback('/<code>(.*?)<\/code>/ism', 'self::encode', $s);
-
-               $params = self::getList();
+               $text = preg_replace_callback('/<pre>(.*?)<\/pre>/ism'  , 'self::encode', $text);
+               $text = preg_replace_callback('/<code>(.*?)<\/code>/ism', 'self::encode', $text);
 
                if ($no_images) {
                        $cleaned = ['texts' => [], 'icons' => []];
-                       $icons = $params['icons'];
+                       $icons = $smilies['icons'];
                        foreach ($icons as $key => $icon) {
                                if (!strstr($icon, '<img ')) {
-                                       $cleaned['texts'][] = $params['texts'][$key];
-                                       $cleaned['icons'][] = $params['icons'][$key];
+                                       $cleaned['texts'][] = $smilies['texts'][$key];
+                                       $cleaned['icons'][] = $smilies['icons'][$key];
                                }
                        }
-                       $params = $cleaned;
+                       $smilies = $cleaned;
                }
 
-               $params['string'] = $s;
+               $text = preg_replace_callback('/&lt;(3+)/', 'self::pregHeart', $text);
+               $text = self::strOrigReplace($smilies['texts'], $smilies['icons'], $text);
 
-               if ($sample) {
-                       $s = '<div class="smiley-sample">';
-                       for ($x = 0; $x < count($params['texts']); $x ++) {
-                               $s .= '<dl><dt>' . $params['texts'][$x] . '</dt><dd>' . $params['icons'][$x] . '</dd></dl>';
-                       }
-               } else {
-                       $params['string'] = preg_replace_callback('/&lt;(3+)/', 'self::pregHeart', $params['string']);
-                       $s = self::strOrigReplace($params['texts'], $params['icons'], $params['string']);
-               }
+               $text = preg_replace_callback('/<pre>(.*?)<\/pre>/ism', 'self::decode', $text);
+               $text = preg_replace_callback('/<code>(.*?)<\/code>/ism', 'self::decode', $text);
 
-               $s = preg_replace_callback('/<pre>(.*?)<\/pre>/ism', 'self::decode', $s);
-               $s = preg_replace_callback('/<code>(.*?)<\/code>/ism', 'self::decode', $s);
-
-               return $s;
+               return $text;
        }
 
        /**
index 1f09b7cc8d2508c1023f65432a7324d067f61d6d..c16fb745a726408ea72336950952b31c1533af7d 100644 (file)
@@ -992,13 +992,13 @@ class Profile
 
        /**
         * Process the 'zrl' parameter and initiate the remote authentication.
-        * 
+        *
         * This method checks if the visitor has a public contact entry and
         * redirects the visitor to his/her instance to start the magic auth (Authentication)
         * process.
-        * 
+        *
         * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/channel.php
-        * 
+        *
         * @param App $a Application instance.
         */
        public static function zrlInit(App $a)
@@ -1060,7 +1060,7 @@ class Profile
         * OpenWebAuth authentication.
         *
         * Ported from Hubzilla: https://framagit.org/hubzilla/core/blob/master/include/zid.php
-        * 
+        *
         * @param string $token
         */
        public static function openWebAuthInit($token)
@@ -1159,7 +1159,7 @@ class Profile
 
        /**
        * Stip zrl parameter from a string.
-       * 
+       *
        * @param string $s The input string.
        * @return string The zrl.
        */
@@ -1170,7 +1170,7 @@ class Profile
 
        /**
        * Stip query parameter from a string.
-       * 
+       *
        * @param string $s The input string.
        * @return string The query parameter.
        */