Skip to content

Commit a1c98e8

Browse files
author
Mark Vincent
authored
Merge pull request #46 from WildcardSearch/maintenance
2.1.2 Release
2 parents b0a53c8 + b6a12e1 commit a1c98e8

File tree

10 files changed

+175
-77
lines changed

10 files changed

+175
-77
lines changed
Loading
Loading
Loading
Loading
Loading

Upload/inc/plugins/yourcode/classes/WildcardPluginInstaller010202.php Upload/inc/plugins/yourcode/classes/WildcardPluginInstaller020000.php

+140-71
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
*
1010
*/
1111

12-
class WildcardPluginInstaller010202 implements WildcardPluginInstallerInterface010000
12+
class WildcardPluginInstaller020000 implements WildcardPluginInstallerInterface010000
1313
{
1414
/**
1515
* @const version
1616
*/
17-
const VERSION = '1.2.2';
17+
const VERSION = '2.0.0';
1818

1919
/**
2020
* @var object a copy of the MyBB db object
@@ -92,69 +92,93 @@ class WildcardPluginInstaller010202 implements WildcardPluginInstallerInterface0
9292
protected $images = array();
9393

9494
/**
95-
* load the installation data and prepare for anything
95+
* load the installation data
9696
*
9797
* @param string path to the install data
9898
* @return void
9999
*/
100-
public function __construct($path = '')
100+
public function __construct($path='')
101101
{
102102
if (!trim($path) ||
103103
!file_exists($path)) {
104104
return;
105105
}
106106

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+
*/
107116
global $lang, $db;
117+
108118
require_once $path;
119+
109120
foreach (array('tables', 'columns', 'settings', 'templates', 'images', 'styleSheets') as $key) {
110121
if (!is_array($$key) ||
111122
empty($$key)) {
112123
continue;
113124
}
114125

115126
$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+
}
124128

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;
129135
}
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';
137140
}
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;
145150
}
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;
155151
}
156152
}
157153

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+
158182
// snag a copy of the db object
159183
$this->db = $db;
160184
}
@@ -216,8 +240,8 @@ protected function addTable($table, $columns)
216240

217241
// create the table if it doesn't already exist
218242
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};");
221245
}
222246
}
223247

@@ -256,8 +280,9 @@ protected function removeTables()
256280
return;
257281
}
258282

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+
}
261286
}
262287

263288
/**
@@ -266,25 +291,19 @@ protected function removeTables()
266291
* @param array tables and columns
267292
* @return void
268293
*/
269-
protected function addColumns($columns = '')
294+
protected function addColumns($columns='')
270295
{
271296
if (!is_array($columns) ||
272297
empty($columns)) {
273298
$columns = $this->columns;
274299
}
275300

276301
foreach ($columns as $table => $allColumns) {
277-
$sep = $addedColumns = '';
278302
foreach ($allColumns as $title => $definition) {
279303
if (!$this->fieldExists($table, $title)) {
280-
$addedColumns .= "{$sep}{$title} {$definition}";
281-
$sep = ', ADD ';
304+
$this->db->add_column($table, $title, $definition);
282305
}
283306
}
284-
if (strlen($addedColumns) > 0) {
285-
// trickery, again
286-
$this->db->add_column($table, $addedColumns, '');
287-
}
288307
}
289308
}
290309

@@ -302,17 +321,11 @@ protected function removeColumns()
302321
}
303322

304323
foreach ($this->columns as $table => $columns) {
305-
$sep = $droppedColumns = '';
306324
foreach ($columns as $title => $definition) {
307325
if ($this->fieldExists($table, $title)) {
308-
$droppedColumns .= "{$sep}{$title}";
309-
$sep = ', DROP ';
326+
$this->db->drop_column($table, $title);
310327
}
311328
}
312-
if (strlen($droppedColumns) > 0) {
313-
// tricky, tricky xD
314-
$result = $this->db->drop_column($table, $droppedColumns);
315-
}
316329
}
317330
}
318331

@@ -551,7 +564,7 @@ protected function addStyleSheets()
551564
// now cache the actual files
552565
require_once MYBB_ROOT . "{$config['admin_dir']}/inc/functions_themes.php";
553566

554-
if(!cache_stylesheet(1, $data['cachefile'], $data['stylesheet']))
567+
if(!cache_stylesheet(1, $styleSheet['cachefile'], $data['stylesheet']))
555568
{
556569
$this->db->update_query("themestylesheets", array('cachefile' => "css.php?stylesheet={$sid}"), "sid='{$sid}'", 1);
557570
}
@@ -663,7 +676,7 @@ protected function addImages()
663676
!mkdir("{$path}/images", 0777, true)) ||
664677
($mainFolder &&
665678
!is_dir("{$path}/images{$mainFolder}") &&
666-
!mkdir("{$path}/images{$mainFolder}", 0777, true))) {
679+
!$this->createContentFolder("{$path}/images{$mainFolder}"))) {
667680
continue;
668681
}
669682

@@ -693,7 +706,7 @@ protected function addImages()
693706
if (!is_dir($path) ||
694707
($mainFolder &&
695708
!is_dir("{$path}{$mainFolder}") &&
696-
!mkdir("{$path}{$mainFolder}", 0777, true))) {
709+
!$this->createContentFolder("{$path}{$mainFolder}"))) {
697710
continue;
698711
}
699712

@@ -770,14 +783,23 @@ protected function buildTableList()
770783
{
771784
global $config;
772785

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);
777789

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+
}
781803
}
782804
return $tableList;
783805
}
@@ -822,7 +844,7 @@ protected function buildFieldList($table)
822844
* @param bool acp or forum
823845
* @return array keys of folder names
824846
*/
825-
private function buildThemeList($acp = false)
847+
private function buildThemeList($acp=false)
826848
{
827849
static $cache;
828850
$folderList = array();
@@ -835,7 +857,8 @@ private function buildThemeList($acp = false)
835857
foreach (new DirectoryIterator(MYBB_ADMIN_DIR . 'styles') as $di) {
836858
$folder = $di->getFilename();
837859

838-
if ($di->isDot() ||
860+
if ($folder == 'default' ||
861+
$di->isDot() ||
839862
!$di->isDir() ||
840863
@!file_exists(MYBB_ADMIN_DIR . "styles/{$folder}/main.css")) {
841864
continue;
@@ -850,7 +873,7 @@ private function buildThemeList($acp = false)
850873
return $cache['forum'];
851874
}
852875

853-
$duplicates = array();
876+
$duplicates = array('images' => 1);
854877
$query = $this->db->simple_select('themes', 'pid, properties');
855878
while ($theme = $this->db->fetch_array($query)) {
856879
$properties = unserialize($theme['properties']);
@@ -867,6 +890,52 @@ private function buildThemeList($acp = false)
867890

868891
return $folderList;
869892
}
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+
}
870939
}
871940

872941
?>

Upload/inc/plugins/yourcode/classes/YourCodeInstaller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* plugin specific extension
55
*/
66

7-
class YourCodeInstaller extends WildcardPluginInstaller010202
7+
class YourCodeInstaller extends WildcardPluginInstaller020000
88
{
99
static public function getInstance()
1010
{

Upload/inc/plugins/yourcode/forum.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,13 @@ function yourcode_run($message)
7575
if (is_array($yourcode['active']['restricted_view']['callback']) &&
7676
!empty($yourcode['active']['restricted_view']['callback'])) {
7777
foreach ($yourcode['active']['restricted_view']['callback'] as $code) {
78-
if ($code['can_view']) {
79-
if (!yourcode_check_user_permissions($code['can_view'])) {
80-
$code['replacement'] = $code['alt_replacement'];
81-
}
78+
if ($code['can_view'] &&
79+
!yourcode_check_user_permissions($code['can_view'])) {
80+
$yourcode['active']['simple']['nestable'][] = array('find' => $code['find'], 'replacement' => $code['alt_replacement']);
81+
$yourcode['active']['simple']['nestable_count']++;
82+
} else {
83+
$yourcode['active']['simple']['callback'][] = array('find' => $code['find'], 'replacement' => $code['replacement']);
8284
}
83-
$yourcode['active']['simple']['callback'][] = array('find' => $code['find'], 'replacement' => $code['replacement']);
8485
}
8586
}
8687
$yourcode['active']['simple']['callback_count'] = count($yourcode['active']['simple']['callback']);

Upload/inc/plugins/yourcode/install.php

+6
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,12 @@ function yourcode_activate()
165165
));
166166
}
167167

168+
if (version_compare($oldVersion, '2.1.2', '<')) {
169+
$removedFiles = array_merge($removedFiles, array(
170+
'inc/plugins/yourcode/classes/WildcardPluginInstaller010202.php',
171+
));
172+
}
173+
168174
foreach ($removedFiles as $file) {
169175
@unlink(MYBB_ROOT . "inc/plugins/yourcode/classes/{$file}");
170176
}

0 commit comments

Comments
 (0)