-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathinstall.php
1025 lines (881 loc) · 35.8 KB
/
install.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
/**
* @package RedSHOP.Installer
*
* @copyright Copyright (C) 2008 - 2020 redCOMPONENT.com. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('_JEXEC') or die;
/**
* Script file of redSHOP component
*
* @package RedSHOP.Installer
*
* @since 1.2
*/
class Com_RedshopInstallerScript
{
/**
* Status of the installation
*
* @var object
*/
public $status = null;
/**
* The common JInstaller instance used to install all the extensions
*
* @var object
*/
public $installer = null;
/**
* Install type
*
* @var string
*/
protected $type = null;
/**
* Method to install the component
*
* @param object $parent Class calling this method
*
* @return void
*/
public function install($parent)
{
// Install extensions
$this->installLibraries($parent);
$this->installModules($parent);
$this->installPlugins($parent);
}
/**
* Install the package libraries
*
* @param object $parent Class calling this method
*
* @return void
*/
protected function installLibraries($parent)
{
// Required objects
$manifest = $parent->get('manifest');
$src = $parent->getParent()->getPath('source');
if ($nodes = $manifest->libraries->library) {
$installer = $this->getInstaller();
foreach ($nodes as $node) {
$extName = $node->attributes()->name;
$extPath = $src . '/libraries/' . $extName;
// Standard install
if (is_dir($extPath)) {
$installer->install($extPath);
} // Discover install
elseif ($extId = $this->searchExtension($extName, 'library', '-1')) {
$installer->discover_install($extId);
}
}
}
}
/**
* Get the common JInstaller instance used to install all the extensions
*
* @return JInstaller The JInstaller object
*/
public function getInstaller()
{
$this->installer = new JInstaller;
return $this->installer;
}
/**
* Search a extension in the database
*
* @param string $element Extension technical name/alias
* @param string $type Type of extension (component, file, language, library, module, plugin)
* @param string $state State of the searched extension
* @param string $folder Folder name used mainly in plugins
*
* @return integer Extension identifier
*/
protected function searchExtension($element, $type, $state = null, $folder = null)
{
$db = JFactory::getDbo();
$query = $db->getQuery(true)
->select('extension_id')
->from($db->quoteName("#__extensions"))
->where("type = " . $db->quote($type))
->where("element = " . $db->quote($element));
if (!is_null($state)) {
$query->where("state = " . (int)$state);
}
if (!is_null($folder)) {
$query->where("folder = " . $db->quote($folder));
}
$db->setQuery($query);
return $db->loadResult();
}
/**
* Install the package modules
*
* @param object $parent Class calling this method
*
* @return void
*/
protected function installModules($parent)
{
// Required objects
$manifest = $parent->get('manifest');
$src = $parent->getParent()->getPath('source');
if ($nodes = $manifest->modules->module) {
foreach ($nodes as $node) {
$extName = (string)$node->attributes()->name;
$extClient = (string)$node->attributes()->client;
$extPath = $src . '/modules/' . $extClient . '/' . $extName;
if (is_dir($extPath)) {
$this->getInstaller()->install($extPath);
} // Discover install
elseif ($extId = $this->searchExtension($extName, 'module', '-1')) {
$this->getInstaller()->discover_install($extId);
}
}
}
}
/**
* Install the package libraries
*
* @param object $parent Class calling this method
*
* @return void
*/
protected function installPlugins($parent)
{
// Required objects
$manifest = $parent->get('manifest');
$src = $parent->getParent()->getPath('source');
if ($nodes = $manifest->plugins->plugin) {
$installer = $this->getInstaller();
foreach ($nodes as $node) {
$extName = (string)$node->attributes()->name;
$extGroup = (string)$node->attributes()->group;
$extPath = $src . '/plugins/' . $extGroup . '/' . $extName;
$result = 0;
// Install or upgrade plugin
if (is_dir($extPath)) {
$installer->setAdapter('plugin');
$result = $installer->install($extPath);
} // Discover install
elseif ($extId = $this->searchExtension($extName, 'plugin', '-1', $extGroup)) {
$result = $installer->discover_install($extId);
}
// We'll not enable plugin for update case
if ($this->type != 'update' && $result) {
/*
* For another rest type cases
* Do not change plugin state if it's installed
* If plugin is installed successfully and it didn't exist before we enable it.
*/
$this->enablePlugin($extName, $extGroup);
}
// Force to enable redSHOP - System plugin by anyways
$this->enablePlugin('redshop', 'system');
// Force to enable redSHOP PDF - TcPDF plugin by anyways
$this->enablePlugin('tcpdf', 'redshop_pdf');
// Force to enable redSHOP Export - Attribute plugin by anyways
$this->enablePlugin('attribute', 'redshop_export');
// Force to enable redSHOP Export - Category plugin by anyways
$this->enablePlugin('category', 'redshop_export');
// Force to enable redSHOP Export - Field plugin by anyways
$this->enablePlugin('field', 'redshop_export');
// Force to enable redSHOP Export - Manufacturer plugin by anyways
$this->enablePlugin('manufacturer', 'redshop_export');
// Force to enable redSHOP Export - Newsletter Subscriber plugin by anyways
$this->enablePlugin('newsletter_subscriber', 'redshop_export');
// Force to enable redSHOP Export - Product plugin by anyways
$this->enablePlugin('product', 'redshop_export');
// Force to enable redSHOP Export - Product Stockroom Data plugin by anyways
$this->enablePlugin('product_stockroom_data', 'redshop_export');
// Force to enable redSHOP Export - Related Product plugin by anyways
$this->enablePlugin('related_product', 'redshop_export');
// Force to enable redSHOP Export - Shipping Address plugin by anyways
$this->enablePlugin('shipping_address', 'redshop_export');
// Force to enable redSHOP Export - Shopper Group Attribute Price plugin by anyways
$this->enablePlugin('shopper_group_attribute_price', 'redshop_export');
// Force to enable redSHOP Export - Shopper Group Product Price plugin by anyways
$this->enablePlugin('shopper_group_product_price', 'redshop_export');
// Force to enable redSHOP Export - User plugin by anyways
$this->enablePlugin('user', 'redshop_export');
// Force to enable redSHOP Import - Attribute plugin by anyways
$this->enablePlugin('attribute', 'redshop_import');
// Force to enable redSHOP Import - Category plugin by anyways
$this->enablePlugin('category', 'redshop_import');
// Force to enable redSHOP Import - Field plugin by anyways
$this->enablePlugin('field', 'redshop_import');
// Force to enable redSHOP Import - Manufacturer plugin by anyways
$this->enablePlugin('manufacturer', 'redshop_import');
// Force to enable redSHOP Import - Newsletter Subscriber plugin by anyways
$this->enablePlugin('newsletter_subscriber', 'redshop_import');
// Force to enable redSHOP Import - Product plugin by anyways
$this->enablePlugin('product', 'redshop_import');
// Force to enable redSHOP Import - Product Stockroom Data plugin by anyways
$this->enablePlugin('product_stockroom_data', 'redshop_import');
// Force to enable redSHOP Import - Related Product plugin by anyways
$this->enablePlugin('related_product', 'redshop_import');
// Force to enable redSHOP Import - Shipping Address plugin by anyways
$this->enablePlugin('shipping_address', 'redshop_import');
// Force to enable redSHOP Import - Shopper Group Attribute Price plugin by anyways
$this->enablePlugin('shopper_group_attribute_price', 'redshop_import');
// Force to enable redSHOP Import - Shopper Group Product Price plugin by anyways
$this->enablePlugin('shopper_group_product_price', 'redshop_import');
// Force to enable redSHOP Import - User plugin by anyways
$this->enablePlugin('user', 'redshop_import');
// Force to enable cache - twig plugin by anyways
$this->enablePlugin('cache', 'twig');
// Force to enable debug - twig plugin by anyways
$this->enablePlugin('debug', 'twig');
// Force to enable japp - twig plugin by anyways
$this->enablePlugin('japp', 'twig');
// Force to enable jarray - twig plugin by anyways
$this->enablePlugin('jarray', 'twig');
// Force to enable jdoc - twig plugin by anyways
$this->enablePlugin('jdoc', 'twig');
// Force to enable jhtml - twig plugin by anyways
$this->enablePlugin('jhtml', 'twig');
// Force to enable jlang - twig plugin by anyways
$this->enablePlugin('jlang', 'twig');
// Force to enable jlayout - twig plugin by anyways
$this->enablePlugin('jlayout', 'twig');
// Force to enable jmodule - twig plugin by anyways
$this->enablePlugin('jmodule', 'twig');
// Force to enable jposition - twig plugin by anyways
$this->enablePlugin('jposition', 'twig');
// Force to enable jprofiler - twig plugin by anyways
$this->enablePlugin('jprofiler', 'twig');
// Force to enable jregistry - twig plugin by anyways
$this->enablePlugin('jregistry', 'twig');
// Force to enable jroute - twig plugin by anyways
$this->enablePlugin('jroute', 'twig');
// Force to enable jsession - twig plugin by anyways
$this->enablePlugin('jsession', 'twig');
// Force to enable jtext - twig plugin by anyways
$this->enablePlugin('jtext', 'twig');
// Force to enable juri - twig plugin by anyways
$this->enablePlugin('juri', 'twig');
// Force to enable juser - twig plugin by anyways
$this->enablePlugin('juser', 'twig');
// Force to enable redshop - twig plugin by anyways
$this->enablePlugin('redshop', 'twig');
// Force to enable unserialize - twig plugin by anyways
$this->enablePlugin('unserialize', 'twig');
// Force to enable promotion - redshop_promotion plugin by anyways
$this->enablePlugin('promotion', 'redshop_promotion');
}
}
}
/**
* Method for enable plugins
*
* @param string $extName Plugin name
* @param string $extGroup Plugin group
* @param int $state State of plugins
*
* @return mixed
*/
protected function enablePlugin($extName, $extGroup, $state = 1)
{
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->update($db->qn("#__extensions"))
->set("enabled = " . (int)$state)
->where('type = ' . $db->quote('plugin'))
->where('element = ' . $db->quote($extName))
->where('folder = ' . $db->quote($extGroup));
return $db->setQuery($query)->execute();
}
/**
* method to run after an install/update/uninstall method
*
* @param string $type Type of method
* @param object $parent Parent class call this method
*
* @return void
*
* @throws Exception
* @since 2.0.0
*
*/
public function postflight($type, $parent)
{
// Respond json for ajax request and redirect with standard request
if (
isset($_SERVER['HTTP_X_REQUESTED_WITH']) &&
strcasecmp($_SERVER['HTTP_X_REQUESTED_WITH'], 'xmlhttprequest') == 0
) {
$response = new JResponseJson(
array('redirect' => 'index.php?option=com_redshop&view=install&install_type=' . $type)
);
header('Content-type: application/json');
echo $response;
JFactory::getApplication()->close();
}
JFactory::getApplication()->redirect('index.php?option=com_redshop&view=install&install_type=' . $type);
}
/**
* method to uninstall the component
*
* @param object $parent Class calling this method
*
* @return void
*/
public function uninstall($parent)
{
// Uninstall extensions
$this->uninstallPlugins($parent);
$this->uninstallModules($parent);
$this->uninstallLibraries($parent);
}
/**
* Uninstall the package plugins
*
* @param object $parent Class calling this method
*
* @return void
*/
protected function uninstallPlugins($parent)
{
// Required objects
$manifest = $parent->get('manifest');
if ($nodes = $manifest->plugins->plugin) {
$installer = $this->getInstaller();
foreach ($nodes as $node) {
$extName = (string)$node->attributes()->name;
$extGroup = (string)$node->attributes()->group;
if ($extId = $this->searchExtension($extName, 'plugin', null, $extGroup)) {
$installer->uninstall('plugin', $extId);
}
}
}
}
/**
* Uninstall the package modules
*
* @param object $parent Class calling this method
*
* @return void
*/
protected function uninstallModules($parent)
{
// Required objects
$manifest = $parent->get('manifest');
if ($nodes = $manifest->modules->module) {
foreach ($nodes as $node) {
$extName = (string)$node->attributes()->name;
$extClient = (string)$node->attributes()->client;
if ($extId = $this->searchExtension($extName, 'module')) {
$this->getInstaller()->uninstall('module', $extId);
}
}
}
}
/**
* Uninstall the package libraries
*
* @param object $parent Class calling this method
*
* @return void
*/
protected function uninstallLibraries($parent)
{
// Required objects
$manifest = $parent->get('manifest');
if ($nodes = $manifest->libraries->library) {
foreach ($nodes as $node) {
$extName = (string)$node->attributes()->name;
if ($extId = $this->searchExtension($extName, 'library')) {
$this->getInstaller()->uninstall('library', $extId);
}
}
}
}
/**
* Method to update the component
*
* @param object $parent Class calling this method
*
* @return void
*/
public function update($parent)
{
$this->installLibraries($parent);
$this->installModules($parent);
$this->installPlugins($parent);
}
/**
* method to run before an install/update/uninstall method
*
* @param object $type Type of change (install, update or discover_install)
* @param object $parent Class calling this method
*
* @return void
*
* @throws Exception
*/
public function preflight($type, $parent)
{
$this->type = $type;
$this->implementProcedure();
if ($type == 'update' || $type == 'discover_install') {
if (!class_exists('RedshopHelperJoomla')) {
require_once __DIR__ . '/libraries/redshop/helper/joomla.php';
}
// Store redSHOP old version.
JFactory::getApplication()->setUserState(
'redshop.old_version',
RedshopHelperJoomla::getManifestValue('version')
);
}
}
/**
* Method for implement procedure function for MySQL server only
*
* @return void
*
* @since 2.1.0
*/
protected function implementProcedure()
{
$this->procedureRemoveColumn();
$this->procedureUpdateColumn();
$this->procedureIndexRemove();
$this->procedureIndexAdd();
$this->procedureUniqueIndexAdd();
$this->procedureFulltextIndexAdd();
$this->procedureConstraintRemove();
$this->procedureConstraintUpdate();
$this->procedurePrimaryRemove();
$this->procedurePrimaryAdd();
}
/**
* Method for implement procedure "redSHOP_Column_Remove"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureRemoveColumn()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Column_Remove');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Column_Remove") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('columnName') . " VARCHAR(50)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote('Procedure for use in redSHOP to remove column to table avoid unexpected errors.') . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
IF ((SELECT COUNT(*) FROM information_schema.COLUMNS WHERE COLUMN_NAME=columnName AND TABLE_NAME=tableName AND table_schema = DATABASE()) >= 1)
THEN
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` DROP COLUMN `',columnName,'`');
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END IF ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Column_Update"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureUpdateColumn()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Column_Update');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Column_Update") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('columnName') . " VARCHAR(50),
IN " . $db->qn('newColumnName') . " VARCHAR(50),
IN " . $db->qn('columnDetail') . " VARCHAR(255)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote(
'Procedure for use in redSHOP to update / add column to table avoid unexpected errors.'
) . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET columnDetail = REPLACE(columnDetail, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
set @ColOldExist = (SELECT COUNT(*) FROM information_schema.COLUMNS WHERE COLUMN_NAME=columnName AND TABLE_NAME=tableName AND table_schema = DATABASE());
set @ColNewExist = (SELECT COUNT(*) FROM information_schema.COLUMNS WHERE COLUMN_NAME=newColumnName AND TABLE_NAME=tableName AND table_schema = DATABASE());
IF (@ColOldExist = 0 AND @ColNewExist = 0) THEN
/* Both column doesn't exist. Just add column */
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` ADD COLUMN `',newColumnName,'` ',columnDetail);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
ELSEIF (@ColOldExist = 1 AND @ColNewExist = 0) THEN
/* Old column exist. New column not exist. Change column */
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` CHANGE `',columnName,'` ','`',newColumnName,'` ',columnDetail);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
ELSEIF (@ColOldExist = 0 AND @ColNewExist = 1) THEN
/* Old column not exist. New column exist. Update column */
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` CHANGE `',newColumnName,'` ','`',newColumnName,'` ',columnDetail);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
ELSE
/* Old column exist. New column exist. */
IF (columnName <> newColumnName) THEN
/* Old column is different with new column and both exist => The old column had to be remove */
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` DROP COLUMN `',columnName,'`');
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END IF ;
/* Update structure of new column column */
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` CHANGE `',newColumnName,'` ','`',newColumnName,'` ',columnDetail);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END IF;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Index_Remove"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureIndexRemove()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Index_Remove');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Index_Remove") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('indexName') . " VARCHAR(50)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote('Procedure for use in redSHOP to remove index from table avoid unexpected errors.') . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexName = REPLACE(indexName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
IF ((SELECT COUNT(*) AS index_exists FROM information_schema.statistics WHERE TABLE_SCHEMA = DATABASE() and table_name = tableName AND index_name = indexName) >= 1)
THEN
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` DROP INDEX `',indexName,'`');
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END IF ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Index_Add"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureIndexAdd()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Index_Add');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Index_Add") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('indexName') . " VARCHAR(50),
IN " . $db->qn('indexData') . " VARCHAR(255)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote('Procedure for use in redSHOP to Add index to table avoid unexpected errors..') . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexName = REPLACE(indexName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexData = REPLACE(indexData, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
CALL redSHOP_Index_Remove(tableName, indexName) ;
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` ADD INDEX `',indexName,'` ',indexData);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Index_Unique_Add"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureUniqueIndexAdd()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Index_Unique_Add');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Index_Unique_Add") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('indexName') . " VARCHAR(50),
IN " . $db->qn('indexData') . " VARCHAR(255)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote(
'Procedure for use in redSHOP to Add Unique Index to table avoid unexpected errors..'
) . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexName = REPLACE(indexName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexData = REPLACE(indexData, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
CALL redSHOP_Index_Remove(tableName, indexName);
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` ADD UNIQUE INDEX `',indexName,'` ',indexData);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Index_Fulltext_Add"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureFulltextIndexAdd()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Index_Fulltext_Add');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Index_Fulltext_Add") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('indexName') . " VARCHAR(50),
IN " . $db->qn('indexData') . " VARCHAR(255)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote(
'Procedure for use in redSHOP to Add Unique Index to table avoid unexpected errors..'
) . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexName = REPLACE(indexName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET indexData = REPLACE(indexData, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
CALL redSHOP_Index_Remove(tableName, indexName);
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` ADD FULLTEXT INDEX `',indexName,'` ',indexData);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Constraint_Remove"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureConstraintRemove()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Constraint_Remove');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Constraint_Remove") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('refName') . " VARCHAR(50)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote(
'Procedure for use in redSHOP to Add Constraint (Foreign Key) to table avoid unexpected errors..'
) . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET refName = REPLACE(refName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
IF ((SELECT COUNT(*) AS constraint_exists FROM information_schema.TABLE_CONSTRAINTS WHERE TABLE_SCHEMA = DATABASE() and TABLE_NAME = tableName AND CONSTRAINT_NAME = refName AND CONSTRAINT_TYPE = 'FOREIGN KEY') >= 1)
THEN
SET FOREIGN_KEY_CHECKS = 0;
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` DROP FOREIGN KEY `',refName,'`');
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
SET FOREIGN_KEY_CHECKS = 1;
END IF ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Constraint_Update"
*
* @return void
*
* @since 2.1.0
*/
protected function procedureConstraintUpdate()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Constraint_Update');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Constraint_Update") . "(
IN " . $db->qn('tableName') . " VARCHAR(50),
IN " . $db->qn('constraintName') . " VARCHAR(50),
IN " . $db->qn('columnName') . " VARCHAR(50),
IN " . $db->qn('tableRef') . " VARCHAR(50),
IN " . $db->qn('columnRef') . " VARCHAR(50),
IN " . $db->qn('onUpdateAction') . " ENUM('RESTRICT','CASCADE','SET NULL','NO ACTION'),
IN " . $db->qn('onDeleteAction') . " ENUM('RESTRICT','CASCADE','SET NULL','NO ACTION')
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote(
'Procedure for use in redSHOP to Update/Create Constraint (Foreign Key) to table avoid unexpected errors..'
) . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET constraintName = REPLACE(constraintName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET columnName = REPLACE(columnName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET tableRef = REPLACE(tableRef, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
SET columnRef = REPLACE(columnRef, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
CALL redSHOP_Constraint_Remove(tableName, constraintName);
SET FOREIGN_KEY_CHECKS = 0;
SET @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` ADD CONSTRAINT `',constraintName,'` FOREIGN KEY (`',columnName,'`) REFERENCES `',tableRef,'` (`',columnRef,'`) ON UPDATE ',onUpdateAction,' ON DELETE ',onDeleteAction);
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
SET FOREIGN_KEY_CHECKS = 1;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Primary_Remove"
*
* @return void
*
* @since 2.1.0
*/
protected function procedurePrimaryRemove()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Primary_Remove');
$db->setQuery($query)->execute();
$query = "CREATE PROCEDURE " . $db->qn("redSHOP_Primary_Remove") . "(
IN " . $db->qn('tableName') . " VARCHAR(50)
)
LANGUAGE SQL
NOT DETERMINISTIC
CONTAINS SQL
COMMENT " . $db->quote(
'Procedure for use in redSHOP to remove primary key from table avoid unexpected errors.'
) . "
BEGIN
SET tableName = REPLACE(tableName, " . $db->quote('#__') . ", " . $db->quote(
JFactory::getConfig()->get('dbprefix')
) . ") ;
IF ((SELECT COUNT(*) AS index_exists FROM information_schema.table_constraints WHERE TABLE_SCHEMA = DATABASE() and table_name = tableName AND constraint_name = " . $db->quote(
'PRIMARY'
) . ") >= 1)
THEN
set @StatementToExecute = concat('ALTER TABLE `',DATABASE(),'`.`',tableName,'` DROP PRIMARY KEY');
prepare DynamicStatement from @StatementToExecute ;
execute DynamicStatement ;
deallocate prepare DynamicStatement ;
END IF ;
END";
$db->setQuery($query)->execute();
}
/**
* Method for implement procedure "redSHOP_Primary_Add"
*
* @return void
*
* @since 2.1.0
*/
protected function procedurePrimaryAdd()
{
$db = JFactory::getDbo();
$query = "DROP PROCEDURE IF EXISTS " . $db->qn('redSHOP_Primary_Add');
$db->setQuery($query)->execute();