-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparsers.php
522 lines (476 loc) · 17.5 KB
/
parsers.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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<?php
// -------------------------------------------------------------------------
// Part of EventTools, a package for managing model railroad meeting information
//
// By Bob Jacobsen, [email protected], Copyright 2010, 2011
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
//
// Parse query strings into "where" strings
//
// First, a bunch of individual routines so
// you can control which queries are available
// on a particular page.
//
// Further down are standard queries for page types
//
// Each takes an existing "where" string, ands
// adds a specific limitation if it's present.
//
// Do first:
// parse_str($_SERVER["QUERY_STRING"], $args);
// tag=AA for clinic and misc event tags
function where_add_changed($args, $where=NULL) {
if (isset($args["changed"])) {
$r = " mark_changed != '' ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// tag=AA for clinic and misc event tags
function where_add_tag($args, $where=NULL) {
if (isset($args["tag"])) {
$r = " tag_name = \"".$args["tag"]."\"";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// date=n tours, clinics starting on July n
function where_add_date($args, $where=NULL) {
if (isset($args["date"])) {
$r = " start_date LIKE '2021-".$args["date"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// number=AA tours, events, clinic number
function where_add_number($args, $where=NULL) {
if (isset($args["number"])) {
$r = " number = '".$args["number"]."'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// id=n tours, events, clinic ID number
function where_add_id($args, $where=NULL) {
if (isset($args["id"])) {
$r = " id = ".$args["id"];
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// layoutid=n layout ID number
function where_add_layoutid($args, $where=NULL) {
if (isset($args["layoutid"])) {
$r = " layout_id = ".$args["layoutid"];
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// name=AA tours, events, clinic names
function where_add_name($args, $where=NULL) {
if (isset($args["name"])) {
$r = " name LIKE '%".$args["name"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// name=AA layoutname
function where_add_layoutname($args, $where=NULL) {
if (isset($args["layoutname"])) {
$r = " layout_name LIKE '%".$args["layoutname"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// layoutname=AA layoutname
function where_add_owner($args, $where=NULL) {
if (isset($args["owner"])) {
$r = " layout_owner_firstname LIKE '%".$args["owner"]."%' OR layout_owner_lastname LIKE '%".$args["owner"]."%' ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// access=n layouts or layout tours with accessibility better than n
function where_add_access($args, $where=NULL) {
if (isset($args["access"])) {
$r = " layout_accessibility LIKE '%".$args["access"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// presenter=AA clinics with presenter like AA
function where_add_presenter($args, $where=NULL) {
if (isset($args["presenter"])) {
$r = " clinic_presenter LIKE '%".$args["presenter"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// scale=AA layouts or layout tours with scale like AA
function where_add_scale($args, $where=NULL) {
if (isset($args["scale"])) {
$r = " CONCAT(CONCAT(\" \",layout_scale),\" \") REGEXP BINARY ' ".$args["scale"]." '";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// gauge=AA layouts or layout tours with scale like AA
function where_add_gauge($args, $where=NULL) {
if (isset($args["gauge"])) {
$r = " CONCAT(CONCAT(\" \",layout_gauge),\" \") REGEXP BINARY ' ".$args["gauge"]." '";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// prototype=AA layouts or layout tours with prototype like AA
function where_add_prototype($args, $where=NULL) {
if (isset($args["prototype"])) {
$r = " layout_prototype LIKE '%".$args["prototype"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// layout=AA layouts or layout tours with layout name like AA
function where_add_layout($args, $where=NULL) {
if (isset($args["layout"])) {
$r = " layout_name LIKE '%".$args["layout"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// match=AA for tours and events
// searches (most of) the text fields
// see next for checking layout fields
function where_add_match_event($args, $where=NULL) {
if (isset($args["match"])) {
$r = " ( ".
" name LIKE '%".urldecode($args["match"])."%' OR ".
" description LIKE '%".urldecode($args["match"])."%' ".
" ) ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// match=AA for layout tours
// searches (most of) the text fields
function where_add_match_layout_tour($args, $where=NULL) {
if (isset($args["match"])) {
$r = " ( ".
" name LIKE '%".urldecode($args["match"])."%' OR ".
" description LIKE '%".urldecode($args["match"])."%' OR ".
" layout_name LIKE '%".urldecode($args["match"])."%' OR ".
" layout_short_description LIKE '%".urldecode($args["match"])."%' OR ".
" layout_long_description LIKE '%".urldecode($args["match"])."%' OR ".
" layout_prototype LIKE '%".urldecode($args["match"])."%' OR ".
" layout_era LIKE '%".urldecode($args["match"])."%' OR ".
" layout_plan_type LIKE '%".urldecode($args["match"])."%' OR ".
" layout_ops_scheme LIKE '%".urldecode($args["match"])."%' OR ".
" layout_control LIKE '%".urldecode($args["match"])."%' OR ".
" layout_city LIKE '%".urldecode($args["match"])."%' OR ".
" layout_owner_firstname LIKE '%".urldecode($args["match"])."%' OR ".
" layout_owner_lastname LIKE '%".urldecode($args["match"])."%' ".
" ) ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// match=AA for layout
// searches (most of) the text fields
function where_add_match_layout($args, $where=NULL) {
if (isset($args["match"])) {
$r = " ( ".
" layout_name LIKE '%".urldecode($args["match"])."%' OR ".
" layout_short_description LIKE '%".urldecode($args["match"])."%' OR ".
" layout_long_description LIKE '%".urldecode($args["match"])."%' OR ".
" layout_prototype LIKE '%".urldecode($args["match"])."%' OR ".
" layout_era LIKE '%".urldecode($args["match"])."%' OR ".
" layout_plan_type LIKE '%".urldecode($args["match"])."%' OR ".
" layout_ops_scheme LIKE '%".urldecode($args["match"])."%' OR ".
" layout_control LIKE '%".urldecode($args["match"])."%' OR ".
" layout_city LIKE '%".urldecode($args["match"])."%' OR ".
" layout_owner_firstname LIKE '%".urldecode($args["match"])."%' OR ".
" layout_owner_lastname LIKE '%".urldecode($args["match"])."%' ".
" ) ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// clinic status = works on the status number (show greater or equal)
// and over-rides the global "all less than 70" default
function where_add_clinic_status($args, $where=NULL) {
global $event_tools_show_min_value;
if (array_key_exists('status', $args)) {
$event_tools_show_min_value = (int) $args["status"];
$r = " status_code >= ".$args["status"];
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
$r = " status_code < 70 ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
}
}
// event status = works on the status number (show greater)
// and over-rides the global
function where_add_status($args, $where=NULL) {
global $event_tools_show_min_value;
if (array_key_exists('status', $args)) {
$event_tools_show_min_value = (int) $args["status"];
$r = " status_code >= ".$args["status"];
if ($where != NULL) return $where." AND ".$r;
else return $r;
}
return $where;
}
// layout status = works on the status number (show greater)
// and over-rides the global
function where_add_layout_status($args, $where=NULL) {
global $event_tools_show_min_value;
if (array_key_exists('status', $args)) {
$event_tools_show_min_value = (int) $args["status"];
$r = " layout_status_code >= ".$args["status"];
if ($where != NULL) return $where." AND ".$r;
else return $r;
}
return $where;
}
// tour type - limits general tours to "G" or "P" numbers
function where_add_general_tour_type($args, $where=NULL) {
global $event_tools_show_min_value;
if (array_key_exists('type', $args)) {
$r = " number LIKE '%".$args["type"]."%' ";
if ($where != NULL) return $where." AND ".$r;
else return $r;
}
return $where;
}
// control=AA layouts or layout tours with control name like AA
function where_add_control($args, $where=NULL) {
if (isset($args["control"])) {
$r = " layout_control LIKE '%".$args["control"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// era=AA layouts or layout tours with era name like AA
function where_add_era($args, $where=NULL) {
if (isset($args["era"])) {
$r = " layout_era LIKE '%".$args["era"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// class=AA layouts or layout tours with era name like AA
function where_add_class($args, $where=NULL) {
if (isset($args["class"])) {
$r = " layout_class LIKE '%".$args["class"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// theme=AA layouts or layout tours with era name like AA
function where_add_theme($args, $where=NULL) {
if (isset($args["theme"])) {
$r = " layout_theme LIKE '%".$args["theme"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// scenery=AA layouts or layout tours with scenery like AA
function where_add_scenery($args, $where=NULL) {
if (isset($args["scenery"])) {
$r = " layout_scenery LIKE '%".$args["scenery"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// size=AA layouts or layout tours with size like AA
function where_add_size($args, $where=NULL) {
if (isset($args["size"])) {
$r = " layout_size LIKE '%".$args["size"]."%'";
if ($where != NULL) return $where." AND ".$r;
else return $r;
} else {
return $where;
}
}
// where= Use last, if you want people to be able to provide
// their own 'where' string
function where_add_where($args, $where=NULL) {
if (isset($args["where"])) {
return urldecode($args["where"]);
} else {
return $where;
}
}
// -------------------------------------------------------------------------
//
// Standard queries for page types.
//
// These do the argument parsing for you
function parse_clinic_query() {
parse_str($_SERVER["QUERY_STRING"], $args);
$where = where_add_clinic_status($args, NULL);
$where = where_add_changed($args, $where);
$where = where_add_tag($args, $where);
$where = where_add_number($args, $where);
$where = where_add_id($args, $where);
$where = where_add_name($args, $where);
$where = where_add_presenter($args, $where);
$where = where_add_date($args, $where);
$where = where_add_match_event($args, $where);
$where = where_add_where($args, $where);
//echo $where;
return $where;
}
function parse_misc_event_query() {
parse_str($_SERVER["QUERY_STRING"], $args);
$where = where_add_status($args, NULL);
$where = where_add_changed($args, $where);
$where = where_add_tag($args, $where);
$where = where_add_number($args, $where);
$where = where_add_id($args, $where);
$where = where_add_name($args, $where);
$where = where_add_date($args, $where);
$where = where_add_match_event($args, $where);
$where = where_add_where($args, $where);
//echo $where;
return $where;
}
function parse_general_tour_query() {
parse_str($_SERVER["QUERY_STRING"], $args);
$where = where_add_status($args, NULL);
$where = where_add_changed($args, $where);
$where = where_add_number($args, $where);
$where = where_add_id($args, $where);
$where = where_add_name($args, $where);
$where = where_add_date($args, $where);
$where = where_add_match_event($args, $where);
$where = where_add_where($args, $where);
$where = where_add_general_tour_type($args, $where);
//echo $where;
return $where;
}
function parse_layout_tour_query() {
parse_str($_SERVER["QUERY_STRING"], $args);
$where = where_add_status($args, NULL);
$where = where_add_changed($args, $where);
$where = where_add_number($args, $where);
$where = where_add_id($args, $where);
$where = where_add_layoutid($args, $where);
$where = where_add_name($args, $where);
$where = where_add_scale($args, $where);
$where = where_add_prototype($args, $where);
$where = where_add_layout($args, $where);
$where = where_add_date($args, $where);
$where = where_add_access($args, $where);
$where = where_add_match_layout_tour($args, $where);
$where = where_add_where($args, $where);
//echo $where;
return $where;
}
function parse_layout_query() {
parse_str($_SERVER["QUERY_STRING"], $args);
$where = where_add_layout_status($args, NULL);
$where = where_add_changed($args, $where);
$where = where_add_number($args, $where);
$where = where_add_id($args, $where);
$where = where_add_name($args, $where);
$where = where_add_layoutname($args, $where);
$where = where_add_layoutid($args, $where);
$where = where_add_scale($args, $where);
$where = where_add_prototype($args, $where);
$where = where_add_layout($args, $where);
$where = where_add_date($args, $where);
$where = where_add_access($args, $where);
$where = where_add_match_layout($args, $where);
$where = where_add_owner($args, $where);
$where = where_add_control($args, $where);
$where = where_add_gauge($args, $where);
$where = where_add_era($args, $where);
$where = where_add_class($args, $where);
$where = where_add_theme($args, $where);
$where = where_add_scenery($args, $where);
$where = where_add_size($args, $where);
$where = where_add_where($args, $where);
//echo $where;
return $where;
}
function parse_order() {
parse_str($_SERVER["QUERY_STRING"], $args);
if (isset($args["order"])) {
if ($args["order"] == "status") return " status_code ";
if ($args["order"] == "lstatus") return " layout_status_code ";
if ($args["order"] == "name") return " name ";
if ($args["order"] == "number") return " number ";
if ($args["order"] == "date") return " start_date ";
if ($args["order"] == "time") return " start_date ";
if ($args["order"] == "price") return " tour_price ";
if ($args["order"] == "presenter") return " clinic_presenter ";
if ($args["order"] == "clinic_room") return " clinic_location_code ";
if ($args["order"] == "misc_room") return " misc_location_code ";
if ($args["order"] == "city") return " layout_city ";
if ($args["order"] == "owner") return " layout_owner_firstname, layout_owner_lastname ";
if ($args["order"] == "lastname") return " layout_owner_lastname ";
if ($args["order"] == "layoutname") return " layout_name ";
if ($args["order"] == "create") return " customers_create_date ";
if ($args["order"] == "update") return " customers_updated_date ";
if ($args["order"] == "clastname") return " customers_lastname ";
if ($args["order"] == "cfirstname") return " customers_firstname ";
if ($args["order"] == "email") return " customers_email_address ";
if ($args["order"] == "category") return " opsreq_priority DESC ";
if ($args["order"] == "telephone") return " customers_telephone DESC ";
if ($args["order"] == "cellphone") return " customers_cellphone DESC ";
return NULL;
} else {
return NULL;
}
}
?>