9
9
*
10
10
*/
11
11
12
- class WildcardPluginInstaller010202 implements WildcardPluginInstallerInterface010000
12
+ class WildcardPluginInstaller020000 implements WildcardPluginInstallerInterface010000
13
13
{
14
14
/**
15
15
* @const version
16
16
*/
17
- const VERSION = '1.2.2 ' ;
17
+ const VERSION = '2.0.0 ' ;
18
18
19
19
/**
20
20
* @var object a copy of the MyBB db object
@@ -92,69 +92,93 @@ class WildcardPluginInstaller010202 implements WildcardPluginInstallerInterface0
92
92
protected $ images = array ();
93
93
94
94
/**
95
- * load the installation data and prepare for anything
95
+ * load the installation data
96
96
*
97
97
* @param string path to the install data
98
98
* @return void
99
99
*/
100
- public function __construct ($ path = '' )
100
+ public function __construct ($ path= '' )
101
101
{
102
102
if (!trim ($ path ) ||
103
103
!file_exists ($ path )) {
104
104
return ;
105
105
}
106
106
107
+ /**
108
+ * Check every possible element that the installer can handle and,
109
+ * if the elements exist, store their definition data along with
110
+ * a list of the names associated with each component, eg. the name
111
+ * of a setting.
112
+ *
113
+ * This gives the installer all of the information it needs to install
114
+ * and uninstall the plugin.
115
+ */
107
116
global $ lang , $ db ;
117
+
108
118
require_once $ path ;
119
+
109
120
foreach (array ('tables ' , 'columns ' , 'settings ' , 'templates ' , 'images ' , 'styleSheets ' ) as $ key ) {
110
121
if (!is_array ($ $ key ) ||
111
122
empty ($ $ key )) {
112
123
continue ;
113
124
}
114
125
115
126
$ this ->$ key = $ $ key ;
116
- switch ($ key ) {
117
- case 'styleSheets ' :
118
- foreach (array ('acp ' , 'forum ' ) as $ key ) {
119
- if (!is_array ($ styleSheets [$ key ]) ||
120
- empty ($ styleSheets [$ key ])) {
121
- $ this ->styleSheetNames [$ key ] = array ();
122
- continue ;
123
- }
127
+ }
124
128
125
- foreach (array_keys ($ styleSheets [$ key ]) as $ name ) {
126
- // stylesheets need the extension appended
127
- $ this ->styleSheetNames [$ key ][] = $ name . '.css ' ;
128
- }
129
+ if (!empty ($ styleSheets )) {
130
+ foreach (array ('acp ' , 'forum ' ) as $ key ) {
131
+ if (!is_array ($ styleSheets [$ key ]) ||
132
+ empty ($ styleSheets [$ key ])) {
133
+ $ this ->styleSheetNames [$ key ] = array ();
134
+ continue ;
129
135
}
130
- break ;
131
- case 'settings ' :
132
- $ this ->settingGroupNames = array_keys ($ settings );
133
- foreach ($ settings as $ group => $ info ) {
134
- foreach ($ info ['settings ' ] as $ name => $ setting ) {
135
- $ this ->settingNames [] = $ name ;
136
- }
136
+
137
+ foreach (array_keys ($ styleSheets [$ key ]) as $ name ) {
138
+ // stylesheets need the extension appended
139
+ $ this ->styleSheetNames [$ key ][] = $ name . '.css ' ;
137
140
}
138
- break ;
139
- case 'templates ' :
140
- $ this ->templategroupNames = array_keys ($ templates );
141
- foreach ($ templates as $ group => $ info ) {
142
- foreach ($ info ['templates ' ] as $ name => $ template ) {
143
- $ this ->templateNames [] = $ name ;
144
- }
141
+ }
142
+ }
143
+
144
+ // settings and templates and their groups are handled similarly
145
+ if (!empty ($ settings )) {
146
+ $ this ->settingGroupNames = array_keys ($ settings );
147
+ foreach ($ settings as $ group => $ info ) {
148
+ foreach ($ info ['settings ' ] as $ name => $ setting ) {
149
+ $ this ->settingNames [] = $ name ;
145
150
}
146
- break ;
147
- case 'columns ' :
148
- case 'images ' :
149
- break ;
150
- default :
151
- $ singular = substr ($ key , 0 , strlen ($ key ) - 1 );
152
- $ property = "{$ singular }Names " ;
153
- $ this ->$ property = array_keys ($ $ key );
154
- break ;
155
151
}
156
152
}
157
153
154
+ if (!empty ($ templates )) {
155
+ $ this ->templategroupNames = array_keys ($ templates );
156
+ foreach ($ templates as $ group => $ info ) {
157
+ foreach ($ info ['templates ' ] as $ name => $ template ) {
158
+ $ this ->templateNames [] = $ name ;
159
+ }
160
+ }
161
+ }
162
+
163
+ // tables and columns must consider the different db engines
164
+ if (!empty ($ tables )) {
165
+ if ($ db ->engine == 'pgsql ' ) {
166
+ $ this ->tables = $ tables ['pgsql ' ];
167
+ } else {
168
+ unset($ this ->tables ['pgsql ' ]);
169
+ }
170
+ $ this ->tableNames = array_keys ($ tables );
171
+ }
172
+
173
+ if (!empty ($ columns )) {
174
+ if ($ db ->engine == 'pgsql ' ) {
175
+ $ this ->columns = $ columns ['pgsql ' ];
176
+ } else {
177
+ unset($ this ->columns ['pgsql ' ]);
178
+ }
179
+ $ this ->columnNames = array_keys ($ columns );
180
+ }
181
+
158
182
// snag a copy of the db object
159
183
$ this ->db = $ db ;
160
184
}
@@ -216,8 +240,8 @@ protected function addTable($table, $columns)
216
240
217
241
// create the table if it doesn't already exist
218
242
if (!$ this ->tableExists ($ table )) {
219
- $ table = TABLE_PREFIX . $ table ;
220
- $ this ->db ->write_query ("CREATE TABLE {$ table } ( {$ columnList }) ENGINE= { $ this -> db -> table_type }{ $ collation }; " );
243
+ $ queryExtra = ( $ this -> db -> engine == ' pgsql ' ) ? '' : " ENGINE= { $ this -> db -> table_type }{ $ collation }" ;
244
+ $ this ->db ->write_query ("CREATE TABLE {$ this -> db -> table_prefix }{ $ table } ( {$ columnList }) { $ queryExtra }; " );
221
245
}
222
246
}
223
247
@@ -256,8 +280,9 @@ protected function removeTables()
256
280
return ;
257
281
}
258
282
259
- $ dropList = implode (', ' . TABLE_PREFIX , $ this ->tableNames );
260
- $ this ->db ->drop_table ($ dropList );
283
+ foreach ($ this ->tableNames as $ table ) {
284
+ $ this ->db ->drop_table ($ table );
285
+ }
261
286
}
262
287
263
288
/**
@@ -266,25 +291,19 @@ protected function removeTables()
266
291
* @param array tables and columns
267
292
* @return void
268
293
*/
269
- protected function addColumns ($ columns = '' )
294
+ protected function addColumns ($ columns= '' )
270
295
{
271
296
if (!is_array ($ columns ) ||
272
297
empty ($ columns )) {
273
298
$ columns = $ this ->columns ;
274
299
}
275
300
276
301
foreach ($ columns as $ table => $ allColumns ) {
277
- $ sep = $ addedColumns = '' ;
278
302
foreach ($ allColumns as $ title => $ definition ) {
279
303
if (!$ this ->fieldExists ($ table , $ title )) {
280
- $ addedColumns .= "{$ sep }{$ title } {$ definition }" ;
281
- $ sep = ', ADD ' ;
304
+ $ this ->db ->add_column ($ table , $ title , $ definition );
282
305
}
283
306
}
284
- if (strlen ($ addedColumns ) > 0 ) {
285
- // trickery, again
286
- $ this ->db ->add_column ($ table , $ addedColumns , '' );
287
- }
288
307
}
289
308
}
290
309
@@ -302,17 +321,11 @@ protected function removeColumns()
302
321
}
303
322
304
323
foreach ($ this ->columns as $ table => $ columns ) {
305
- $ sep = $ droppedColumns = '' ;
306
324
foreach ($ columns as $ title => $ definition ) {
307
325
if ($ this ->fieldExists ($ table , $ title )) {
308
- $ droppedColumns .= "{$ sep }{$ title }" ;
309
- $ sep = ', DROP ' ;
326
+ $ this ->db ->drop_column ($ table , $ title );
310
327
}
311
328
}
312
- if (strlen ($ droppedColumns ) > 0 ) {
313
- // tricky, tricky xD
314
- $ result = $ this ->db ->drop_column ($ table , $ droppedColumns );
315
- }
316
329
}
317
330
}
318
331
@@ -551,7 +564,7 @@ protected function addStyleSheets()
551
564
// now cache the actual files
552
565
require_once MYBB_ROOT . "{$ config ['admin_dir ' ]}/inc/functions_themes.php " ;
553
566
554
- if (!cache_stylesheet (1 , $ data ['cachefile ' ], $ data ['stylesheet ' ]))
567
+ if (!cache_stylesheet (1 , $ styleSheet ['cachefile ' ], $ data ['stylesheet ' ]))
555
568
{
556
569
$ this ->db ->update_query ("themestylesheets " , array ('cachefile ' => "css.php?stylesheet= {$ sid }" ), "sid=' {$ sid }' " , 1 );
557
570
}
@@ -663,7 +676,7 @@ protected function addImages()
663
676
!mkdir ("{$ path }/images " , 0777 , true )) ||
664
677
($ mainFolder &&
665
678
!is_dir ("{$ path }/images {$ mainFolder }" ) &&
666
- !mkdir ("{$ path }/images {$ mainFolder }" , 0777 , true ))) {
679
+ !$ this -> createContentFolder ("{$ path }/images {$ mainFolder }" ))) {
667
680
continue ;
668
681
}
669
682
@@ -693,7 +706,7 @@ protected function addImages()
693
706
if (!is_dir ($ path ) ||
694
707
($ mainFolder &&
695
708
!is_dir ("{$ path }{$ mainFolder }" ) &&
696
- !mkdir ("{$ path }{$ mainFolder }" , 0777 , true ))) {
709
+ !$ this -> createContentFolder ("{$ path }{$ mainFolder }" ))) {
697
710
continue ;
698
711
}
699
712
@@ -770,14 +783,23 @@ protected function buildTableList()
770
783
{
771
784
global $ config ;
772
785
773
- $ query = $ this ->db ->write_query ("
774
- SHOW TABLES
775
- FROM ` {$ config ['database ' ]['database ' ]}`
776
- " );
786
+ // PostgreSQL requires a little more work to grab the table names
787
+ if ($ this ->db ->engine == 'pgsql ' ) {
788
+ $ tableArray = $ this ->db ->list_tables ($ config ['database ' ]['database ' ], $ this ->db ->table_prefix );
777
789
778
- $ tableList = array ();
779
- while ($ row = $ this ->db ->fetch_array ($ query )) {
780
- $ tableList [array_pop ($ row )] = 1 ;
790
+ foreach ($ tableArray as $ table ) {
791
+ $ tableList [$ table ] = 1 ;
792
+ }
793
+ } else {
794
+ $ query = $ this ->db ->write_query ("
795
+ SHOW TABLES
796
+ FROM ` {$ config ['database ' ]['database ' ]}`
797
+ " );
798
+
799
+ $ tableList = array ();
800
+ while ($ row = $ this ->db ->fetch_array ($ query )) {
801
+ $ tableList [array_pop ($ row )] = 1 ;
802
+ }
781
803
}
782
804
return $ tableList ;
783
805
}
@@ -822,7 +844,7 @@ protected function buildFieldList($table)
822
844
* @param bool acp or forum
823
845
* @return array keys of folder names
824
846
*/
825
- private function buildThemeList ($ acp = false )
847
+ private function buildThemeList ($ acp= false )
826
848
{
827
849
static $ cache ;
828
850
$ folderList = array ();
@@ -835,7 +857,8 @@ private function buildThemeList($acp = false)
835
857
foreach (new DirectoryIterator (MYBB_ADMIN_DIR . 'styles ' ) as $ di ) {
836
858
$ folder = $ di ->getFilename ();
837
859
838
- if ($ di ->isDot () ||
860
+ if ($ folder == 'default ' ||
861
+ $ di ->isDot () ||
839
862
!$ di ->isDir () ||
840
863
@!file_exists (MYBB_ADMIN_DIR . "styles/ {$ folder }/main.css " )) {
841
864
continue ;
@@ -850,7 +873,7 @@ private function buildThemeList($acp = false)
850
873
return $ cache ['forum ' ];
851
874
}
852
875
853
- $ duplicates = array ();
876
+ $ duplicates = array (' images ' => 1 );
854
877
$ query = $ this ->db ->simple_select ('themes ' , 'pid, properties ' );
855
878
while ($ theme = $ this ->db ->fetch_array ($ query )) {
856
879
$ properties = unserialize ($ theme ['properties ' ]);
@@ -867,6 +890,52 @@ private function buildThemeList($acp = false)
867
890
868
891
return $ folderList ;
869
892
}
893
+
894
+ /**
895
+ * verify that path exists or can be created
896
+ *
897
+ * @param folder path
898
+ * @return bool
899
+ */
900
+ private function createContentFolder ($ path )
901
+ {
902
+ if (mkdir ($ path , 0777 , true )) {
903
+ file_put_contents ($ path . '/index.html ' , <<<EOF
904
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
905
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
906
+ <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
907
+ <head>
908
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
909
+ <meta name="robots" content="noindex, nofollow" />
910
+ <title>forbidden</title>
911
+ <style type="text/css">
912
+ body {
913
+ background: #F0F0F0;
914
+ color: #010101;
915
+ font-family: verdana,arial;
916
+ font-size: 14px;
917
+ font-weight: bold;
918
+ }
919
+ #msg {
920
+ border: 1px solid #F08080;
921
+ background: #FFF0F0;
922
+ padding: 20px;
923
+ margin: 5px;
924
+ }
925
+ </style>
926
+ </head>
927
+ <body>
928
+ <div id="msg">you don't have permission to access this resource</div>
929
+ </body>
930
+ </html>
931
+ EOF
932
+ );
933
+
934
+ return true ;
935
+ }
936
+
937
+ return false ;
938
+ }
870
939
}
871
940
872
941
?>
0 commit comments