forked from tyler124/Monitordroid-Web-Application
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb_functions.php
1583 lines (952 loc) · 31.5 KB
/
db_functions.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
class DB_Functions {
/*
db_functions.php
Provides functions to interact with the MySQL database
Authors: Tyler Butler, Noah Lowenthal
*/
private $db;
// constructor
function __construct() {
require_once './config.php';
// connecting to mysql
try {
//NOTE: If you created your gcm_users and gcm_accounts tables under a different database name,
//change 'monitordroid' in the below statement to whatever database name you created them under!
$this->db = new PDO('mysql:host=localhost;dbname=monitordroid', DB_USER, DB_PASSWORD);
}
catch (PDOException $e) {
$output = 'Unable to connect to database server.';
error_log($output);
$e->getMessage();
exit();
}
}
// destructor
function __destruct() {
}
//insert device into database
public function storeUser($name, $email, $gcm_regid) { try {
//Only insert device if the account exists
if ($this->accountEmailExists($email)) {
try {
$sql = "INSERT INTO gcm_users(name, email, gcm_regid, created_at) VALUES('$name', '$email', '$gcm_regid', NOW())";
$result = $this->db->query($sql);
if ($result) {
// get user details
$id = $this->db->lastInsertId(); //last inserted id
$sql = "SELECT * FROM gcm_users WHERE id = $id";
$result = $this->db->query($sql);
$no_of_rows = $result->fetchColumn();
// returns confirmation message if completed
if ($no_of_rows > 0) {
return "existsandcompleted";
}
else {
return "didnotcomplete";
}
}
else {
return "didnotcomplete";
}
}
catch (PDOException $e) {
$error = 'Error storing user: ' . $e->getMessage();
}
}
else {
//return false if input email is not an existing account
return "didnotcomplete";
}
}
catch (Exception $e) {
$error = 'Error accessing database: ' . $e->getMessage();
}
}
//Get user by email or password
public function getUserByEmail($email) {
try {
$sql = "SELECT * FROM gcm_users WHERE email = '$email'";
$result = $this->db->query($sql);
return $result;
}
catch (PDOException $e) {
$error = 'Error fetching user by email: ' . $e->getMessage();
}
}
//Returns all users
public function getAllUsers() {
try {
$sql = "select * FROM gcm_users";
$result = $this->db->query($sql);
return $result;
}
catch (PDOException $e) {
$error = 'Error getting all users: ' . $e->getMessage();
}
}
public function getAllAccounts() {
try {
$sql = "SELECT email FROM gcm_accounts";
$resource = $this->db->query($sql);
//$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$resultArray = $resource->fetchAll(); }
catch (PDOException $e) {
$output = 'Error fetching sms outbox: ' . $e->getMessage();
}
return $resultArray;
}
//Check if user exists
public function isUserExisted($email) {
try {
$sql = "SELECT email from gcm_users WHERE email = '$email'";
$result = $this->db->query($sql);
$no_of_rows = $result->fetchColumn();
if ($no_of_rows > 0) {
// user exists
return true;
}
else {
// user doesn't exist
return false;
}
}
catch (PDOException $e) {
$error = 'Error fetching user by email: ' . $e->getMessage();
}
}
//Insert Contacts into DB
public function insertContacts($regId, $contacttext) {
try {
$sql = "UPDATE gcm_users SET contacts = :ctext, contactsupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':ctext', $contacttext);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Insert SMS data into DB (When "Load More Messages" is pressed, concatenating these messages onto previous ones)
public function insertSMS($regId, $smsdata) {
try {
$sql = "UPDATE gcm_users SET smsdata = concat(ifnull(smsdata, ''), :smstext), smsupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':smstext', $smsdata);
$s->execute();
} catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Insert SMS data into DB (When "Update" is pressed initially, clearing other SMS data and inserting these as the first messages to maintain proper order)
public function insertFirstSMS($regId, $firstsmsdata) {
try {
$sql = "UPDATE gcm_users SET smsdata = :smstext, smsupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':smstext', $firstsmsdata);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Insert Call Logs into DB
public function insertCallLogs($regId, $logData) {
try {
$sql = "UPDATE gcm_users SET calllogs = :logtext, calllogsupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':logtext', $logData);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Inserts the first iteration browser history into DB.
//Will clear the previously stored data and replace with the newest 50 links
public function insertFirstBrowserHistory($regId, $browserHistory) {
try {
$sql = "UPDATE gcm_users SET browserhistory = :browserhistory, browserhistoryupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':browserhistory', $browserHistory);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Inserts the following iterations of browser history,
//concatenating 50 messages at a time into the database
public function insertBrowserHistory($regId, $browserHistory) {
try {
$sql = "UPDATE gcm_users SET browserhistory = concat(ifnull(browserhistory, ''), :browsertext), browserhistoryupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':browsertext', $browserHistory);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Insert installed applications into DB
public function insertInstalledApps($regId, $installedApps) {
try {
$sql = "UPDATE gcm_users SET apps = :installedapps, appsupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->bindParam(':installedapps', $installedApps);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//insert location data into DB
public function insertLocationData($regId, $latitude, $longitude, $time, $accuracy) {
try {
$sql1 = "UPDATE gcm_users SET latitude = :lat, longitude = :long, locationtime = :locationtime, locationaccuracy = :locationaccuracy, locationupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql1);
$s->bindParam(':lat', $latitude);
$s->bindParam(':long', $longitude);
$s->bindParam(':locationtime', $time);
$s->bindParam(':locationaccuracy', $accuracy);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertLocation($regId, $latitude, $longitude, $time, $accuracy) {
try {
//First get the current location data, then insert them into the logs column
$currentLocationData = $this->getLocationData($regId);
$currentLat = $currentLocationData['latitude'];
$currentLong = $currentLocationData['longitude'];
$currentLocationTime = $currentLocationData['locationtime'];
$currentLocationAccuracy = $currentLocationData['locationaccuracy'];
if ($currentLat != 0 || $currentLong != 0) {
$formattedLocationData = ":" . "{" . $currentLat . "," . $currentLong . "," . $currentLocationTime . "," . $currentLocationAccuracy . "}";
//Insert old location into location logs database column
$this->insertLocationLogs($regId, $formattedLocationData);
}
//Insert new location into latitude and longitude database columns
$this->insertLocationData($regId, $latitude, $longitude, $time, $accuracy);
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertLocationLogs($regId, $formattedLatLong) {
try {
//First check the current size of the location logs
$locLogs = $this->getLocationLogs($regId);
$currentByteSize = strlen($locLogs);
//Due to database limits, if the current size is over 61kb wipe the column and insert the new data
//Gives a max of around 700 locations
if ($currentByteSize > 61000) {
$sql = "UPDATE gcm_users SET locationlogs = :formattedLatLong WHERE gcm_regid = '$regId'";
}
else {
//Else concat the new logs onto the end of the current location logs data
$sql = "UPDATE gcm_users SET locationlogs = concat(ifnull(locationlogs, ''), :formattedLatLong) WHERE gcm_regid = '$regId'";
}
$s = $this->db->prepare($sql);
$s->bindParam(':formattedLatLong', $formattedLatLong);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function clearLocationLogs($regId) {
try {
$sql = "UPDATE gcm_users SET locationlogs = '' WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function clearDeviceData($regId) {
try {
$sql = "UPDATE gcm_users SET contacts = '', locationlogs = '', smsdata = '', smssentdata = '', calllogs = '', browserhistory = '', apps = '', latitude = '', longitude = '', locationtime = '', locationaccuracy = '', picturedir = '' WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertBatteryLevel($regId, $batteryLevel) {
try {
$sql = "UPDATE gcm_users SET batterylevel = :batterylevel WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':batterylevel', $batteryLevel);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertPhoneNumber($regId, $phoneNumber) {
try {
$sql = "UPDATE gcm_users SET phonenumber = :phonenumber WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':phonenumber', $phoneNumber);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertNetworkOperator($regId, $networkOperator) {
try {
$sql = "UPDATE gcm_users SET networkoperator = :networkoperator WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':networkoperator', $networkOperator);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertRadioType($regId, $radioType) {
try {
$sql = "UPDATE gcm_users SET radiotype = :radiotype WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':radiotype', $radioType);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertDeviceName($regId, $deviceName) {
try {
$sql = "UPDATE gcm_users SET devicename = :devicename WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':devicename', $deviceName);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertWifiSSID($regId, $wifiSSID) {
try {
$sql = "UPDATE gcm_users SET wifissid = :wifissid WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':wifissid', $wifiSSID);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertWifiIP($regId, $wifiIP) {
try {
$sql = "UPDATE gcm_users SET wifiip = :wifiip WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':wifiip', $wifiIP);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertMonitordroidVersion($regId, $monitordroidVersion) {
try {
$sql = "UPDATE gcm_users SET monitordroidversion = :monitordroidversion WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':monitordroidversion', $monitordroidVersion);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertAndroidVersion($regId, $androidVersion) {
try {
$sql = "UPDATE gcm_users SET androidversion = :androidversion WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':androidversion', $androidVersion);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
public function insertPictureDir($regId, $pictureDir) {
try {
$sql = "UPDATE gcm_users SET picturedir = :picturedir, picturedirupdatetime = UNIX_TIMESTAMP()
WHERE gcm_regid = '$regId'";;
$s = $this->db->prepare($sql);
$s->bindParam(':picturedir', $pictureDir);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error performing update: ' . $e->getMessage();
}
}
//Get all contacts from DB
public function getContacts($regId) {
try {
$sql = "SELECT contacts FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['contacts'];
}
catch (PDOException $e) {
$output = 'Error fetching contacts: ' . $e->getMessage();
}
return $result;
}
//Get all SMS Inbound messages from DB
public function getSMSInbox($regId) {
try {
$sql = "SELECT smsdata FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['smsdata'];
}
catch (PDOException $e) {
$output = 'Error fetching sms data: ' . $e->getMessage();
}
return $result;
}
//Get all SMS Outbound messages from DB
public function getSMSSent($regId) {
try {
$sql = "SELECT smssentdata FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['smssentdata'];
}
catch (PDOException $e) {
$output = 'Error fetching sms outbox: ' . $e->getMessage();
}
return $result;
}
//Get CallLogs from DB
public function getCallLogs($regId) {
try {
$sql = "SELECT calllogs FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['calllogs'];
}
catch (PDOException $e) {
$output = 'Error fetching logs: ' . $e->getMessage();
}
return $result;
}
//Get Browser History from DB
public function getBrowserHistory($regId) {
try {
$sql = "SELECT browserhistory FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['browserhistory'];
}
catch (PDOException $e) {
$output = 'Error fetching browser history: ' . $e->getMessage();
}
return $result;
}
//Get latitude from DB
public function getLat($regId) {
try {
$sql = "SELECT latitude FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['latitude'];
}
catch (PDOException $e) {
$output = 'Error fetching location: ' . $e->getMessage();
}
return $result;
}
//Get longitude from DB
public function getLong($regId) {
try {
$sql = "SELECT longitude FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['longitude'];
}
catch (PDOException $e) {
$output = 'Error fetching location: ' . $e->getMessage();
}
return $result;
}
//Get location logs from DB
public function getLocationLogs($regId) {
try {
$sql = "SELECT locationlogs FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['locationlogs'];
}
catch (PDOException $e) {
$output = 'Error fetching location: ' . $e->getMessage();
}
return $result;
}
//Get installed applications from DB
public function getInstalledApps($regId) {
try {
$sql = "SELECT apps FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['apps'];
}
catch (PDOException $e) {
$output = 'Error fetching installed apps: ' . $e->getMessage();
}
return $result;
}
//Gets the pictures directory on the device from the database
public function getPictureDir($regId) {
try {
$sql = "SELECT picturedir FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$result = $resultArray['picturedir'];
}
catch (PDOException $e) {
$output = 'Error fetching picture directory: ' . $e->getMessage();
}
return $result;
}
//Get phone number, network operator, radio type, device name, wifi SSID, and wifi IP from DB
//NOTE: Returns an array of string results corresponding to the database column instead of a single string
public function getDeviceInformation($regId) {
try {
$sql = "SELECT phonenumber, networkoperator, radiotype, devicename, wifissid, wifiip, batterylevel, monitordroidversion, androidversion FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
}
catch (PDOException $e) {
$output = 'Error fetching device information: ' . $e->getMessage();
}
return $resultArray;
}
public function getMDVersion($regId, $rowid) {
try {
$sql = "SELECT monitordroidversion FROM gcm_users WHERE gcm_regid = '$regId' AND id = '$rowid'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$mdver = $resultArray["monitordroidversion"];
}
catch (PDOException $e) {
$output = 'Error fetching md version: ' . $e->getMessage();
}
return $mdver;
}
public function getDataVersion($regId, $rowid) {
$dver;
try {
$sql = "SELECT data_version FROM gcm_users WHERE gcm_regid = '$regId' AND id = '$rowid'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
$dver = $resultArray["data_version"];
}
catch (PDOException $e) {
$output = 'Error fetching data version: ' . $e->getMessage();
}
return $dver;
}
public function setDataVersion($regId, $dataversion) {
try {
$sql = "UPDATE gcm_users SET data_version='$dataversion' WHERE gcm_regid = '$regId'";
$s = $this->db->prepare($sql);
$s->execute();
}
catch (PDOException $e) {
$output = 'Error setting data version: ' . $e->getMessage();
}
return;
}
//Get the an array of the times (in seconds since UNIX epoch) that contacts, SMS, call logs, browser history, apps list, location, and the current file directory were last updated
//NOTE: Returns an array of string results corresponding to the database column instead of a single string
public function getUpdateTimes($regId) {
try {
$sql = "SELECT contactsupdatetime, smsupdatetime, calllogsupdatetime, browserhistoryupdatetime, appsupdatetime,
locationupdatetime, picturedirupdatetime FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
}
catch (PDOException $e) {
$output = 'Error fetching updatetimes: ' . $e->getMessage();
}
return $resultArray;
}
public function getContactsUpdateTime($regId) {
try {
$sql = "SELECT contactsupdatetime FROM gcm_users WHERE gcm_regid = '$regId'";
$resource = $this->db->query($sql);
$resultArray = $resource->fetch(PDO::FETCH_ASSOC);
}
catch (PDOException $e) {
$output = 'Error fetching contactsupdatetime: ' . $e->getMessage();
}
return $resultArray["contactsupdatetime"];
}
public function getPictureDIRUpdateTime($regId) {
try {