OSDN Git Service

BugTrack/2420 AutoTicketLink - Improve regex and JSON encode
[pukiwiki/pukiwiki.git] / lib / func.php
index 69a6ef2..4650529 100644 (file)
@@ -2,7 +2,7 @@
 // PukiWiki - Yet another WikiWikiWeb clone.
 // func.php
 // Copyright
-//   2002-2017 PukiWiki Development Team
+//   2002-2019 PukiWiki Development Team
 //   2001-2002 Originally written by yu-ji
 // License: GPL v2 or (at your option) any later version
 //
@@ -230,6 +230,13 @@ function auto_template($page)
        return $body;
 }
 
+function _mb_convert_kana__enable($str, $option) {
+       return mb_convert_kana($str, $option, SOURCE_ENCODING);
+}
+function _mb_convert_kana__none($str, $option) {
+       return $str;
+}
+
 // Expand all search-words to regexes and push them into an array
 function get_search_words($words = array(), $do_escape = FALSE)
 {
@@ -238,11 +245,9 @@ function get_search_words($words = array(), $do_escape = FALSE)
        if (! isset($init)) {
                // function: mb_convert_kana() is for Japanese code only
                if (LANG == 'ja' && function_exists('mb_convert_kana')) {
-                       $mb_convert_kana = create_function('$str, $option',
-                               'return mb_convert_kana($str, $option, SOURCE_ENCODING);');
+                       $mb_convert_kana = '_mb_convert_kana__enable';
                } else {
-                       $mb_convert_kana = create_function('$str, $option',
-                               'return $str;');
+                       $mb_convert_kana = '_mb_convert_kana__none';
                }
                if (SOURCE_ENCODING == 'EUC-JP') {
                        // Perl memo - Correct pattern-matching with EUC-JP
@@ -298,6 +303,74 @@ function get_search_words($words = array(), $do_escape = FALSE)
        return $regex; // For all words
 }
 
+function get_passage_date_html_span($date_atom)
+{
+       return '<span class="page_passage" data-mtime="' . $date_atom . '"></span>';
+}
+
+function get_passage_mtime_html_span($mtime)
+{
+       $date_atom = get_date_atom($mtime);
+       return get_passage_date_html_span($date_atom);
+}
+
+/**
+ * Get passage span html
+ *
+ * @param $page
+ */
+function get_passage_html_span($page)
+{
+       $date_atom = get_page_date_atom($page);
+       return get_passage_date_html_span($date_atom);
+}
+
+function get_link_passage_class() {
+       return 'link_page_passage';
+}
+
+/**
+ * Get page link general attributes
+ * @param $page
+ * @return array('data_mtime' => page mtime or null, 'class' => additinal classes)
+ */
+function get_page_link_a_attrs($page)
+{
+       global $show_passage;
+       if ($show_passage) {
+               $pagemtime = get_page_date_atom($page);
+               return array(
+                       'data_mtime' => $pagemtime,
+                       'class' => get_link_passage_class(),
+               );
+       }
+       return array(
+               'data_mtime' => '',
+               'class' => ''
+       );
+}
+
+/**
+ * Get page link general attributes from filetime
+ * @param $filetime
+ * @return array('data_mtime' => page mtime or null, 'class' => additinal classes)
+ */
+function get_filetime_a_attrs($filetime)
+{
+       global $show_passage;
+       if ($show_passage) {
+               $pagemtime = get_date_atom($filetime + LOCALZONE);
+               return array(
+                       'data_mtime' => $pagemtime,
+                       'class' => get_link_passage_class(),
+               );
+       }
+       return array(
+               'data_mtime' => '',
+               'class' => ''
+       );
+}
+
 // 'Search' main function
 function do_search($word, $type = 'AND', $non_format = FALSE, $base = '')
 {
@@ -341,11 +414,13 @@ function do_search($word, $type = 'AND', $non_format = FALSE, $base = '')
                if ($search_auth && ! check_readable($page, false, false)) {
                        unset($pages[$page]);
                        --$count;
+                       continue;
                }
 
                // Search for page contents
                foreach ($keys as $key) {
-                       $b_match = preg_match($key, get_source($page, TRUE, TRUE));
+                       $body = get_source($page, TRUE, TRUE, TRUE);
+                       $b_match = preg_match($key, remove_author_header($body));
                        if ($b_type xor $b_match) break; // OR
                }
                if ($b_match) continue;
@@ -357,7 +432,7 @@ function do_search($word, $type = 'AND', $non_format = FALSE, $base = '')
        $r_word = rawurlencode($word);
        $s_word = htmlsc($word);
        if (empty($pages))
-               return str_replace('$1', $s_word, $_msg_notfoundresult);
+               return str_replace('$1', $s_word, str_replace('$3', $count, $_msg_notfoundresult));
 
        ksort($pages, SORT_STRING);
 
@@ -365,7 +440,7 @@ function do_search($word, $type = 'AND', $non_format = FALSE, $base = '')
        foreach (array_keys($pages) as $page) {
                $r_page  = rawurlencode($page);
                $s_page  = htmlsc($page);
-               $passage = $show_passage ? ' ' . get_passage(get_filetime($page)) : '';
+               $passage = $show_passage ? ' ' . get_passage_html_span($page) : '';
                $retval .= ' <li><a href="' . get_base_uri() . '?cmd=read&amp;page=' .
                        $r_page . '&amp;word=' . $r_word . '">' . $s_page .
                        '</a>' . $passage . '</li>' . "\n";
@@ -387,7 +462,7 @@ function arg_check($str)
 
 function _pagename_urlencode_callback($matches)
 {
-       return rawurlencode($matches[0]);
+       return urlencode($matches[0]);
 }
 
 function pagename_urlencode($page)
@@ -458,15 +533,12 @@ function page_list($pages, $cmd = 'read', $withfilename = FALSE)
        } else {
                $href = $script . '?cmd=' . $cmd . '&amp;page=';
        }
-
+       uasort($pages, 'strnatcmp');
        foreach($pages as $file=>$page) {
                $r_page  = pagename_urlencode($page);
                $s_page  = htmlsc($page, ENT_QUOTES);
-               $passage = get_pg_passage($page);
-
                $str = '   <li><a href="' . $href . $r_page . '">' .
-                       $s_page . '</a>' . $passage;
-
+                       $s_page . '</a> ' . get_pg_passage($page);
                if ($withfilename) {
                        $s_file = htmlsc($file);
                        $str .= "\n" . '    <ul><li>' . $s_file . '</li></ul>' .
@@ -489,15 +561,14 @@ function page_list($pages, $cmd = 'read', $withfilename = FALSE)
                        $head = (preg_match('/^([A-Za-z])/', $page, $matches)) ? strtoupper($matches[1]) :
                                (preg_match('/^([ -~])/', $page) ? $symbol : $other);
                }
-
                $list[$head][$page] = $str;
        }
-       uksort($pages, 'strnatcmp');
+       uksort($list, 'strnatcmp');
 
        $cnt = 0;
        $arr_index = array();
        $retval .= '<ul>' . "\n";
-       foreach ($list as $head=>$pages) {
+       foreach ($list as $head=>$sub_pages) {
                if ($head === $symbol) {
                        $head = $_msg_symbol;
                } else if ($head === $other) {
@@ -513,8 +584,7 @@ function page_list($pages, $cmd = 'read', $withfilename = FALSE)
                                '"><strong>' . $head . '</strong></a>' . "\n" .
                                '  <ul>' . "\n";
                }
-               ksort($pages, SORT_STRING);
-               $retval .= join("\n", $pages);
+               $retval .= join("\n", $sub_pages);
                if ($list_index)
                        $retval .= "\n  </ul>\n </li>\n";
        }
@@ -617,6 +687,18 @@ function format_date($val, $paren = FALSE)
        return $paren ? '(' . $date . ')' : $date;
 }
 
+/**
+ * Format date in DATE_ATOM format.
+ */
+function get_date_atom($timestamp)
+{
+       // Compatible with DATE_ATOM format
+       // return date(DATE_ATOM, $timestamp);
+       $zmin = abs(LOCALZONE / 60);
+       return date('Y-m-d\TH:i:s', $timestamp) . sprintf('%s%02d:%02d',
+               (LOCALZONE < 0 ? '-' : '+') , $zmin / 60, $zmin % 60);
+}
+
 // Get short string of the passage, 'N seconds/minutes/hours/days/years ago'
 function get_passage($time, $paren = TRUE)
 {
@@ -658,7 +740,7 @@ function get_autolink_pattern(& $pages)
                        $auto_pages[] = $page;
 
        if (empty($auto_pages)) {
-               $result = $result_a = $nowikiname ? '(?!)' : $WikiName;
+               $result = $result_a = '(?!)';
        } else {
                $auto_pages = array_unique($auto_pages);
                sort($auto_pages, SORT_STRING);
@@ -709,7 +791,9 @@ function get_autolink_pattern_sub(& $pages, $start, $end, $pos)
  */
 function get_base_uri($uri_type = PKWK_URI_RELATIVE)
 {
-       switch ($uri_type) {
+       $base_type = pkwk_base_uri_type_stack_peek();
+       $type = max($base_type, $uri_type);
+       switch ($type) {
        case PKWK_URI_RELATIVE:
                return pkwk_script_uri_base(PKWK_URI_RELATIVE);
        case PKWK_URI_ROOT:
@@ -730,6 +814,10 @@ function get_base_uri($uri_type = PKWK_URI_RELATIVE)
  */
 function get_page_uri($page, $uri_type = PKWK_URI_RELATIVE)
 {
+       global $defaultpage;
+       if ($page === $defaultpage) {
+               return get_base_uri($uri_type);
+       }
        return get_base_uri($uri_type) . '?' . pagename_urlencode($page);
 }
 
@@ -747,7 +835,7 @@ function get_script_uri()
  * @param $initialize true if you initialize URI
  * @param $uri_set URI set manually
  */
-function pkwk_script_uri_base($uri_type, $initialize, $uri_set)
+function pkwk_script_uri_base($uri_type, $initialize = null, $uri_set = null)
 {
        global $script_directory_index;
        static $initialized = false;
@@ -797,6 +885,80 @@ function pkwk_script_uri_base($uri_type, $initialize, $uri_set)
 }
 
 /**
+ * Create uri_type context
+ *
+ * @param $uri_type relative or absolute option
+ *        PKWK_URI_RELATIVE, PKWK_URI_ROOT or PKWK_URI_ABSOLUTE
+ */
+function pkwk_base_uri_type_stack_push($uri_type)
+{
+       _pkwk_base_uri_type_stack(false, true, $uri_type);
+}
+
+/**
+ * Stop current active uri_type context
+ */
+function pkwk_base_uri_type_stack_pop()
+{
+       _pkwk_base_uri_type_stack(false, false);
+}
+
+/**
+ * Get current active uri_type status
+ */
+function pkwk_base_uri_type_stack_peek()
+{
+       $type = _pkwk_base_uri_type_stack(true, false);
+       if (is_null($type)) {
+               return PKWK_URI_RELATIVE;
+       } elseif ($type === PKWK_URI_ABSOLUTE) {
+               return PKWK_URI_ABSOLUTE;
+       } elseif ($type === PKWK_URI_ROOT) {
+               return PKWK_URI_ROOT;
+       } else {
+               return PKWK_URI_RELATIVE;
+       }
+}
+
+/**
+ * uri_type context internal function
+ *
+ * @param $peek is peek action or not
+ * @param $push push(true) or pop(false) on not peeking
+ * @param $uri_type uri_type on push and non-peeking
+ * @return $uri_type uri_type for peeking
+ */
+function _pkwk_base_uri_type_stack($peek, $push, $uri_type = null)
+{
+       static $uri_types = array();
+       if ($peek) {
+               // Peek: get latest value
+               if (count($uri_types) === 0) {
+                       return null;
+               } else {
+                       return $uri_types[0];
+               }
+       } else {
+               if ($push) {
+                       // Push $uri_type
+                       if (count($uri_types) === 0) {
+                               array_unshift($uri_types, $uri_type);
+                       } else {
+                               $prev_type = $uri_types[0];
+                               if ($uri_type >= $prev_type) {
+                                       array_unshift($uri_types, $uri_type);
+                               } else {
+                                       array_unshift($uri_types, $prev_type);
+                               }
+                       }
+               } else {
+                       // Pop $uri_type
+                       return array_shift($uri_types);
+               }
+       }
+}
+
+/**
  * Guess Script Absolute URI.
  *
  * SERVER_PORT: $_SERVER['SERVER_PORT'] converted in init.php
@@ -805,8 +967,7 @@ function pkwk_script_uri_base($uri_type, $initialize, $uri_set)
 function guess_script_absolute_uri()
 {
        $port = SERVER_PORT;
-       $is_ssl = (SERVER_PORT == 443) ||
-               (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ||
+       $is_ssl = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') ||
                (isset($_SERVER['REQUEST_SCHEME']) && $_SERVER['REQUEST_SCHEME'] === 'https');
        if ($is_ssl) {
                $host = 'https://' . SERVER_NAME .
@@ -887,6 +1048,21 @@ function htmlsc($string = '', $flags = ENT_COMPAT, $charset = CONTENT_CHARSET)
 }
 
 /**
+ * Get JSON string with htmlspecialchars().
+ */
+function htmlsc_json($obj)
+{
+       // json_encode: PHP 5.2+
+       // JSON_UNESCAPED_UNICODE: PHP 5.4+
+       // JSON_UNESCAPED_SLASHES: PHP 5.4+
+       if (defined('JSON_UNESCAPED_UNICODE')) {
+               return htmlsc(json_encode($obj,
+                       JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));
+       }
+       return '';
+}
+
+/**
  * Get redirect page name on Page Redirect Rules
  *
  * This function returns exactly false if it doesn't need redirection.