-
Notifications
You must be signed in to change notification settings - Fork 0
/
Model.php
1219 lines (1048 loc) · 23.5 KB
/
Model.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
namespace Automater;
require_once 'DBH.php';
class Model extends BaseObject{
private $dbh = null;
public function __construct(){
$db = new DBH();
$this->dbh = $db->getDbh();
}
public function getServerList(){
$sql =<<<'SQL'
SELECT
company,
lc_company,
id,
server,
server_id,
cms,
cms_version,
uri,
staging_uri,
staging_cms_version,
git_repo,
system_user,
status,
vtm_admin,
addr,
db,
is_def,
active,
last_update_prod,
last_update_staging,
update_queued,
site_admin_name,
in_dev
FROM
server_list
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute();
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on ' . __LINE__ . ' in ' . __FILE__);
}
return $sth->fetchAll(\PDO::FETCH_GROUP|\PDO::FETCH_ASSOC);
}
private function cmsLookup($site){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
cms.name
FROM
vtm_sites vtms
JOIN
cms
ON
cms.id = vtms.cms
WHERE
vtms.id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchColumn(0);
}
public function getLiveSiteStats($server,$site){
$thing = 'https://automaton-3.org.10-1-217-39.causewaynow.com/updates_protected/autobot.php?site=13&disposition=staging&generate=info&key=164f67614406f309d3166269648fd817&cms=drupal&action=get';
}
private function getServerId($site){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
server
FROM
vtm_sites
WHERE
id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchColumn(0);
}
public function triggerZip($server,$site,$disp){
$cms = self::cmsLookup($site);
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => self::getServer($site),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => array(
'site' => $site,
'cms' => $cms,
'disposition' => $disp,
'key' => '164f67614406f309d3166269648fd817',
'action' => 'zip'
),
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_SSL_VERIFYPEER => false,
));
$content = curl_exec($ch);
curl_close($ch);
return $content;
}
public function pingAutobot($server,$site,$disp){
$cms = self::cmsLookup($site);
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => self::getServer($site),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => array(
'site' => $site,
'cms' => $cms,
'disposition' => $disp,
'key' => '164f67614406f309d3166269648fd817',
'action' => 'get'
),
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_SSL_VERIFYPEER => false,
));
if(curl_error($ch)){
error_log($ch);
}
$content = curl_exec($ch);
curl_close($ch);
return $content;
}
public function dbRunBackup($server,$site,$disp){
$cms = self::cmsLookup($site);
$ch = curl_init();
curl_setopt_array($ch, array(
CURLOPT_URL => self::getServer($site),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => array(
'site' => $site,
'cms' => $cms,
'disposition' => $disp,
'key' => '164f67614406f309d3166269648fd817',
'action' => 'dbb'
),
CURLOPT_SSL_VERIFYHOST => false,
CURLOPT_SSL_VERIFYPEER => false,
));
if(curl_error($ch)){
error_log($ch);
}
$content = curl_exec($ch);
curl_close($ch);
return $content;
}
public function checkCookie(){
if(isset($_COOKIE['automaton_user'])){
//self::getUserCookie();
return 'display_base';
}else{
return 'display_login';
}
}
public function insertNewSite(array $data){
$qry_p = array(
$data['name'],
$data['host'],
$data['cmss'],
$data['sver'],
$data['pver'],
$data['pver'],
$data['dblc'],
$data['suri'],
$data['puri'],
$data['gitr'],
$data['admn']
);
$placeholder = implode(",", array_fill(0, count($qry_p), "?"));
$qry_db_s = array(
$data['sdbn'],
$data['host'],
"staging"
);
$qry_db_p = array(
$data['pdbn'],
$data['host'],
"production"
);
$sql =<<<'SQL'
INSERT INTO
%s(
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s,
%s
)
VALUES
(%s)
RETURNING %s
SQL;
$sql = sprintf($sql,
DATABASE::SITES,
SITE_FIELDS::NAME,
SITE_FIELDS::HOST,
SITE_FIELDS::CMSS,
SITE_FIELDS::SVER,
SITE_FIELDS::PVER,
SITE_FIELDS::PVVR,
SITE_FIELDS::DBLC,
SITE_FIELDS::SURI,
SITE_FIELDS::PURI,
SITE_FIELDS::GITR,
SITE_FIELDS::ADMN,
$placeholder,
SITE_FIELDS::SIID
);
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine());
}
if($sth->rowCount() <= 0){
throw new \Exception('Site was not properly inserted! Cannot continue');
}
$site_id = $sth->fetchColumn(0);
\array_push($qry_db_s, $site_id);
\array_push($qry_db_p, $site_id);
$s_db_sql =<<<'SDB_SQL'
INSERT INTO
%s(
%s,
%s,
%s,
%s
)
VALUES
(?,?,?,?)
SDB_SQL;
$s_db_sql = sprintf($s_db_sql,
DATABASE::DATAB,
SITE_FIELDS::SDBN,
SITE_FIELDS::HOST,
SITE_FIELDS::DISP,
SITE_FIELDS::SITE
);
try{
$sth = $this->dbh->prepare($s_db_sql);
$sth->execute($qry_db_s);
}catch(\PDOException $e){
error_log($e->getMessage() . ' on: ' . $e->getLine());
}
$p_db_sql =<<<'PDB_SQL'
INSERT INTO
%s(
%s,
%s,
%s,
%s
)
VALUES
(?,?,?,?)
PDB_SQL;
$p_db_sql = sprintf($p_db_sql,
DATABASE::DATAB,
SITE_FIELDS::PDBN,
SITE_FIELDS::HOST,
SITE_FIELDS::DISP,
SITE_FIELDS::SITE
);
try{
$sth = $this->dbh->prepare($p_db_sql);
$sth->execute($qry_db_p);
}catch(\PDOException $e){
error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $site_id;
}
public function getCmsVersionById(){
$sql =<<<'SQL'
SELECT
cms,
cms,
id,
version_name,
active,
ordinal
from
cms_version
group by
cms,
id,
version_name,
active,
ordinal
order by
cms,
ordinal
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute();
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchAll(\PDO::FETCH_ASSOC|\PDO::FETCH_GROUP);
}
public function getServerSelection(){
$qry_p = array();
$sql =<<<'SQL'
SELECT
id,
name
FROM
server
WHERE
active = true
ORDER BY
gui_ordinal
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute();
}catch(\PDOException $e){
error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchAll(\PDO::FETCH_ASSOC);
}
public function getCmsList(){
$sql =<<<'SQL'
SELECT
id,
name
FROM
cms
WHERE
active = true
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute();
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchAll(\PDO::FETCH_ASSOC);
}
public function getVtmAdmins(){
$sql =<<<'SQL'
SELECT
id,
name
FROM
vtm_admins
ORDER BY
name
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute();
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchAll(\PDO::FETCH_ASSOC);
}
private function getServer($site){//$server){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
serv.auto_url
FROM
vtm_sites vtms
JOIN
server serv
ON
serv.id = vtms.server
WHERE
vtms.id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine());
}
return $sth->fetchColumn(0);
}
private function getUserCookie(){
\error_log("setting cookie for user");
}
public function setUserCookie(){
\setcookie('automaton_user',$_POST['username_login'],time()+60*60*24*30,'/');
}
public function getUserList(){
$sql =<<<'SQL'
SELECT
id,
username,
is_def
FROM
system_users
ORDER BY
username
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute();
}catch(\PDOException $e){
error_log($e->getMessage() . ' on ' . __LINE__ . ' in ' . __CLASS__);
}
return $sth->fetchAll(\PDO::FETCH_GROUP|\PDO::FETCH_ASSOC);
}
public function getDBList(){
$sql =<<<'SQL'
SELECT
company,
id,
server_id,
server,
is_def,
name,
site,
rds
FROM
db_list
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute();
}catch (\PDOException $e){
\error_log($e->getMessage() . ' on '. $e->getLine() . ' in '. __CLASS__);
}
return $sth->fetchAll(\PDO::FETCH_GROUP|\PDO::FETCH_ASSOC);
}
public function getCMSVList(){
$sql =<<<'SQL'
SELECT
cms.name,
cmsv.version_name,
cmsv.active
FROM
cms
JOIN
cms_version cmsv
ON
cmsv.cms = cms.id
ORDER BY
cmsv.ordinal desc
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute();
}catch(\PDOException $e){
error_log($e->getMessage() . ' on ' . __LINE__ . ' in ' . __CLASS__);
}
return json_encode($sth->fetchAll(\PDO::FETCH_GROUP|\PDO::FETCH_ASSOC));
}
public function getSiteUpdateStats(){
$sql =<<<'SQL'
SELECT
sid,
company,
staging_needs_update,
needs_update,
server,
active,
in_dev,
cms
FROM
update_stats
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute();
}catch(\PDOException $e){
\error_log($e->getMessage());
}
return \json_encode($sth->fetchAll(\PDO::FETCH_ASSOC));
}
public function setStagingLatestDo($site){
$qry_p = array($site);
$sql =<<<'SQL'
UPDATE
site_status
SET
staging_version = 'latest'
WHERE
id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
return true;
}catch(\PDOException $e){
\error_log($e->getMessage());
}
}
public function selectSitePlugins($site){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
plug.plugin_name,
pts.active,
pts.update_needed
FROM
vtm_sites site
LEFT JOIN
plugin_to_site pts
ON
pts.sid = site.id
JOIN
plugins plug on plug.pid = pts.pid
WHERE
site.id = ?
ORDER BY
pts.active desc,
plug.plugin_name
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage());
}
return $sth->fetchAll(\PDO::FETCH_ASSOC);
}
public function siteLookup($comp){
$qry_p = array($comp);
$sql =<<<'SQL'
SELECT
id
FROM
vtm_sites
WHERE
company = ?
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute($qry_p);
}catch(\PDOException $e){
error_log($e->getMessage() . ' on ' . $e->getLine() . ' in ' . __CLASS__);
}
return $sth->fetchColumn(0);
}
public function getSiteNotes($site,$note_id){
$qry_p = array($site);
if(isset($note_id) && $note_id !== ""){
\array_push($qry_p, $note_id);
}
$sql =<<<'SQL'
SELECT
to_char(note.note_date - interval '7 hours', 'MM/DD/YYYY HH:MI am'::text) note_date_char,
note.note_text,
usr.username,
note.style
FROM
notes note
JOIN
system_users usr
ON
usr.id = note.usr
WHERE
note.sid = ?
AND
note.active is TRUE
%s
ORDER BY
note_date asc
SQL;
$sql = sprintf($sql,
(isset($note_id) && $note_id !== "") ? "AND nid = ? " : ''
);
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage());
}
$data = $sth->fetchAll(\PDO::FETCH_ASSOC);
$stuff = self::replaceBackticks($data);
return $stuff;
}
private function replaceBackticks($text){
$rplc = array("<span class='code_blurb'>","</span>");
$n = 0;
foreach($text as $tkey => $tbody){
$new_text = preg_replace_callback(
"/\`/",
function () use(&$n,$rplc){
return $rplc[$n++ % count($rplc)];
},
$tbody['note_text']
);
$text[$tkey]['note_text'] = $new_text;
}
return $text;
}
public function appendSiteNote($site,$note,$usr,$bold){
$qry_p = array($site,$note,$bold,$usr);
$sql =<<<'SQL'
INSERT INTO
notes(sid,note_text,usr,style)
SELECT
?,
?,
id,
(
SELECT
CASE WHEN
? = true
THEN
'bold'
ELSE
''
END
)
FROM
system_users
WHERE
username = ?
RETURNING nid
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine() . ' in: ' . __CLASS__);
}
return $sth->fetchColumn(0);
}
public function getProductionDbList($db_nmbr,$site){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
id,
server,
name,
disposition
FROM
dbs
WHERE
disposition in('staging','production')
AND
site = ?
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on ' . $e->getMessage() . ' in ' . __CLASS__);
}
$data = $sth->fetchAll(\PDO::FETCH_ASSOC);
return $data;
}
public function updateProdUpdated($date,$site){
$qry_p = array($date,$site);
$sql =<<<'SQL'
UPDATE
vtm_sites
SET
last_update_prod = ?
WHERE
id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
// Toggle the queued boolean too
self::setQueuedToggle($site);
}catch(\PDOException $e){
\error_log($e->getMessage());
}
}
public function setQueuedToggle($site){
$qry_p = array($site,$site);
$sql =<<<'SQL'
UPDATE
vtm_sites
SET
update_queued =
(
SELECT
CASE WHEN
update_queued = FALSE
THEN TRUE
ELSE FALSE
END
FROM
vtm_sites WHERE id = ?)
WHERE
id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage());
}
}
public function updateStagingUpdated($date,$site){
$qry_p = array($date,$site);
$sql =<<<'SQL'
UPDATE
vtm_sites
SET
last_update_staging = ?
WHERE
id = ?
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage());
}
}
public function getSiteParams($site){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
id,
server,
cms,
cms_version,
uri,
staging_uri,
staging_cms_version,
git_repo,
system_user,
status,
vtm_admin,
dev_notes,
dev_location,
to_char(last_update_prod, 'MM/DD/YYYY') as prod_updated,
to_char(last_update_staging, 'MM/DD/YYYY') as stage_updated,
update_queued
FROM
vtm_sites
WHERE
company = ?
SQL;
$sth = $this->dbh->prepare($sql);
try{
$sth->execute($qry_p);
}catch(\PDOException $e){
error_log($e->getMessage() . ' on ' . __LINE__ . ' in ' . __CLASS__);
}
$data = $sth->fetchAll(\PDO::FETCH_ASSOC);
return $data[0];
}
public function getSiteUpdateLog($site,$record = null,$dbase = null){
$qry_p = array($site);
$sql =<<<'SQL'
SELECT
staged_on,
last_run,
username,
server,
db_name
FROM
bklogs
WHERE
company = ?
%s
LIMIT
6
SQL;
if(isset($dbase)){
array_push($qry_p, $dbase);
$sql = sprintf($sql,
"AND db = ? "
);
}elseif(isset($record)){
array_push($qry_p, $record);
$sql = sprintf($sql,"AND id = ? ");
}else{
$sql = sprintf($sql,"");
}
$sth = $this->dbh->prepare($sql);
try{
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on ' . $e->getLine() . ' in ' . __CLASS__);
}
return $sth->fetchAll(\PDO::FETCH_ASSOC);
}
public function parsePluginsFile($site,$list){
$return_array = array();
/**
* If this is a json formatted list
* we're dealing with Drupal. Use a different
* parsing method, else use the original
* method set up for WP
*/
if(substr($list, 0, 1) == "{"){
$object_list = json_decode($list,true);
foreach($object_list as $pm => $text){
$text['site'] = $site;
$insert = self::insertDrupalPlugin($text);
array_push($return_array, array($text['name'] . ' -> ' . $insert));
}
}else{
$list_array = \explode("\n", $list);
foreach($list_array as $line => $text){
$line_splode = \explode("|", $site . $text);
$insert = self::insertPlugin(array_slice($line_splode, 0, 5));
\array_push($return_array, array($line_splode[1] . ' -> ' . $insert));
}
}
return $return_array;
}
private function insertDrupalPlugin(array $plugin){
$ins_ext = 'insert';
$qry_p = array(
$plugin['name'],
$plugin['status'],
$plugin['version'],
$plugin['name'],
);
$sql =<<<'SQL'
INSERT INTO
plugins(plugin_name, cms, active_txt, version)
SELECT
?,
1,
?,
?
WHERE NOT EXISTS
(SELECT
1
FROM
plugins
WHERE
plugin_name = ?
)
RETURNING
pid
SQL;
try{
$sth = $this->dbh->prepare($sql);
$sth->execute($qry_p);
}catch(\PDOException $e){
\error_log($e->getMessage() . ' on: ' . $e->getLine());
}
$l_qry_p = array($plugin['site']);
$is_active = "";
$plugin_id = "";
if(\strtolower($plugin['status']) == "enabled"){
$is_active = "TRUE";