-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARSU_VA_Util.php
389 lines (331 loc) · 11.6 KB
/
ARSU_VA_Util.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
<?php
class ARSU_VA_Util
{
private $pluginPath;
private $urlToRoot;
private $pluginId;
private $publicDir;
private $version;
public function __construct($directory, $urlToRoot, $pluginId, $publicDir)
{
$this->pluginPath = $directory;
$this->urlToRoot = $urlToRoot;
$this->pluginId = $pluginId;
$this->publicDir = $publicDir;
}
public function getPublicUrlToRoot($path = '')
{
return $this->urlToRoot . $this->publicDir . '/' . $path;
}
public function getPublicDirectoryPath($path = '')
{
return $this->pluginPath . $this->publicDir . $path;
}
public function lang($id, $parameters = array())
{
$result = qa_lang($this->pluginId . '/' . $id);
if (!is_array($parameters)) {
$parameters = array($parameters);
}
return empty($parameters) ? $result : $this->fillPlaceholders($result, $parameters);
}
public function langHtml($id, $parameters = array())
{
$result = qa_html($this->lang($id));
if (!is_array($parameters)) {
$parameters = array($parameters);
}
return empty($parameters) ? $result : $this->fillPlaceholders($result, $parameters);
}
/** All ^X, where X is an integer number greater than or equal to 1, are replaced with the appropriate parameter
* documented before the constant.
* All ^X:Y:Z:, where X is the same as above and Y and Z are anything but colons (:) sequences of characters.
* They are replaced applying the following algorithm: If X is equal to 1 then display Y. Otherwise, display Z.
* If $fillValues can contain arrays with 'value' and 'formatted_value' keys. If the value needs to be output in a
* formatted way (e.g.: '1,232.05'), then that value would go in the 'formatted_value' key while the actual value
* (e.g.: 1232) used for singular/plural form comparison would go in the 'value' key.
*/
private function fillPlaceholders($text, $fillValues, $placeHolder = '^')
{
if (!is_array($fillValues)) {
$fillValues = array($fillValues);
}
$placeHolder = preg_quote($placeHolder);
foreach ($fillValues as $index => $fillValue) {
if (is_array($fillValue)) {
$actualValue = $fillValue['value'];
$formattedValue = $fillValue['formatted_value'];
} else {
$actualValue = $fillValue;
$formattedValue = $fillValue;
}
$indexedPlaceHolder = $placeHolder . ($index + 1); // EG: ^1
$text = preg_replace('/' . $indexedPlaceHolder . '(?!\:(?:[^\:]*?\:){2})/', $formattedValue, $text);
$text = preg_replace('/' . $indexedPlaceHolder . '\:([^\:]*?)\:([^\:]*?)\:/', $actualValue == 1 ? '$1' : '$2', $text);
}
return $text;
}
public function getSetting($id, $defaultOnEmptyString = null)
{
$value = qa_opt($this->addPrefix($id));
return $value === '' && isset($defaultOnEmptyString) ? $defaultOnEmptyString : $value;
}
public function setSetting($id, $value)
{
qa_opt($this->addPrefix($id), $value);
}
public function addPrefix($text, $separator = '_')
{
return $this->pluginId . $separator . $text;
}
public function removePrefix($text, $separator = '_')
{
$prefix = $this->addPrefix('', $separator);
if (substr($text, 0, strlen($prefix)) === $prefix) {
$text = substr($text, strlen($prefix));
}
return $text;
}
public function getSettingFromDb($id)
{
return qa_db_read_one_value(qa_db_query_sub(
'SELECT `content` FROM `^options` ' .
'WHERE `title` = $',
$this->addPrefix($id)
), true);
}
// $qa_content manipulation
private function fetchVersion()
{
if (is_null($this->version)) {
$metadata = (new Q2A_Util_Metadata())->fetchFromAddonPath($this->pluginPath);
$this->version = isset($metadata['version']) ? $metadata['version'] : '';
}
}
/* Adds the CSS file to the $qa_content array */
public function addCssFileAsReference(&$qa_content, $cssFile, $local = true, $addVersion = true)
{
if (!isset($qa_content['css_src'])) {
$qa_content['css_src'] = array();
}
$cssUrl = $local ? $this->getPublicUrlToRoot($cssFile) : $cssFile;
if ($addVersion) {
$this->fetchVersion();
if (!empty($this->version)) {
$cssUrl .= '?' . $this->version;
}
}
$qa_content['css_src'][] = qa_html($cssUrl);
}
/** Adds the CSS file inline to the $qa_content array.
*
* @param array $qa_content
* @param string $fileName
*/
public function addCssFileInline(array &$qa_content, $fileName)
{
$html = $this->readPublicFileContent($fileName);
$html = '<style>' . $html . '</style>';
$this->appendToHeadScript($qa_content, $html);
}
/** Adds the JS file name to the $qa_content array. If $local is true the urlToRoot is added in the
* URL. If $body is true then it is added to the body footer. Otherwise, it is added to the head */
public function addJsFileAsReference(&$qa_content, $fileName, $local = true, $body = true, $addVersion = true)
{
if ($addVersion) {
$this->fetchVersion();
if (!empty($this->version)) {
$fileName .= '?' . $this->version;
}
}
$tag = $this->getJavascriptTag($fileName, $local);
if ($body) {
$this->appendToContentBodyFooter($qa_content, $tag);
} else { // Assumed head
$this->appendToHeadScript($qa_content, $tag);
}
}
/** Adds the JS file inline to the $qa_content array. If $body is true then it is added to the body
* footer. Otherwise, it is added to the head.
*
* @param array $qa_content
* @param string $fileName
* @param bool $body
*/
public function addJsFileInline(array &$qa_content, $fileName, $body = true)
{
$html = $this->readPublicFileContent($fileName);
$html = '<script>' . $html . '</script>';
if ($body) {
$this->appendToContentBodyFooter($qa_content, $html);
} else { // Assumed head
$this->appendToHeadScript($qa_content, $html);
}
}
/**
* Append content to the head tag.
*
* @param array $qa_content
* @param string $html
*/
public function appendToHead(&$qa_content, $html)
{
if (!isset($qa_content['head_lines'])) {
$qa_content['head_lines'] = array();
}
$qa_content['head_lines'][] = $html;
}
/* Appends a piece of HTML to the body_footer string in the content array */
public function appendToHeadScript(array &$qa_content, $html)
{
if (!isset($qa_content['script'])) {
$qa_content['script'] = array();
}
$qa_content['script'][] = $html;
}
/* Appends a piece of HTML to the body footer in the content array */
public function appendToContentBodyFooter(&$qa_content, $html)
{
if (!isset($qa_content['body_footer'])) {
$qa_content['body_footer'] = '';
}
$qa_content['body_footer'] .= $html;
}
/* Appends a piece of HTML to the body header array in the content array */
public function appendToContentBodyHeader(&$qa_content, $html)
{
if (!isset($qa_content['body_header'])) {
$qa_content['body_header'] = '';
}
$qa_content['body_header'] .= $html;
}
/**
* @param array $qa_content
* @param string $file
* @param bool $checkHead
* @param bool $checkHeadScript
* @param bool $checkBodyHeader
* @param bool $checkBodyFooter
*
* @return bool
*/
public function isJsFileReferenced(&$qa_content, $file, $checkHead = true, $checkHeadScript = true, $checkBodyHeader = true, $checkBodyFooter = true)
{
if ($checkBodyHeader && isset($qa_content['body_header']) && (strpos($qa_content['body_header'], $file) !== false)) {
return true;
}
if ($checkBodyFooter && isset($qa_content['body_footer']) && (strpos($qa_content['body_footer'], $file) !== false)) {
return true;
}
if ($checkHead && isset($qa_content['head_lines'])) {
foreach ($qa_content['head_lines'] as $line) {
if (strpos($line, $file) !== false) {
return true;
}
}
}
if ($checkHeadScript && isset($qa_content['script'])) {
foreach ($qa_content['script'] as $line) {
if (strpos($line, $file) !== false) {
return true;
}
}
}
return false;
}
/**
* @param array $qa_content
* @param string $file
*
* @return bool
*/
public function isCssFileReferenced(&$qa_content, $file)
{
if (isset($qa_content['css_src'])) {
foreach ($qa_content['css_src'] as $line) {
if (strpos($line, $file) !== false) {
return true;
}
}
}
return false;
}
/* Returns a script HTML tag with the given url */
public function getJavascriptTag($url, $local)
{
$location = $local ? $this->getPublicUrlToRoot($url) : $url;
return sprintf('<script src="%s"></script>', $location);
}
/**
* Return the content of a file relative to the public directory.
*
* @param string $path
*
* @return string
*/
public function readPublicFileContent($path)
{
$jsFilePath = $this->getPublicDirectoryPath('/' . $path);
return file_get_contents($jsFilePath);
}
/**
* Return a numeric parameter from the $_GET array or null if not present or not numeric.
*
* @param string $name
* @param mixed $defaultValue
*
* @return mixed
*/
public function getParamNumeric($name = 'id', $defaultValue = null)
{
$value = qa_get($name);
return isset($value) && is_numeric($value) ? (int)$value : $defaultValue;
}
/**
* Return if there is a widget with the given class name being displayed
*
* @param array $qa_content
* @param string $widgetClassName
*
* @return bool
*/
public function isWidgetForClassnameDisplayed($qa_content, $widgetClassName)
{
if (is_array($qa_content)) {
foreach ($qa_content as $key => $value) {
if (is_array($value)) {
$result = $this->isWidgetForClassnameDisplayed($value, $widgetClassName);
if ($result) {
return true;
}
} else {
if (is_object($value) && get_class($value) === $widgetClassName) {
return true;
}
}
}
}
return false;
}
/**
* @param mixed $data
* @param bool $encodeHtml
* @param bool $numericCheck
*
* @return string
*/
public function jsonEncode($data, $encodeHtml = false, $numericCheck = true)
{
$result = json_encode($data, $numericCheck ? JSON_NUMERIC_CHECK : 0);
return $encodeHtml ? htmlentities($result) : $result;
}
/**
* @param string $data
*
* @return mixed
*/
public function jsonDecode($data)
{
return json_decode($data, true);
}
}