This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
1 | <?php declare(strict_types=1); |
||||||
2 | |||||||
3 | namespace XoopsModules\Myiframe\Common; |
||||||
4 | |||||||
5 | /* |
||||||
6 | Utility Class Definition |
||||||
7 | |||||||
8 | You may not change or alter any portion of this comment or credits of |
||||||
9 | supporting developers from this source code or any supporting source code |
||||||
10 | which is considered copyrighted (c) material of the original comment or credit |
||||||
11 | authors. |
||||||
12 | |||||||
13 | This program is distributed in the hope that it will be useful, but |
||||||
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
||||||
16 | */ |
||||||
17 | |||||||
18 | /** |
||||||
19 | * @license https://www.fsf.org/copyleft/gpl.html GNU public license |
||||||
20 | * @copyright https://xoops.org 2000-2020 © XOOPS Project |
||||||
21 | * @author ZySpec <[email protected]> |
||||||
22 | * @author Mamba <[email protected]> |
||||||
23 | */ |
||||||
24 | |||||||
25 | use XoopsFormEditor; |
||||||
26 | use XoopsModules\Myiframe\Helper; |
||||||
27 | |||||||
28 | /** |
||||||
29 | * Class SysUtility |
||||||
30 | */ |
||||||
31 | class SysUtility |
||||||
32 | { |
||||||
33 | use VersionChecks; |
||||||
0 ignored issues
–
show
introduced
by
![]() |
|||||||
34 | |||||||
35 | //checkVerXoops, checkVerPhp Traits |
||||||
36 | |||||||
37 | use ServerStats; |
||||||
38 | |||||||
39 | // getServerStats Trait |
||||||
40 | |||||||
41 | use FilesManagement; |
||||||
42 | |||||||
43 | // Files Management Trait |
||||||
44 | |||||||
45 | /** |
||||||
46 | * truncateHtml can truncate a string up to a number of characters while preserving whole words and HTML tags |
||||||
47 | * www.gsdesign.ro/blog/cut-html-string-without-breaking-the-tags |
||||||
48 | * www.cakephp.org |
||||||
49 | * |
||||||
50 | * @param string $text String to truncate. |
||||||
51 | * @param int $length Length of returned string, including ellipsis. |
||||||
52 | * @param string $ending Ending to be appended to the trimmed string. |
||||||
53 | * @param bool $exact If false, $text will not be cut mid-word |
||||||
54 | * @param bool $considerHtml If true, HTML tags would be handled correctly |
||||||
55 | * |
||||||
56 | * @return string Trimmed string. |
||||||
57 | */ |
||||||
58 | public static function truncateHtml($text, $length = 100, $ending = '...', $exact = false, $considerHtml = true): string |
||||||
59 | { |
||||||
60 | if ($considerHtml) { |
||||||
61 | // if the plain text is shorter than the maximum length, return the whole text |
||||||
62 | if (mb_strlen(\preg_replace('/<.*?' . '>/', '', $text)) <= $length) { |
||||||
63 | return $text; |
||||||
64 | } |
||||||
65 | // splits all html-tags to scanable lines |
||||||
66 | \preg_match_all('/(<.+?' . '>)?([^<>]*)/s', $text, $lines, \PREG_SET_ORDER); |
||||||
67 | $total_length = mb_strlen($ending); |
||||||
68 | $open_tags = []; |
||||||
69 | $truncate = ''; |
||||||
70 | foreach ($lines as $line_matchings) { |
||||||
71 | // if there is any html-tag in this line, handle it and add it (uncounted) to the output |
||||||
72 | if (!empty($line_matchings[1])) { |
||||||
73 | // if it's an "empty element" with or without xhtml-conform closing slash |
||||||
74 | if (\preg_match('/^<(\s*.+?\/\s*|\s*(img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param)(\s.+?)?)>$/is', $line_matchings[1])) { |
||||||
75 | // do nothing |
||||||
76 | // if tag is a closing tag |
||||||
77 | } elseif (\preg_match('/^<\s*\/(\S+?)\s*>$/s', $line_matchings[1], $tag_matchings)) { |
||||||
78 | // delete tag from $open_tags list |
||||||
79 | $pos = \array_search($tag_matchings[1], $open_tags, true); |
||||||
80 | if (false !== $pos) { |
||||||
81 | unset($open_tags[$pos]); |
||||||
82 | } |
||||||
83 | // if tag is an opening tag |
||||||
84 | } elseif (\preg_match('/^<\s*([^\s>!]+).*?' . '>$/s', $line_matchings[1], $tag_matchings)) { |
||||||
85 | // add tag to the beginning of $open_tags list |
||||||
86 | \array_unshift($open_tags, \mb_strtolower($tag_matchings[1])); |
||||||
87 | } |
||||||
88 | // add html-tag to $truncate'd text |
||||||
89 | $truncate .= $line_matchings[1]; |
||||||
90 | } |
||||||
91 | // calculate the length of the plain text part of the line; handle entities as one character |
||||||
92 | $content_length = mb_strlen(\preg_replace('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i', ' ', $line_matchings[2])); |
||||||
93 | if ($total_length + $content_length > $length) { |
||||||
94 | // the number of characters which are left |
||||||
95 | $left = $length - $total_length; |
||||||
96 | $entities_length = 0; |
||||||
97 | // search for html entities |
||||||
98 | if (\preg_match_all('/&[0-9a-z]{2,8};|&#[0-9]{1,7};|[0-9a-f]{1,6};/i', $line_matchings[2], $entities, \PREG_OFFSET_CAPTURE)) { |
||||||
99 | // calculate the real length of all entities in the legal range |
||||||
100 | foreach ($entities[0] as $entity) { |
||||||
101 | if ($left >= $entity[1] + 1 - $entities_length) { |
||||||
102 | $left--; |
||||||
103 | $entities_length += mb_strlen($entity[0]); |
||||||
104 | } else { |
||||||
105 | // no more characters left |
||||||
106 | break; |
||||||
107 | } |
||||||
108 | } |
||||||
109 | } |
||||||
110 | $truncate .= mb_substr($line_matchings[2], 0, $left + $entities_length); |
||||||
111 | // maximum lenght is reached, so get off the loop |
||||||
112 | break; |
||||||
113 | } |
||||||
114 | $truncate .= $line_matchings[2]; |
||||||
115 | $total_length += $content_length; |
||||||
116 | |||||||
117 | // if the maximum length is reached, get off the loop |
||||||
118 | if ($total_length >= $length) { |
||||||
119 | break; |
||||||
120 | } |
||||||
121 | } |
||||||
122 | } else { |
||||||
123 | if (mb_strlen($text) <= $length) { |
||||||
124 | return $text; |
||||||
125 | } |
||||||
126 | $truncate = mb_substr($text, 0, $length - mb_strlen($ending)); |
||||||
127 | } |
||||||
128 | // if the words shouldn't be cut in the middle... |
||||||
129 | if (!$exact) { |
||||||
130 | // ...search the last occurance of a space... |
||||||
131 | $spacepos = mb_strrpos($truncate, ' '); |
||||||
132 | if (isset($spacepos)) { |
||||||
133 | // ...and cut the text in this position |
||||||
134 | $truncate = mb_substr($truncate, 0, $spacepos); |
||||||
135 | } |
||||||
136 | } |
||||||
137 | // add the defined ending to the text |
||||||
138 | $truncate .= $ending; |
||||||
139 | if ($considerHtml) { |
||||||
140 | // close all unclosed html-tags |
||||||
141 | foreach ($open_tags as $tag) { |
||||||
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
|
|||||||
142 | $truncate .= '</' . $tag . '>'; |
||||||
143 | } |
||||||
144 | } |
||||||
145 | |||||||
146 | return $truncate; |
||||||
147 | } |
||||||
148 | |||||||
149 | /** |
||||||
150 | * @param \Xmf\Module\Helper $helper |
||||||
151 | * @param array|null $options |
||||||
152 | * @return \XoopsFormDhtmlTextArea|\XoopsFormEditor |
||||||
153 | */ |
||||||
154 | public static function getEditor($helper = null, $options = null) |
||||||
155 | { |
||||||
156 | /** @var Helper $helper */ |
||||||
157 | if (null === $options) { |
||||||
158 | $options = []; |
||||||
159 | $options['name'] = 'Editor'; |
||||||
160 | $options['value'] = 'Editor'; |
||||||
161 | $options['rows'] = 10; |
||||||
162 | $options['cols'] = '100%'; |
||||||
163 | $options['width'] = '100%'; |
||||||
164 | $options['height'] = '400px'; |
||||||
165 | } |
||||||
166 | |||||||
167 | if (null === $helper) { |
||||||
168 | $helper = Helper::getInstance(); |
||||||
169 | } |
||||||
170 | |||||||
171 | $isAdmin = $helper->isUserAdmin(); |
||||||
172 | |||||||
173 | if (\class_exists('XoopsFormEditor')) { |
||||||
174 | if ($isAdmin) { |
||||||
175 | $descEditor = new \XoopsFormEditor(\ucfirst($options['name']), $helper->getConfig('editorAdmin'), $options, $nohtml = false, $onfailure = 'textarea'); |
||||||
176 | } else { |
||||||
177 | $descEditor = new \XoopsFormEditor(\ucfirst($options['name']), $helper->getConfig('editorUser'), $options, $nohtml = false, $onfailure = 'textarea'); |
||||||
178 | } |
||||||
179 | } else { |
||||||
180 | $descEditor = new \XoopsFormDhtmlTextArea(\ucfirst($options['name']), $options['name'], $options['value'], '100%', '100%'); |
||||||
0 ignored issues
–
show
'100%' of type string is incompatible with the type integer expected by parameter $rows of XoopsFormDhtmlTextArea::__construct() .
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() '100%' of type string is incompatible with the type integer expected by parameter $cols of XoopsFormDhtmlTextArea::__construct() .
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the
![]() |
|||||||
181 | } |
||||||
182 | |||||||
183 | // $form->addElement($descEditor); |
||||||
184 | |||||||
185 | return $descEditor; |
||||||
186 | } |
||||||
187 | |||||||
188 | /** |
||||||
189 | * @param string $fieldname |
||||||
190 | * @param string $table |
||||||
191 | * @return bool |
||||||
192 | */ |
||||||
193 | public static function fieldExists(string $fieldname, string $table): bool |
||||||
194 | { |
||||||
195 | global $xoopsDB; |
||||||
196 | $result = $xoopsDB->queryF("SHOW COLUMNS FROM $table LIKE '$fieldname'"); |
||||||
197 | |||||||
198 | return ($xoopsDB->getRowsNum($result) > 0); |
||||||
199 | } |
||||||
200 | |||||||
201 | /** |
||||||
202 | * @param array|string $tableName |
||||||
203 | * @param int $id_field |
||||||
204 | * @param int $id |
||||||
205 | * |
||||||
206 | * @return mixed |
||||||
207 | */ |
||||||
208 | public static function cloneRecord($tableName, $id_field, $id) |
||||||
209 | { |
||||||
210 | $new_id = false; |
||||||
0 ignored issues
–
show
|
|||||||
211 | $table = $GLOBALS['xoopsDB']->prefix($tableName); |
||||||
212 | // copy content of the record you wish to clone |
||||||
213 | $sql = "SELECT * FROM $table WHERE $idField='" . $id . "' "; |
||||||
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
|
|||||||
214 | $result = $GLOBALS['xoopsDB']->query($sql); |
||||||
215 | if ($result instanceof \mysqli_result) { |
||||||
216 | $tempTable = $GLOBALS['xoopsDB']->fetchArray($result, \MYSQLI_ASSOC); |
||||||
217 | } |
||||||
218 | if (!$tempTable) { |
||||||
0 ignored issues
–
show
Comprehensibility
Best Practice
introduced
by
|
|||||||
219 | \trigger_error($GLOBALS['xoopsDB']->error()); |
||||||
220 | } |
||||||
221 | // set the auto-incremented id's value to blank. |
||||||
222 | unset($tempTable[$id_field]); |
||||||
223 | // insert cloned copy of the original record |
||||||
224 | $sql = "INSERT INTO $table (" . \implode(', ', \array_keys($tempTable)) . ") VALUES ('" . \implode("', '", $tempTable) . "')"; |
||||||
225 | $result = $GLOBALS['xoopsDB']->queryF($sql); |
||||||
226 | if (!$result) { |
||||||
227 | \trigger_error($GLOBALS['xoopsDB']->error()); |
||||||
228 | } |
||||||
229 | // Return the new id |
||||||
230 | $new_id = $GLOBALS['xoopsDB']->getInsertId(); |
||||||
231 | |||||||
232 | return $new_id; |
||||||
233 | } |
||||||
234 | |||||||
235 | /** |
||||||
236 | * @param string $tablename |
||||||
237 | * |
||||||
238 | * @return bool |
||||||
239 | */ |
||||||
240 | public static function tableExists($tablename): bool |
||||||
241 | { |
||||||
242 | $result = $GLOBALS['xoopsDB']->queryF("SHOW TABLES LIKE '$tablename'"); |
||||||
243 | |||||||
244 | return $GLOBALS['xoopsDB']->getRowsNum($result) > 0; |
||||||
245 | } |
||||||
246 | } |
||||||
247 |