-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDB.php
483 lines (388 loc) · 14.4 KB
/
DB.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<?php
/** Delete a session by its ID */
function ajaxds_deleteSessionById($sessId)
{
$sqlQuery = <<<EOD
DELETE FROM wp_dynamic_shortcode
WHERE id_session = %s
EOD;
$res = ajaxds_doSql($sqlQuery, array($sessId), 'query');
}
/** Get all the session variables */
function ajaxds_getSessionVars($sessId, $includeData = false)
{
$sqlQuery = <<<EOD
SELECT expiration_date, current_url[_DATA_STR_]
FROM wp_dynamic_shortcode
WHERE id_session = %s
EOD;
if ($includeData) {
$sqlQuery = str_replace('[_DATA_STR_]', ', data', $sqlQuery);
} else {
$sqlQuery = str_replace('[_DATA_STR_]', '', $sqlQuery);
}
$res = ajaxds_doSql($sqlQuery, array($sessId), 'row');
if (isset($res)) {
if ($res->expiration_date < date("Y-m-d H:i:s")) {
ajaxds_deleteSessionById($sessId);
return 0;
}
return $res;
} else {
return 0;
}
return $res;
}
function ajaxds_getIfShortcodeIsCallable($shortcodeName){
$sqlQuery = <<<EOD
SELECT shortcode_name
FROM wp_dynamic_shortcode_globalsettings
WHERE shortcode_name = %s AND is_editable = '1'
EOD;
$res = ajaxds_doSql($sqlQuery, array($shortcodeName), 'row');
if (isset($res) && strval($res->shortcode_name) === strval($shortcodeName)) {
$sqlQuery2 = <<<EOD
SELECT shortcode_name
FROM wp_dynamic_shortcode_settings
WHERE shortcode_name = %s
EOD;
$res2 = ajaxds_doSql($sqlQuery2, array($shortcodeName), 'row');
if (isset($res2) && strval($res2->shortcode_name) === strval($shortcodeName)){
return 1;
}
return 0;
}
return 0;
}
/** Get the session data from raw string */
function ajaxds_getDataFromString($strVal)
{
$strVal = gzinflate(base64_decode($strVal));
$arrRet = array();
$arrRetPre = explode('[_WP_D_S_DEL_]', $strVal);
foreach ($arrRetPre as $keyValPair) {
$explo = explode('[_WP_D_S_KEYVAL_]', $keyValPair);
$arrRet = $arrRet + array($explo[0] => $explo[1]);
}
return $arrRet;
}
/** Set the session variables from the session ID */
function ajaxds_setSessionVars($sessId, $arrKeyVal, $isUpdate, $getPostParams)
{
$strFin = '';
$currUrl = ajaxds_getCurrentUrl();
foreach ($arrKeyVal as $key => $val) {
$strFin = $strFin . $key . '[_WP_D_S_KEYVAL_]' . $val . '[_WP_D_S_DEL_]';
}
$strFin = ajaxds_str_lreplace('[_WP_D_S_DEL_]', '', $strFin);
$strFin = base64_encode(gzdeflate($strFin, 9));
$dataDb = '';
if (is_array($getPostParams) && count($getPostParams) > 0){
$dataDb = ajaxds_safeEncodeBase64(json_encode($getPostParams));
}
if ($isUpdate) {
$sqlQuery = <<<EOD
UPDATE wp_dynamic_shortcode
SET data = %s, expiration_date = expiration_date, current_url=%s, get_post_params=%s
WHERE id_session = %s
EOD;
$res = ajaxds_doSql($sqlQuery, array($strFin, $currUrl, $dataDb, $sessId), 'query');
} else {
$sessId = ajaxds_GUID();
$sqlQuery = <<<EOD
INSERT INTO wp_dynamic_shortcode (id_session, data, get_post_params, expiration_date, current_url)
VALUES (%s, %s, %s, DATE(DATE_ADD(NOW(), INTERVAL +2 DAY)), %s)
EOD;
$res = ajaxds_doSql($sqlQuery, array($sessId, $strFin, $dataDb, $currUrl), 'query');
}
$_SESSION['wp_dynamic_shortcode_usr_SESSID'] = $sessId;
}
/** Do an sql query and return the result
* @param String $sqlQuery The query string
* @param array $arrayParams Array of parameters to replace in query string
* @param String $typeQuery The type of query. Either 'results', 'row', 'var' or 'query'.
*/
function ajaxds_doSql($sqlQuery, $arrayParams, $typeQuery)
{
global $wpdb;
$res = null;
if ($arrayParams !== null && count($arrayParams) > 0) {
$sqlQuery = $wpdb->prepare($sqlQuery, $arrayParams);
}
if ($typeQuery === 'results') {
$res = $wpdb->get_results($sqlQuery);
} else if ($typeQuery === 'row') {
$res = $wpdb->get_row($sqlQuery);
} else if ($typeQuery === 'var') {
$res = $wpdb->get_var($sqlQuery);
} else if ($typeQuery === 'query') {
$res = $wpdb->query($sqlQuery);
}
return $res;
}
function ajaxds_getShortcodeParameters($shortcodeName)
{
return ajaxds_doSql("SELECT * FROM wp_dynamic_shortcode_settings WHERE shortcode_name = %s", array($shortcodeName), 'row');
}
function ajaxds_getIfShortcodeExist($shortcodeName)
{
$res = ajaxds_doSql("SELECT shortcode_name FROM wp_dynamic_shortcode_settings WHERE shortcode_name = %s", array($shortcodeName), 'row')->shortcode_name === $shortcodeName;
return $res;
}
function ajaxds_getIfPlaceholderExist($placeholderName)
{
$res = ajaxds_doSql("SELECT placeholder_name FROM wp_dynamic_shortcode_placeholders WHERE placeholder_name = %s", array($placeholderName), 'row')->placeholder_name === $placeholderName;
return $res;
}
function ajaxds_getAllPlaceholders($isEdit = false)
{
if (!$isEdit) {
return ajaxds_doSql("SELECT placeholder_name FROM wp_dynamic_shortcode_placeholders", null, 'results');
} else {
return ajaxds_doSql("SELECT placeholder_name FROM wp_dynamic_shortcode_placeholders WHERE placeholder_name != 'default'", null, 'results');
}
}
function ajaxds_getPlaceholderValue($palceholderName)
{
return ajaxds_doSql("SELECT data FROM wp_dynamic_shortcode_placeholders WHERE placeholder_name = %s", array($palceholderName), 'var');
}
function ajaxds_updateInsertShortcodeSettings(
$shortcodeName,
$enableDynamicReplace,
$ignoreAttributesParameters,
$ignoreGetParameters,
$ignorePostParameters,
$isJavascriptVariable,
$placeholderName,
$validationFunction,
$isUpdate
) {
$res = null;
if ($isUpdate) {
$res = ajaxds_doSql(
"SELECT shortcode_name
FROM wp_dynamic_shortcode_settings
WHERE shortcode_name = %s AND placeholder_name = %s AND
is_javascript_variable = %s AND get_parameters_ignore = %s AND
post_parameters_ignore = %s AND validation_function_name = %s AND
attributes_ignore = %s AND use_dynamic_replace = %s",
array(
$shortcodeName, $placeholderName, $isJavascriptVariable, $ignoreGetParameters,
$ignorePostParameters, $validationFunction, $ignoreAttributesParameters,
$enableDynamicReplace
),
'row'
);
if (!isset($res->shortcode_name)) {
$sql = "UPDATE wp_dynamic_shortcode_settings
SET placeholder_name = %s,
is_javascript_variable = %s,
get_parameters_ignore = %s,
post_parameters_ignore = %s,
validation_function_name = %s,
attributes_ignore = %s,
use_dynamic_replace = %s
WHERE shortcode_name = %s";
$res = ajaxds_doSql($sql, array(
$placeholderName, $isJavascriptVariable, $ignoreGetParameters,
$ignorePostParameters, $validationFunction, $ignoreAttributesParameters,
$enableDynamicReplace, $shortcodeName
), 'query');
} else {
$res = 1;
}
} else {
$sql = "INSERT INTO wp_dynamic_shortcode_settings (shortcode_name, placeholder_name, is_javascript_variable, get_parameters_ignore,
post_parameters_ignore, validation_function_name, attributes_ignore, use_dynamic_replace)
VALUES (%s, %s, %s, %s, %s, %s, %s, %s);";
$res = ajaxds_doSql($sql, array(
$shortcodeName, $placeholderName, $isJavascriptVariable, $ignoreGetParameters,
$ignorePostParameters, $validationFunction, $ignoreAttributesParameters,
$enableDynamicReplace
), 'query');
}
if ($res === 0) {
return 0;
} else {
return 1;
}
}
function ajaxds_updateInsertPlaceholderSettings(
$placeholderName,
$data,
$isUpdate
) {
$res = null;
$data = '<div id="wp_dynamic_shortcode_[_MAIN_SHORTCODE_]_Loader">' . $data . '</div>';
if ($isUpdate) {
$res = ajaxds_doSql(
"SELECT placeholder_name
FROM wp_dynamic_shortcode_placeholders
WHERE placeholder_name = %s AND data = %s",
array($placeholderName, $data),
'row'
);
if (!isset($res->placeholder_name)) {
$sql = "UPDATE wp_dynamic_shortcode_placeholders
SET data = %s
WHERE placeholder_name = %s";
$res = ajaxds_doSql($sql, array($data, $placeholderName), 'query');
} else {
$res = 1;
}
} else {
$sql = "INSERT INTO wp_dynamic_shortcode_placeholders (placeholder_name, data)
VALUES (%s, %s);";
$res = ajaxds_doSql($sql, array($placeholderName, $data), 'query');
}
if ($res === 0) {
return 0;
} else {
return 1;
}
}
function ajaxds_deletePlaceholder($placeholderName)
{
$res = null;
$res = ajaxds_doSql("DELETE FROM wp_dynamic_shortcode_placeholders
WHERE placeholder_name = %s", array($placeholderName), 'row');
if ($res === 0) {
return 0;
} else {
return 1;
}
}
function ajaxds_LoadShortcodeSettings($shortcodeName)
{
$sql = "SELECT * FROM wp_dynamic_shortcode_settings WHERE shortcode_name = %s";
$res = ajaxds_doSql($sql, array($shortcodeName), 'row');
return $res;
}
function ajaxds_LoadPlaceholderSettings($placeholderName)
{
$sql = "SELECT * FROM wp_dynamic_shortcode_placeholders WHERE placeholder_name = %s";
$res = ajaxds_doSql($sql, array($placeholderName), 'row');
$fieldVal = "";
$dom = new DOMDocument();
$dom->preserveWhiteSpace = false;
$dom->formatOutput = false;
$dom->loadHTML('<html><head></head><body>' . $res->data . '</body></html>');
$xpath = new DOMXPath($dom);
$tags = $xpath->query('.//div[@id="wp_dynamic_shortcode_[_MAIN_SHORTCODE_]_Loader"]');
foreach ($tags as $tag) {
$fieldVal = ajaxds_getInnerHTML($tag);
break;
}
$res->data = $fieldVal;
return $res;
}
function ajaxds_getDefaultParametersShortcode()
{
return array(
"placeholder_name" => "default",
"is_javascript_variable" => "0",
"get_parameters_ignore" => "",
"post_parameters_ignore" => "",
"validation_function_name" => "",
"attributes_ignore" => "",
"use_dynamic_replace" => "0"
);
}
function ajaxds_getIfShortcodeEditableGlobalSettings($shortcodeName)
{
$sql = "SELECT shortcode_name FROM wp_dynamic_shortcode_globalsettings WHERE setting_type = 'editable_shortcode' AND shortcode_name = %s";
$res = ajaxds_doSql($sql, array($shortcodeName), 'row');
return isset($res->shortcode_name) && $res->shortcode_name === $shortcodeName;
}
function ajaxds_getIfShortcodeEditableGlobalSettingsTrueFalse($shortcodeName)
{
$sql = "SELECT is_editable FROM wp_dynamic_shortcode_globalsettings WHERE setting_type = 'editable_shortcode' AND shortcode_name = %s AND is_editable = '1'";
$res = ajaxds_doSql($sql, array($shortcodeName), 'var');
return strval($res) === '1';
}
function ajaxds_getAllNonSpecifiedEditableShortcodesGlobalSettings()
{
$shortcodeRet = array();
$shortcodes = ajaxds_getAllShortcodes();
foreach ($shortcodes as $code => $function) {
$isEditable = ajaxds_getIfShortcodeEditableGlobalSettings($code);
if (!$isEditable) {
array_push($shortcodeRet, $code);
}
}
return $shortcodeRet;
}
/** Update or insert a global settings (is_editable is the value to set) */
function ajaxds_updateInsertGlobalSettings(
$shortcodeName,
$isEditable,
$settingType,
$isUpdate
) {
$res = null;
$isEditable = strval($isEditable) === 'on' ? '1' : '0';
if ($isUpdate) {
$res = ajaxds_doSql(
"SELECT shortcode_name
FROM wp_dynamic_shortcode_globalsettings
WHERE shortcode_name = %s AND setting_type = %s AND is_editable = %s",
array($shortcodeName, $settingType, $isEditable),
'row'
);
if (!isset($res->shortcode_name)) {
$sql = "UPDATE wp_dynamic_shortcode_globalsettings
SET is_editable = %s
WHERE shortcode_name = %s AND setting_type = %s";
$res = ajaxds_doSql($sql, array($isEditable, $shortcodeName, $settingType), 'query');
} else {
$res = 1;
}
} else {
$sql = "INSERT INTO wp_dynamic_shortcode_globalsettings (shortcode_name, setting_type, is_editable)
VALUES (%s, %s, %s);";
$res = ajaxds_doSql($sql, array($shortcodeName, $settingType, $isEditable), 'query');
}
if ($res === 0) {
return 0;
} else {
return 1;
}
}
/** Get the post and get parameters from a sessionId */
function ajaxds_getPostGetParamsSession($sessionId)
{
$res = ajaxds_doSql(
"SELECT id_session, get_post_params
FROM wp_dynamic_shortcode
WHERE id_session = %s",
array($sessionId),
'row'
);
if (!isset($res->id_session)) {
$res = 0;
} else {
$arrPost = array();
$arrGet = array();
if (isset($res->get_post_params) && strlen(strval($res->get_post_params)) > 0) {
$res = json_decode(ajaxds_safeDecodeBase64($res->get_post_params));
foreach ($res as $key => $val) {
if (strpos($key, 'wp_dynamic_GETPARAM_') !== false) {
$realKey = str_replace('wp_dynamic_GETPARAM_', '', $key);
$arrGet[$realKey] = ajaxds_safeDecodeBase64($val);
} else if (strpos($key, 'wp_dynamic_POSTPARAM_') !== false) {
$realKey = str_replace('wp_dynamic_POSTPARAM_', '', $key);
$arrPost[$realKey] = ajaxds_safeDecodeBase64($val);
}
}
}
$res = array('post' => $arrPost, 'get' => $arrGet);
}
return $res;
}
/** Get all shortcode that have Dynamic Replace enabled */
function ajaxds_getAllDynamicReplace()
{
$sql = "SELECT shortcode_name FROM wp_dynamic_shortcode_settings WHERE use_dynamic_replace = '1'";
$res = ajaxds_doSql($sql, null, 'results');
return $res;
}