forked from FiftyNine/scpper-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScpCrawler.php
2169 lines (2051 loc) · 83.2 KB
/
ScpCrawler.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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
require_once "WikidotCrawler.php";
require_once "utils.php";
// Static utility class for saving categories from DB
class ScpCategoryDbUtils
{
/*** Constants ***/
// Name of table
const VIEW = 'categories';
// Text of SQL requests
const INSERT_TEXT = 'INSERT INTO categories (SiteId, WikidotId, Name) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE Name = VALUES(Name);';
/*** Fields ***/
// Last connection used to access DB with this class
private static $lastLink = null;
// Prepared statements for interacting with DB
private static $insertStmnt = null;
/*** Private ***/
// Check if supplied connection is the same as the last time, reset statements if it's not
private static function needStatements(KeepAliveMysqli $link)
{
if (self::$lastLink !== $link->getLink()) {
self::clear();
self::$lastLink = $link->getLink();
}
}
// Close prepared statement and set them to null
private static function closeStatement(&$statement)
{
if ($statement) {
$statement->close();
}
$statement = null;
}
// Close and null all statements
private static function clear() {
self::closeStatement(self::$insertStmnt);
}
// Insert new record into votes table in DB
public static function insert(KeepAliveMysqli $link, $siteId, $categoryId, $name, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$insertStmnt) {
self::$insertStmnt = $link->prepare(self::INSERT_TEXT);
if (!self::$insertStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare INSERT statement for vote\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$insertStmnt->bind_param('dds', $siteId, $categoryId, $name);
$res = self::$insertStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT category %s of site %d\nMysqli error: \"%s\"",
array($name, $siteId, self::$insertStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT category %s of site %d\nMysqli error: \"%s\"",
array($name, $siteId, $e->getMessage())
);
}
return $res;
}
}
// Static utility class for saving/loading votes from DB
class ScpVoteDbUtils
{
/*** Constants ***/
// Name of view for votes
const VIEW = 'view_votes';
// Names of fields in view
const VIEW_ID = '__Id';
const VIEW_PAGEID = 'PageId';
const VIEW_USERID = 'UserId';
const VIEW_VALUE = 'Value';
// Text of SQL requests
const SELECT_TEXT = 'SELECT UserId, Value FROM view_votes WHERE PageId = ?';
const INSERT_TEXT = 'INSERT INTO votes (PageId, UserId, Value) VALUES (?, ?, ?) ON DUPLICATE KEY UPDATE Value = VALUES(Value);';
const DELETE_TEXT = 'DELETE FROM votes WHERE PageId = ? AND UserId = ?';
/*** Fields ***/
// Last connection used to access DB with this class
private static $lastLink = null;
// Prepared statements for interacting with DB
private static $selectStmnt = null;
private static $insertStmnt = null;
private static $deleteStmnt = null;
/*** Private ***/
// Check if supplied connection is the same as the last time, reset statements if it's not
private static function needStatements(KeepAliveMysqli $link)
{
if (self::$lastLink !== $link->getLink()) {
self::clear();
self::$lastLink = $link->getLink();
}
}
// Close prepared statement and set them to null
private static function closeStatement(&$statement)
{
if ($statement) {
$statement->close();
}
$statement = null;
}
// Close and null all statements
private static function clear() {
self::closeStatement(self::$selectStmnt);
self::closeStatement(self::$insertStmnt);
self::closeStatement(self::$deleteStmnt);
}
// Select all votes from DB by page wikidot id and return them in $votes as (userId -> vote). Returns true/false
public static function select(KeepAliveMysqli $link, $pageId, &$votes, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectStmnt) {
self::$selectStmnt = $link->prepare(self::SELECT_TEXT);
if (!self::$selectStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT statement for votes\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$selectStmnt->bind_param('d', $pageId);
if (self::$selectStmnt->execute()) {
self::$selectStmnt->bind_result($userId, $vote);
while (self::$selectStmnt->fetch()) {
$votes[$userId] = $vote;
}
self::$selectStmnt->reset();
$res = true;
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT votes of pageId %d\nMysqli error: \"%s\"",
array($pageId, self::$selectStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT votes of pageId %d\nError: \"%s\"",
array($pageId, $e->getMessage())
);
}
return $res;
}
// Insert new record into votes table in DB
public static function insert(KeepAliveMysqli $link, $pageId, $userId, $value, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$insertStmnt) {
self::$insertStmnt = $link->prepare(self::INSERT_TEXT);
if (!self::$insertStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare INSERT statement for vote\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$insertStmnt->bind_param('ddd', $pageId, $userId, $value);
$res = self::$insertStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT vote of userId %d on pageId %d\nMysqli error: \"%s\"",
array($userId, $pageId, self::$insertStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT vote of userId %d on pageId %d\nError: \"%s\"",
array($userId, $pageId, $e->getMessage())
);
}
return $res;
}
// Delete vote from table in DB by page id and user id
public static function delete(KeepAliveMysqli $link, $pageId, $userId, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$deleteStmnt) {
self::$deleteStmnt = $link->prepare(self::DELETE_TEXT);
if (!self::$deleteStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare DELETE statement for vote\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$deleteStmnt->bind_param('dd', $pageId, $userId);
$res = self::$deleteStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to DELETE vote by userId %d on pageId %d\nMysqli error: \"%s\"",
array($userId, $pageId, self::$deleteStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to DELETE vote by userId %d on pageId %d\nError: \"%s\"",
array($userId, $pageId, $e->getMessage())
);
}
return $res;
}
}
// Static utility class for saving/loading tags from DB
class ScpTagDbUtils
{
/*** Constants ***/
// Name of view for tags
const VIEW = 'view_tags';
// Names of fields in view
const VIEW_ID = '__Id';
const VIEW_PAGEID = 'PageId';
const VIEW_TAG = 'Tag';
// Text of SQL requests
const SELECT_TEXT = 'SELECT Tag FROM view_tags WHERE PageId = ?';
const INSERT_TEXT = 'INSERT INTO tags (PageId, Tag) VALUES (?, ?)';
const DELETE_TEXT = 'DELETE FROM tags WHERE PageId = ?';
/*** Fields ***/
// Last connection used to access DB with this class
private static $lastLink = null;
// Prepared statements for interacting with DB
private static $selectStmnt = null;
private static $insertStmnt = null;
private static $deleteStmnt = null;
/*** Private ***/
// Check if supplied connection is the same as the last time, reset statements if it's not
private static function needStatements(KeepAliveMysqli $link)
{
if (self::$lastLink !== $link->getLink()) {
self::clear();
self::$lastLink = $link->getLink();
}
}
// Close prepared statement and set them to null
private static function closeStatement(&$statement)
{
if ($statement) {
$statement->close();
}
$statement = null;
}
// Close and null all statements
private static function clear() {
self::closeStatement(self::$selectStmnt);
self::closeStatement(self::$insertStmnt);
self::closeStatement(self::$deleteStmnt);
}
// Select all tags from DB by page wikidot id and return them in $tags. Returns true/false
public static function select(KeepAliveMysqli $link, $pageId, &$tags, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectStmnt) {
self::$selectStmnt = $link->prepare(self::SELECT_TEXT);
if (!self::$selectStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT statement for tags\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$selectStmnt->bind_param('d', $pageId);
if (self::$selectStmnt->execute()) {
self::$selectStmnt->bind_result($tag);
while (self::$selectStmnt->fetch()) {
$tags[] = $tag;
}
self::$selectStmnt->reset();
$res = true;
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT tags of pageId %d\nMysqli error: \"%s\"",
array($pageId, self::$selectStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT tags of pageId %d\nError: \"%s\"",
array($pageId, $e->getMessage())
);
}
return $res;
}
// Insert new record into tags table in DB
public static function insert(KeepAliveMysqli $link, $pageId, $tag, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$insertStmnt) {
self::$insertStmnt = $link->prepare(self::INSERT_TEXT);
if (!self::$insertStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare INSERT statement for tag\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$insertStmnt->bind_param('ds', $pageId, $tag);
$res = self::$insertStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT tag \"%s\" of pageId %d\nMysqli error: \"%s\"",
array($tag, $pageId, self::$insertStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT tag \"%s\" of pageId %d\nError: \"%s\"",
array($tag, $pageId, $e->getMessage())
);
}
return $res;
}
// Delete records from tags table in DB by page id
public static function delete(KeepAliveMysqli $link, $pageId, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$deleteStmnt) {
self::$deleteStmnt = $link->prepare(self::DELETE_TEXT);
if (!self::$deleteStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare DELETE statement for tags\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$deleteStmnt->bind_param('d', $pageId);
$res = self::$deleteStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to DELETE tag \"%s\" of pageId %d\nMysqli error: \"%s\"",
array($tag, $pageId, self::$deleteStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to DELETE tag \"%s\" of pageId %d\nError: \"%s\"",
array($tag, $pageId, $e->getMessage())
);
}
return $res;
}
}
// Static utility class for saving/loading revisions from DB
class ScpRevisionDbUtils
{
/*** Constants ***/
// Name of view for revisions
const VIEW = 'view_revisions';
// Names of fields in view
const VIEW_ID = '__Id';
const VIEW_REVISIONID = 'RevisionId';
const VIEW_REVISION_INDEX = 'RevisionIndex';
const VIEW_PAGEID = 'PageId';
const VIEW_PAGE_NAME = 'PageName';
const VIEW_PAGE_TITLE = 'PageTitle';
const VIEW_USER_ID = 'UserId';
const VIEW_USER_NAME = 'UserName';
const VIEW_USER_DELETED = 'UserDeleted';
const VIEW_DATETIME = 'DateTime';
const VIEW_COMMENTS = 'Comments';
// Text of SQL requests
const SELECT_TEXT = 'SELECT __Id, RevisionId, PageId, RevisionIndex, UserId, UNIX_TIMESTAMP(DateTime), Comments FROM view_revisions WHERE RevisionId = ?';
const SELECT_ID_TEXT = 'SELECT __Id FROM view_revisions WHERE RevisionId = ?';
const INSERT_TEXT = 'INSERT INTO revisions (WikidotId, PageId, RevisionIndex, UserId, DateTime, Comments) VALUES (?, ?, ?, ?, FROM_UNIXTIME(?), ?)';
/*** Fields ***/
// Last connection used to access DB with this class
private static $lastLink = null;
// Prepared statements for interacting with DB
private static $selectStmnt = null;
private static $selectIdStmnt = null;
private static $insertStmnt = null;
/*** Private ***/
// Check if supplied connection is the same as the last time, reset statements if it's not
private static function needStatements(KeepAliveMysqli $link)
{
if (self::$lastLink !== $link->getLink()) {
self::clear();
self::$lastLink = $link->getLink();
}
}
// Close prepared statement and set them to null
private static function closeStatement(&$statement)
{
if ($statement) {
$statement->close();
}
$statement = null;
}
// Close and null all statements
private static function clear() {
self::closeStatement(self::$selectStmnt);
self::closeStatement(self::$selectIdStmnt);
self::closeStatement(self::$insertStmnt);
}
// Select revision data from DB by revision wikidot id and return it as associative array
public static function select(KeepAliveMysqli $link, ScpRevision $revision, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectStmnt) {
self::$selectStmnt = $link->prepare(self::SELECT_TEXT);
if (!self::$selectStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT statement for revisions\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$revId = $revision->getId();
self::$selectStmnt->bind_param('d', $revId);
if (self::$selectStmnt->execute()) {
if (method_exists(self::$selectStmnt, 'get_result')) {
$dataset = self::$selectStmnt->get_result();
$res = $dataset->fetch_assoc();
} else {
$dataset = iimysqli_stmt_get_result(self::$selectStmnt);
$res = iimysqli_result_fetch_array($dataset);
}
self::$selectStmnt->reset();
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT from DB revision #%d (id=%d) of pageId %d\nMysqli error: \"%s\"",
array($revision->getIndex(), $revision->getId(), $revision->getPageId(), self::$selectStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT from DB revision #%d (id=%d) of pageId %d\nError: \"%s\"",
array($revision->getIndex(), $revision->getId(), $revision->getPageId(), $e->getMessage())
);
}
return $res;
}
// Select revision dbId from DB by revision wikidot id and return it
public static function selectId(KeepAliveMysqli $link, ScpRevision $revision, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectIdStmnt) {
self::$selectIdStmnt = $link->prepare(self::SELECT_ID_TEXT);
if (!self::$selectIdStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT ID statement for revision\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$revId = $revision->getId();
self::$selectIdStmnt->bind_param('d', $revId);
if (self::$selectIdStmnt->execute()) {
self::$selectIdStmnt->bind_result($res);
self::$selectIdStmnt->fetch();
self::$selectIdStmnt->reset();
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT ID from DB revision #%d (id=%d) of pageId %d\nMysqli error: \"%s\"",
array($revision->getIndex(), $revision->getId(), $revision->getPageId(), self::$selectIdStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT ID from DB revision #%d (id=%d) of pageId %d\nError: \"%s\"",
array($revision->getIndex(), $revision->getId(), $revision->getPageId(), $e->getMessage())
);
}
return $res;
}
// Insert new record into revisions table in DB
public static function insert(KeepAliveMysqli $link, ScpRevision $revision, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$insertStmnt) {
self::$insertStmnt = $link->prepare(self::INSERT_TEXT);
if (!self::$insertStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare INSERT statement for revision\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$arObj = (array)$revision;
$arObj['userId'] = $revision->getUserId();
$arObj['timestamp'] = $revision->getDateTime()->getTimestamp();
self::$insertStmnt->bind_param(
'ddddds',
$arObj["\0*\0revisionId"],
$arObj["\0*\0pageId"],
$arObj["\0*\0index"],
$arObj["userId"],
$arObj["timestamp"],
$arObj["\0*\0comments"]
);
$res = self::$insertStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT into DB revision #%d (id=%d) of pageId %d\nMysqli error: \"%s\"",
array($revision->getIndex(), $revision->getId(), $revision->getPageId(), self::$insertStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT into DB revision #%d (id=%d) of pageId %d\nError: \"%s\"",
array($revision->getIndex(), $revision->getId(), $revision->getPageId(), $e->getMessage())
);
}
return $res;
}
}
// Static utility class for saving/loading pages from DB
class ScpPageDbUtils
{
/*** Constants ***/
// Name of view for pages
const VIEW = 'view_pages';
// Names of fields in view
const VIEW_ID = '__Id';
const VIEW_SITEID = 'SiteId';
const VIEW_PAGEID = 'PageId';
const VIEW_CATEGORYID = 'CategoryId';
const VIEW_SITE_NAME = 'SiteName';
const VIEW_PAGE_NAME = 'PageName';
const VIEW_TITLE = 'Title';
const VIEW_SOURCE = 'Source';
const VIEW_ALT_TITLE = 'AltTitle';
// Text of SQL requests
const SELECT_TEXT = 'SELECT __Id, SiteId, SiteName, PageName, Title, AltTitle, CategoryId, Source FROM view_pages WHERE PageId = ?';
const SELECT_ID_TEXT = 'SELECT __Id FROM view_pages_all WHERE PageId = ?';
const INSERT_TEXT = 'INSERT INTO pages (SiteId, WikidotId, CategoryId, Name, Title, AltTitle, Source) VALUES (?, ?, ?, ?, ?, ?, ?)';
const UPDATE_TEXT = 'UPDATE pages SET CategoryId = ?, Name = ?, Title = ?, AltTitle = ?, Source = COALESCE(?, Source), Deleted = 0 WHERE WikidotId = ?';
// const DELETE_TEXT = 'DELETE FROM pages WHERE WikidotId = ?';
// Now we store deleted pages and only mark them as deleted
const DELETE_TEXT = 'UPDATE pages SET Deleted = 1 WHERE WikidotId = ?';
/*** Fields ***/
// Last connection used to access DB with this class
private static $lastLink = null;
// Prepared statements for interacting with DB
private static $selectStmnt = null;
private static $selectIdStmnt = null;
private static $insertStmnt = null;
private static $updateStmnt = null;
private static $deleteStmnt = null;
/*** Private ***/
// Check if supplied connection is the same as the last time, reset statements if it's not
private static function needStatements(KeepAliveMysqli $link)
{
if (self::$lastLink !== $link->getLink()) {
self::clear();
self::$lastLink = $link->getLink();
}
}
// Close prepared statement and set them to null
private static function closeStatement(&$statement)
{
if ($statement) {
$statement->close();
}
$statement = null;
}
// Close and null all statements
private static function clear() {
self::closeStatement(self::$selectStmnt);
self::closeStatement(self::$selectIdStmnt);
self::closeStatement(self::$insertStmnt);
self::closeStatement(self::$updateStmnt);
self::closeStatement(self::$deleteStmnt);
}
// Select page data from DB by page wikidot id and return it as associative array
public static function select(KeepAliveMysqli $link, ScpPage $page, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectStmnt) {
self::$selectStmnt = $link->prepare(self::SELECT_TEXT);
if (!self::$selectStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT statement for page\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$pageId = $page->getId();
self::$selectStmnt->bind_param('d', $pageId);
if (self::$selectStmnt->execute()) {
if (method_exists(self::$selectStmnt, 'get_result')) {
$dataset = self::$selectStmnt->get_result();
$res = $dataset->fetch_assoc();
} else {
$dataset = iimysqli_stmt_get_result(self::$selectStmnt);
$res = iimysqli_result_fetch_array($dataset);
}
self::$selectStmnt->reset();
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT page http://%s.wikidot.com/%s id=%d\nMysqli error: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), self::$selectStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT page http://%s.wikidot.com/%s id=%d\nError: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), $e->getMessage())
);
}
return $res;
}
// Select page dbId from DB by page wikidot id and return it
public static function selectId(KeepAliveMysqli $link, ScpPage $page, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectIdStmnt) {
self::$selectIdStmnt = $link->prepare(self::SELECT_ID_TEXT);
if (!self::$selectIdStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT ID statement for page\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$pageId = $page->getId();
self::$selectIdStmnt->bind_param('d', $pageId);
if (self::$selectIdStmnt->execute()) {
self::$selectIdStmnt->bind_result($res);
self::$selectIdStmnt->fetch();
self::$selectIdStmnt->reset();
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT ID page http://%s.wikidot.com/%s id=%d\nMysqli error: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), self::$selectIdStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT ID page http://%s.wikidot.com/%s id=%d\nError: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), $e->getMessage())
);
}
return $res;
}
// Insert new record into pages table in DB
public static function insert(KeepAliveMysqli $link, ScpPage $page, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$insertStmnt) {
self::$insertStmnt = $link->prepare(self::INSERT_TEXT);
if (!self::$insertStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare INSERT statement for page\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$arObj = array(
'siteId' => $page->getSiteId(),
'pageId' => $page->getId(),
'categoryId' => $page->getCategoryId(),
'pageName' => $page->getPageName(),
'title' => $page->getTitle(),
'altTitle' => $page->getAltTitle(),
'source' => $page->getSource()
);
self::$insertStmnt->bind_param(
'dddssss',
$arObj['siteId'],
$arObj['pageId'],
$arObj['categoryId'],
$arObj['pageName'],
$arObj['title'],
$arObj['altTitle'],
$arObj['source']
);
$res = self::$insertStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT page http://%s.wikidot.com/%s id=%d\nMysqli error: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), self::$insertStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to INSERT page http://%s.wikidot.com/%s id=%d\nError: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), $e->getMessage())
);
}
return $res;
}
// Update existing DB record by page wikidot id
public static function update(KeepAliveMysqli $link, ScpPage $page, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$updateStmnt) {
self::$updateStmnt = $link->prepare(self::UPDATE_TEXT);
if (!self::$updateStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare UPDATE statement for page\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$arObj = array(
'categoryId' => $page->getCategoryId(),
'pageName' => $page->getPageName(),
'title' => $page->getTitle(),
'altTitle' => $page->getAltTitle(),
'source' => $page->getSource(),
'pageId' => $page->getId()
);
self::$updateStmnt->bind_param(
'dssssd',
$arObj['categoryId'],
$arObj['pageName'],
$arObj['title'],
$arObj['altTitle'],
$arObj['source'],
$arObj['pageId']
);
$res = self::$updateStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to UPDATE page http://%s.wikidot.com/%s id=%d\nMysqli error: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), self::$updateStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to UPDATE page http://%s.wikidot.com/%s id=%d\nError: \"%s\"",
array($page->getSiteName(), $page->getPageName(), $page->getId(), $e->getMessage())
);
}
return $res;
}
// Delete existing DB record by page wikidot id
public static function delete(KeepAliveMysqli $link, $pageId, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$deleteStmnt) {
self::$deleteStmnt = $link->prepare(self::DELETE_TEXT);
if (!self::$deleteStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare DELETE statement for page\nError: \"%s\"",
array($link->error())
);
return false;
}
}
self::$deleteStmnt->bind_param('d', $pageId);
$res = self::$deleteStmnt->execute();
if (!$res) {
WikidotLogger::logFormat(
$logger,
"Failed to DELETE pageId = %d\nMysqli error: \"%s\"",
array($pageId, self::$deleteStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to DELETE pageId = %d\nError: \"%s\"",
array($pageId, $e->getMessage())
);
}
return $res;
}
}
// Static utility class for saving/loading site membership from DB
class ScpMembershipDbUtils
{
/*** Constants ***/
// Name of view for membership
const VIEW = 'view_membership';
// Names of fields in view
const VIEW_ID = '__Id';
const VIEW_SITEID = 'SiteId';
const VIEW_USERID = 'UserId';
const VIEW_JOIN_DATE = 'JoinDate';
// Text of SQL requests
const SELECT_TEXT = 'SELECT UserId, UNIX_TIMESTAMP(JoinDate) FROM membership WHERE SiteId = ?';
const SELECT_USER_TEXT = 'SELECT UNIX_TIMESTAMP(JoinDate) FROM membership WHERE SiteId = ? AND UserId = ?';
const INSERT_TEXT = 'INSERT INTO membership (SiteId, UserId, JoinDate) VALUES (?, ?, FROM_UNIXTIME(?)) ON DUPLICATE KEY UPDATE Aborted = 0';
const DELETE_TEXT = 'UPDATE membership SET Aborted = 1 WHERE SiteId = ? and UserId = ?';
const START_TEXT = 'UPDATE membership SET Aborted = 1 WHERE SiteId = ?';
/*** Fields ***/
// Last connection used to access DB with this class
private static $lastLink = null;
// Prepared statements for interacting with DB
private static $selectStmnt = null;
private static $selectUserStmnt = null;
private static $insertStmnt = null;
private static $deleteStmnt = null;
/*** Private ***/
// Check if supplied connection is the same as the last time, reset statements if it's not
private static function needStatements(KeepAliveMysqli $link)
{
if (self::$lastLink !== $link->getLink()) {
self::clear();
self::$lastLink = $link->getLink();
}
}
// Close prepared statement and set them to null
private static function closeStatement(&$statement)
{
if ($statement) {
$statement->close();
}
$statement = null;
}
// Close and null all statements
private static function clear() {
self::closeStatement(self::$selectStmnt);
self::closeStatement(self::$selectUserStmnt);
self::closeStatement(self::$insertStmnt);
self::closeStatement(self::$deleteStmnt);
}
// Select membership data from DB by site id and return it as associative array (UserId => JoinDate)
public static function select(KeepAliveMysqli $link, $siteId, &$membership, WikidotLogger $logger = null)
{
$res = false;
try {
self::needStatements($link);
if (!self::$selectStmnt) {
self::$selectStmnt = $link->prepare(self::SELECT_TEXT);
if (!self::$selectStmnt) {
WikidotLogger::logFormat(
$logger,
"Failed to prepare SELECT statement for membership\nError: \"%s\"",
array($link->error())
);
return false;
}
}
$membership = array();
self::$selectStmnt->bind_param('d', $siteId);
if (self::$selectStmnt->execute()) {
self::$selectStmnt->bind_result($userId, $joinTimestamp);
while (self::$selectStmnt->fetch()) {
$date = new DateTime();
$date->setTimestamp($joinTimestamp);
$membership[$userId] = $date;
}
self::$selectStmnt->reset();
$res = true;
} else {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT membership for site %d\nMysqli error: \"%s\"",
array($siteId, self::$selectStmnt->error)
);
}
} catch (Exception $e) {
WikidotLogger::logFormat(
$logger,
"Failed to SELECT membership for site %d\nError: \"%s\"",
array($siteId, $e->getMessage())
);
}
return $res;
}
// Select membership data from DB by site id and return it as associative array (UserId => JoinDate)
public static function selectUser(KeepAliveMysqli $link, $siteId, $userId, WikidotLogger $logger = null)
{
$res = false;
try {