forked from makerling/osm_website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathviewUtils.php
514 lines (442 loc) · 14.9 KB
/
viewUtils.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
<?php
/******************************************************************************/
/* Ottoman Turkish project - view documents in multiple columns */
/******************************************************************************/
/* Developed by: Steve Bagwell */
/* Much of this code was borrowed from view.php and modified */
/* Nov. 2016 */
/******************************************************************************/
/**
*
* @param resource (msql_query results)
* @param string $bibleKey
* @param string $bookKey
*
* @return stdClass with the following attributes ...
* ->bibleTitleId, a string with the id of a sql row
* ->bibleTitleOptions, a string with html options for a select
* ->bookId, a string with the id of a sql row
* ->bookNameOptions, a string with html options for a select
* ->chapterOptions, a string with html options for a select
* ->notnData, a stdClass which, in turn, has the folloing attributes ...
* ->notations
* ->paragraphs
* ->quotes
* ->discussions
* ->recommendations
* ->detail
* ->chapterOptions
* ->jsAnnotations
* ->jsCoordinates
*
**/
function getViewData($bibleTitleSqlResults, $bibleKey, $bookKey) {
$bibleTitle = getPostSetCookie($bibleKey, $_POST);
$bookName = getPostSetCookie($bookKey, $_POST);
if ( ! $bibleTitle and $_COOKIE[$bibleKey]) {
$bibleTitle = $_COOKIE[$bibleKey];
$bookName = $_COOKIE[$bookKey];
}
list($bibleTitle, $bibleTitleOptions) = getBibleTitleSelect(
$bibleTitleSqlResults, $bibleTitle);
$bibleId = getBibleId($bibleTitle);
list($bookName, $bookNameOptions) = getBookNameSelect($bibleTitle, $bookName);
$bookId = getBookId($bibleId, $bookName);
$notnData = getNotationData($bibleId, $bookId);
$chapterOptions = '';
if ($notnData !== NULL) {
$chapterOptions = $notnData->chapterOptions;
}
$viewData = new stdClass();
$viewData->notnData = $notnData;
$viewData->bibleTitleId = $bibleId;
$viewData->bibleTitle = $bibleTitle;
$viewData->bibleTitleOptions = $bibleTitleOptions;
$viewData->bookId = $bookId;
$viewData->bookNameOptions = $bookNameOptions;
$viewData->chapterOptions = $chapterOptions;
return $viewData;
}
function getViewPHPData($bibleTitleSqlResults, $bibleKey, $bookKey) {
$bibleId = $_GET['bibleTitleId'];
$bookId = $_GET['bookId'];
if ( empty($bibleId) || empty($bookId)) {
return getViewData($bibleTitleSqlResults, $bibleKey, $bookKey);
}
$bibleTitle = getBibleTitleFromId($bibleId);
if (empty($bibleTitle)) {
return getViewData($bibleTitleSqlResults, $bibleKey, $bookKey);
}
$notnData = getNotationData($bibleId, $bookId);
$chapterOptions = '';
if ($notnData !== NULL) {
$chapterOptions = $notnData->chapterOptions;
}
$viewData = new stdClass();
$viewData->notnData = $notnData;
$viewData->bibleTitleId = $bibleId;
$viewData->bibleTitle = $bibleTitle;
$viewData->bibleTitleOptions = "";
$viewData->bookId = $bookId;
$viewData->bookNameOptions = "";
$viewData->chapterOptions = "";
return $viewData;
}
/**
*
* @param string $dataKey
* @param array $post
*
* @return string
*
**/
function getDataFromPost($dataKey, $post) {
$result = '';
if (isset($post[$dataKey])) {
$result = $post[$dataKey];
}
return $result;
}
/**
*
* @param string $dataKey
* @param array $post
*
* @return string
*
**/
function getPostSetCookie($dataKey, $post) {
$result = '';
if (isset($post[$dataKey])) {
$result = $post[$dataKey];
setcookie($dataKey, $result);
}
return $result;
}
/**
*
* @param string $isoCode
*
* @return resource: mysql_query results
*
**/
function getBibleTitleSqlResults($isoCode) {
$query =
'SELECT * FROM `bibleTitles` ' .
'WHERE `code` = "' . $isoCode . '" ' .
'ORDER BY `title`';
$result = mysql_query($query) or die (
'<pre>Error 201611250928: ' . $query.mysql_error() . '</pre>');
return $result;
}
/**
*
* @param string $bibleTitle
*
* @return resource, mysql_query results
*
**/
function getBibleFromDB($bibleTitle) {
$query =
'SELECT * FROM `bibleTitles` ' .
'WHERE `title` = "' . mysql_real_escape_string($bibleTitle) .
'" LIMIT 1';
$result = mysql_query($query) or die(
'<pre>Error 201611261008' . $query.mysql_error() . '</pre>');
return $result;
}
/**
*
* @param string $bibleTitle
*
* @return string
*
**/
function getBibleId($bibleTitle) {
$bibleId = '';
if ($bibleTitle) {
$bibleFromDB = getBibleFromDB($bibleTitle);
$bibleRow = mysql_fetch_array($bibleFromDB);
$bibleId = $bibleRow['id'];
}
return $bibleId;
}
/**
*
* @param resource, mysql_query results
* @param string
*
* @return array with ...
* - a string with the bibleTitle (either the original one or the default one)
* - a string for html for all the select options for Bible Titles
*
**/
function getBibleTitleSelect($bibleTitleSqlResults, $bibleTitle) {
$bibleTitleOptions = '';
mysql_data_seek($bibleTitleSqlResults, 0);
while ($bibleRow = mysql_fetch_array($bibleTitleSqlResults)) {
$selected = '';
if($bibleRow['title'] == $bibleTitle) {
$selected = 'selected';
}
if ( ! $bibleTitle and $bibleRow['displayDefault']==1) {
$selected = 'selected';
$bibleTitle = $bibleRow['title'];
$_POST['bibleTitle'] = $bibleRow['title'];
}
$bibleTitleOptions .= '<option value="' .
$bibleRow['title'] . '" ' . $selected . '>' .
$bibleRow['title'] . '</option>';
}
mysql_data_seek($bibleTitleSqlResults, 0);
return array($bibleTitle, $bibleTitleOptions);
}
/**
*
* @param string $bibleTitle
*
* @return resource, mysql_query results
*
**/
function getBookNameSqlResults($bibleTitle) {
$bibleQuery =
'SELECT * FROM `bibleTitles` ' .
'WHERE `title` = "' . $bibleTitle . '" LIMIT 1';
$bibleResult = mysql_query($bibleQuery) or die (
'<pre> Error 201611250930: ' . $bibleQuery.mysql_error() . '</pre>');
$myrow=mysql_fetch_array($bibleResult);
$bibleTitleId = $myrow['id'];
$bookQuery =
'SELECT * FROM `books` ' .
'WHERE `bibleTitleId` = "' . $bibleTitleId . '" ' .
'ORDER BY `displayOrder`, `name`';
$result = mysql_query($bookQuery) or die (
'<pre> Error 201611250932: ' . $bookQuery.mysql_error() . '</pre>');
return $result;
}
/**
*
* @param string $bibleId
* @param string $bookName
*
* @return resource, mysql_query results
*
**/
function getBookFromDB($bibleId, $bookName) {
$query =
'SELECT * FROM `books` ' .
'WHERE `name` = "' . mysql_real_escape_string($bookName) .
'" AND `bibleTitleId` = "' . $bibleId .
'" LIMIT 1';
$result = mysql_query($query) or die(
'<pre>Error 201611261000: ' . $query.mysql_error() . '</pre>');
return $result;
}
/**
*
* @param string $bibleId
* @param string $bookName
*
* @return string for an 'id' of a book
*
**/
function getBookId($bibleId, $bookName) {
$bookId = '';
if ($bibleId && $bookName) {
$bookFromDB = getBookFromDB($bibleId, $bookName);
$bookRow = mysql_fetch_array($bookFromDB);
$bookId = $bookRow['id'];
}
return $bookId;
}
/**
*
* @param string $bibleTitle
* @param string $bookName
*
* @return array with ...
* - a string of the bookName (either the original one or the default)
* - a string with the html select options for the books of that bible
*
**/
function getBookNameSelect($bibleTitle, $bookName) {
$bookNameOptions = '';
if ($bibleTitle) {
$bookNameResults = getBookNameSqlResults($bibleTitle);
while ($bookRow = mysql_fetch_array($bookNameResults)) {
$selected = '';
if ($bookRow['name'] == $bookName) {
$selected = 'selected';
}
if ( ! $bookName and $bookRow['displayDefault']==1) {
$selected = 'selected';
$bookName = $bookRow['name'];
$_POST['bookName'] = $bookRow['name'];
}
$bookNameOptions .= '<option value="' .
$bookRow['name'] . '" ' . $selected . '>' .
$bookRow['name'] . '</option>';
}
}
return array($bookName, $bookNameOptions);
}
/**
*
* @param string $bibleId
* @param string $bookId
*
* @return resource, mysql_query results
*
**/
function getNotationSqlResults($bibleId, $bookId) {
$query =
'SELECT * FROM `notations` ' .
'WHERE `bibleTitleId` = "' . $bibleId . '" '.
'AND `bookId` = "' . $bookId . '" ' .
'AND `inactive` != "Y" ORDER BY `key`';
$result = mysql_query($query) or die(
'<pre> Error 201611260850' . $query.mysql_error() . '</pre>');
return $result;
}
/**
*
* @param string $bibleId
*
* @return string
*
**/
function getBibleTitleFromId($bibleId) {
$query =
'SELECT `title` FROM `bibleTitles` ' .
'WHERE `id` = ' . $bibleId . ' limit 1';
$sqlResults = mysql_query($query) or die (
'<pre>Error 201811220928: ' . $query.mysql_error() . '</pre>');
$results = mysql_fetch_array($sqlResults);
if (! empty($results)) {
return $results[0];
}
return '';
}
/**
*
* @param string $bibleId
* @param string $bookId
*
* @return stdClass, which has the following attributes
* ->notations
* ->paragraphs
* ->quotes
* ->discussions
* ->recommendations
* ->detail
* ->chapterOptions
* ->jsAnnotations
* ->jsCoordinates
*
**/
function getNotationData($bibleId, $bookId) {
// if either param is falsey, return NULL
if ( ! ($bibleId && $bookId)) {
return NULL;
}
$notationSqlResults = getNotationSqlResults($bibleId, $bookId);
$notnData = new stdClass();
while($notnRow=mysql_fetch_array($notationSqlResults)) {
if ($notnRow['coordinates'] /*and $notnRow['quote']*/) {
$js_coordinates .= "\"p" . $notnRow['key'] . "\":\"" .
$notnRow['coordinates'] . "\",";
}
$notations = unserialize($notnRow['notation']);
$paragraphs = unserialize($notnRow['paragraph']);
$quotes = unserialize($notnRow['quote']);
$discussions = unserialize($notnRow['discussion']);
$recommendations = unserialize($notnRow['recommendation']);
$dnotation = '';
if (isset($notations[0]))
{
$i = 0;
foreach ($notations as $notation) {
if ($paragraphs[$i]=='Y') {
if ($i==0) {
$dnotation = "<p />".$dnotation;
} else {
$notation = "<div class=\"paragraph\"></div> " .
$notation;
}
}
list($book, $chapter, $verse) = explode(".", $notnRow['key']);
$chapter = ltrim($chapter, '0');
$verse = ltrim($verse, '0');
if ($chapter and $verse) {
if ($chapter != $sav_chapter) {
$dnotation .= "\r\n<div id=\"chapter_" . $chapter .
"\" class=\"chapter\">" . $chapter .
"</div>\r\n";
$chapterOptions .= "<option value=\"chapter_" .
$chapter . "\">" . $chapter . "</option>";
}
if ($verse != $sav_verse) {
$dnotation .= "\r\n<nobr><div id=\"verse_p" .
$notnRow['key'] . "\" class=\"verse\">" .
$verse."</div>\r\n</nobr>";
}
$sav_chapter = $chapter;
$sav_verse = $verse;
}
$dnotation .= $notation." ";
$i++;
}
}
// normalize data to make matching work better
$dnotation = Normalizer::normalize($dnotation, Normalizer::FORM_KC);
$s = array("\"","\n");
$r = array("\\\"","<br \>");
// quotes
if (isset($quotes[0])) {
$limit = 1;
$ii = 0;
foreach($quotes as $quote) {
// underline single instance of quote field
$quote = Normalizer::normalize($quote, Normalizer::FORM_KC);
// ensure no leftover initial spaces keep this link from being included
$quote = ltrim($quote);
if ($quote != "") {
$reg_from = '/' . preg_quote($quote, '/') . '/';
$dnotation = preg_replace($reg_from,
"<div id=\"quote" . $notnRow['key'] . "_" . $ii .
"\" class=\"quote\" onclick=\"setAnnotations('" .
$notnRow['key'] . "_" . $ii .
"')\"><a href=\"#\">" .
$quote."</a></div>",
$dnotation, 1);
$quotes[$quote] = $notnRow['key'] . "_" . $ii;
$js_annotations .= "\"" . $notnRow['key'] . "_" . $ii . "\":\"" .
str_replace($s, $r, $quote) . "^" .
str_replace($s, $r, $discussions[$ii]) . "^" .
str_replace($s, $r, $recommendations[$ii]) . "\",";
}
$ii++;
}
}
$specialChrs = array("î","ʿ");
# add a narrow space between an f and an i that has a circumflex accent
foreach ($specialChrs as $nextChr) {
$dnotation = str_replace('f' . $nextChr,
'<nobr class="nudge_right">f</nobr>' .
$nextChr,
$dnotation);
}
$detail .= "\r\n<span id=\"notation_p" . $notnRow['key'] .
"\" class=\"notation\">" . $dnotation . "</span>\r\n";
}
$notnData->notations = $notations;
$notnData->paragraphs = $paragraphs;
$notnData->quotes = $quotes;
$notnData->discussions = $discussions;
$notnData->recommendations = $recommendations;
$notnData->detail = $detail;
$notnData->chapterOptions = $chapterOptions;
$notnData->jsAnnotations = rtrim($js_annotations, ",");
$notnData->jsCoordinates = rtrim($js_coordinates, ",");
return $notnData;
}