forked from miyanda2/bulk_airtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
802 lines (654 loc) · 22.9 KB
/
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
<?php
require_once 'HmsSessionHandler.php';
class DataSource
{
const HOST = 'localhost';
const USERNAME = 'root';
const PASSWORD = '';
const DATABASENAME = 'airtime-dis';
private $conn;
public $sessionHandler;
public function __construct()
{
$this->conn = $this->getConnection();
$this->sessionHandler = new HmsSessionHandler;
}
public function getConnection()
{
$conn = new mysqli(self::HOST, self::USERNAME, self::PASSWORD, self::DATABASENAME);
if (mysqli_connect_errno()) {
trigger_error("Problem with connecting to database.");
}
$conn->set_charset("utf8");
return $conn;
}
public function getPDOConnection()
{
// specify your own database credentials
$host = 'localhost';
$db_name = 'airtime-dis';
$username = 'root';
$password = "";
/*$host = "127.0.0.1";
$db_name = "dbamigwfyejsdq";
$username = "uly7ksebwl9tu ";
$password = "p2rgw8wfeznh";*/
try{
$conn = new PDO("mysql:host=" . $host . ";dbname=" . $db_name, $username, $password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
return $conn;
}catch(PDOException $exception){
die("Connection error: " . $exception->getMessage());
die("<h2> Server Error. Contact Administrator</h2>");
}
}
public function select($query, $paramType = "", $paramArray = array())
{
$stmt = $this->conn->prepare($query);
if (! empty($paramType) && ! empty($paramArray)) {
$this->bindQueryParams($stmt, $paramType, $paramArray);
}
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$resultset[] = $row;
}
}
if (! empty($resultset)) {
return $resultset;
}
}
public function insert($query, $paramType, $paramArray)
{
$stmt = $this->conn->prepare($query);
$this->bindQueryParams($stmt, $paramType, $paramArray);
$stmt->execute();
$insertId = $stmt->insert_id;
return $insertId;
}
public function execute($query, $paramType = "", $paramArray = array())
{
$stmt = $this->conn->prepare($query);
if (! empty($paramType) && ! empty($paramArray)) {
$this->bindQueryParams($stmt, $paramType, $paramArray);
}
$stmt->execute();
}
public function bindQueryParams($stmt, $paramType, $paramArray = array())
{
$paramValueReference[] = & $paramType;
for ($i = 0; $i < count($paramArray); $i ++) {
$paramValueReference[] = & $paramArray[$i];
}
call_user_func_array(array(
$stmt,
'bind_param'
), $paramValueReference);
}
public function getRecordCount($query, $paramType = "", $paramArray = array())
{
$stmt = $this->conn->prepare($query);
if (! empty($paramType) && ! empty($paramArray)) {
$this->bindQueryParams($stmt, $paramType, $paramArray);
}
$stmt->execute();
$stmt->store_result();
$recordCount = $stmt->num_rows;
return $recordCount;
}
//get currency codes
public function getCurrencyCode($countrycode)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM countries WHERE countryCode = '".$countrycode."'";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if($count > 0){
$stmt = $prepared_query ->fetchObject();
return $stmt;
}else{
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function cleanInput($data)
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
$data = addslashes($data);
return $data;
}
// Check if current use us Valid
public function isUserLoggedIn($path)
{
global $sessionHandler;
if($sessionHandler->sessionExist('isLoggedIn')){
return true;
}else{
redirectTo($path);
}
}
// check if login is Valid
public function isLoginValid($username, $password)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM user WHERE username = '".$username."' AND password = '".$password."'";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if($count > 0){
return 'success';
}else{
return false;
//return $count;
}
} catch (Exception $e) {
//return false;
return $e->getMessage();
}
}
//Count Total Amount of number
public function countTotalNumbers()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT COUNT(*) AS total FROM phone_number";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if($count > 0){
$stmt = $prepared_query ->fetchObject();
return $stmt->total;
}else{
return 0;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
// count amount of created Events
public function countEventNumbers()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT COUNT(*) AS total FROM tag";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt->total;
} else {
return 0;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
//sort and count countries
public function countCountryNumbers()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT COUNT(DISTINCT(country)) AS total FROM phone_number";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt->total;
} else {
return 0;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
// Save imported Phone number into DB
public function saveNumber($tag_id, $first_name, $last_name, $phone_number, $country_code, $country, $carrier, $currency_code)
{
$con = $this->getPDOConnection();
date_default_timezone_set('Africa/Lagos'); // Set the Default Time Zone:
$date = '';
$d = new DateTime($date);
$cdate = $d->format('Y-m-d h:i:s');
$con->beginTransaction();
try{
$query1 = "INSERT INTO phone_number (tag_id, first_name, last_name, phone_number, country_code, country, carrier, currency_code, date_created)
VALUES (:tag_id, :first_name, :last_name, :phone_number, :country_code, :country, :carrier, :currency_code, :date_created)";
$stmt1 = $con->prepare($query1);
// prepare sql and bind parameters
$stmt1->bindParam(':tag_id', $tag_id);
$stmt1->bindParam(':first_name', $first_name);
$stmt1->bindParam(':last_name', $last_name);
$stmt1->bindParam(':phone_number', $phone_number);
$stmt1->bindParam(':country_code', $country_code);
$stmt1->bindParam(':country', $country);
$stmt1->bindParam(':carrier', $carrier);
$stmt1->bindParam(':currency_code', $currency_code);
$stmt1->bindParam(':date_created', $cdate);
$stmt1->execute();
$stmt1->closeCursor();
$con->commit();
return 'success';
} catch (Exception $e) {
$con->rollBack();
return false;
//return $e->getMessage();
}
}
// Save airtime history record
public function saveAirtimeHistory($tag_id, $phone_id, $amount, $success, $attempt, $last_attempt, $sms_sent)
{
$con = $this->getPDOConnection();
date_default_timezone_set('Africa/Lagos'); // Set the Default Time Zone:
$date = '';
$d = new DateTime($date);
$cdate = $d->format('Y-m-d h:i:s');
$con->beginTransaction();
try{
$query1 = "INSERT INTO airtime_history (tag_id, phone_id, amount, success, attempt, last_attempt, sms_sent)
VALUES (:tag_id, :phone_id, :amount, :success, :attempt, :last_attempt, :sms_sent)";
$stmt1 = $con->prepare($query1);
// prepare sql and bind parameters
$stmt1->bindParam(':tag_id', $tag_id);
$stmt1->bindParam(':phone_id', $phone_id);
$stmt1->bindParam(':amount', $amount);
$stmt1->bindParam(':success', $success);
$stmt1->bindParam(':attempt', $attempt);
$stmt1->bindParam(':last_attempt', $last_attempt);
$stmt1->bindParam(':sms_sent', $sms_sent);
$stmt1->execute();
$stmt1->closeCursor();
$con->commit();
return 'success';
} catch (Exception $e) {
$con->rollBack();
return false;
//return $e->getMessage();
}
}
//load Event into dropdown
public function loadTagsIntoCombo($param_cat = '')
{
$r = '';
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM tag ORDER BY event ASC";
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if($count > 0){
$stmt = $prepared_query ->fetchAll();
$r .= "<option value = '-1'>Select Event</option>";
foreach ($stmt as $tags => $tag) {
if($tag['sn'] == $param_cat){
$r .= "<option value='" . $tag['sn'] . "' selected='selected'>" . $tag['event'] . "</option>";
$cat_found = true;
}else{
$r .= "<option value='" . $tag['sn'] . "'>" . $tag['event'] . "</option>";
}
}
}else{
$r .= "<option value = '-1'>No Record Found</option>";
}
} catch (Exception $e) {
return '-1';
//return $e->getMessage();
}
return $r;
}
//load country into dropdown
public function loadCountryIntoCombo($param_cat = '')
{
$r = '';
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM countries ORDER BY countryName ASC";
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if($count > 0){
$stmt = $prepared_query ->fetchAll();
$r .= "<option value = '-1'>Select Country</option>";
foreach ($stmt as $countries => $country) {
if($country['countryCode'] == $param_cat){
$r .= "<option value='" . $country['countryCode'] . "' selected='selected'>" . $country['countryName'] . "</option>";
$cat_found = true;
}else{
$r .= "<option value='" . $country['countryCode'] . "'>" . $country['countryName'] . "</option>";
}
}
}else{
$r .= "<option value = '-1'>No Record Found</option>";
}
} catch (Exception $e) {
return '-1';
//return $e->getMessage();
}
return $r;
}
//add new events
public function addNewEvent($events)
{
$con = $this->getPDOConnection();
date_default_timezone_set('Africa/Lagos'); // Set the Default Time Zone:
$date = '';
$d = new DateTime($date);
$cdate = $d->format('Y-m-d h:i:s');
$con->beginTransaction();
try {
// prepare sql and bind parameters
$query = "INSERT INTO tag (event)
VALUES (:events)";
$stmt = $con->prepare($query);
// prepare sql and bind parameters
$stmt->bindParam(':events', $events);
$stmt->execute();
$con->commit();
$stmt->closeCursor();
return true;
} catch (Exception $e) {
$con->rollBack();
return false;
//return $e->getMessage();
}
}
public function getEventCountryList($event_id)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM phone_number WHERE tag_id = '" . $event_id . "' GROUP BY country_code";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchAll();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
//get Africastalking credentials
public function getAFSetting()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT af_username, af_apikey FROM setting WHERE sn = 1";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function getNVSetting()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT nv_accesskey FROM setting WHERE sn = 1";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function getNXSetting()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT nx_apikey, nx_apisec FROM setting WHERE sn = 1";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
//return msg
public function getMessage()
{
$con = $this->getPDOConnection();
try {
$query = "SELECT msg FROM message WHERE sn = 1";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function getEventAirtimeList($event_id, $country_code)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM phone_number WHERE tag_id = '" . $event_id . "' AND country_code = '" . $country_code . "'";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchAll();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function getEventCountrycount($event_id)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT country, COUNT(sn) AS total FROM phone_number WHERE tag_id = '" . $event_id . "' GROUP BY country ORDER BY COUNT(sn) DESC";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchAll();
return $stmt;
} else {
// return false;
return $count;
}
} catch (Exception $e) {
// return false;
return $e->getMessage();
}
}
public function getEventAirtimeHistory($event_id)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM airtime_history AS ah INNER JOIN phone_number AS p ON ah.phone_id = p.sn WHERE ah.tag_id = '" . $event_id . "' ORDER BY attempt DESC";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchAll();
return $stmt;
} else {
// return false;
return $count;
}
} catch (Exception $e) {
// return false;
return $e->getMessage();
}
}
public function getEventById($event_id)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT event FROM tag WHERE sn = '".$event_id."'";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchObject();
return $stmt->event;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function isPhoneNumberExist($event_id, $phone_number)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM phone_number WHERE tag_id = '" . $event_id . "' AND phone_number = '" . $phone_number . "'";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
return 'exist';
} else {
return 'success';
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function saveErrorLog($phone_number, $message, $source, $tag_id)
{
$con = $this->getPDOConnection();
date_default_timezone_set('Africa/Lagos'); // Set the Default Time Zone:
$date = '';
$d = new DateTime($date);
$cdate = $d->format('Y-m-d h:i:s');
$con->beginTransaction();
try {
// prepare sql and bind parameters
$query = "INSERT INTO error_log (phone_number, message, source, tag_id) VALUES (:phone_number, :message, :source, :tag_id)";
$stmt = $con->prepare($query);
// prepare sql and bind parameters
$stmt->bindParam(':phone_number', $phone_number);
$stmt->bindParam(':message', $message);
$stmt->bindParam(':source', $source);
$stmt->bindParam(':tag_id', $tag_id);
$stmt->execute();
$con->commit();
$stmt->closeCursor();
return true;
} catch (Exception $e) {
$con->rollBack();
return false;
//return $e->getMessage();
}
}
public function getEventErrorLog($event_id)
{
$con = $this->getPDOConnection();
try {
$query = "SELECT * FROM error_log WHERE tag_id = '" . $event_id . "' ";
//return $query;
$prepared_query = $con->prepare($query);
$prepared_query->execute();
$count = $prepared_query->rowCount();
if ($count > 0) {
$stmt = $prepared_query->fetchAll();
return $stmt;
} else {
return false;
//return $count;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
public function deleteEvent($event_id)
{
$con = $this->getPDOConnection();
try {
// prepare sql and bind parameters
$wArray = array('sn' => $event_id);
$rs = $con->delete('tag', $wArray)->affectedRows();
if ($rs > 0) {
return 'success';
} else {
return false;
}
} catch (Exception $e) {
return false;
//return $e->getMessage();
}
}
}
//SELECT country, COUNT(sn) AS total FROM phone_number WHERE tag_id = '" . $event_id . "' GROUP BY country ORDER BY COUNT(sn) DESC