author | Dan |
Mon, 05 May 2008 20:28:13 -0400 | |
changeset 544 | 81b4499a963e |
parent 536 | 218a627eb53e |
child 555 | ac4c6a7f01d8 |
permissions | -rw-r--r-- |
1 | 1 |
<?php |
2 |
||
3 |
/* |
|
4 |
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
|
536 | 5 |
* Version 1.1.4 (Caoineag alpha 4) |
6 |
* Copyright (C) 2006-2008 Dan Fuhry |
|
1 | 7 |
* |
8 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
9 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
10 |
* |
|
11 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
12 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
13 |
*/ |
|
14 |
||
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
15 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
16 |
* Class used to handle and process plugin requests and loading. Singleton. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
17 |
* @package Enano |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
18 |
* @author Dan Fuhry <dan@enanocms.org> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
19 |
* @copyright (C) 2006-2008 Enano Project |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
20 |
* @license GNU General Public License <http://enanocms.org/Special:GNU_General_Public_License> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
21 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
22 |
|
1 | 23 |
class pluginLoader { |
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
24 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
25 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
26 |
* The list of hooks registered. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
27 |
* @var array |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
28 |
* @access private |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
29 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
30 |
|
1 | 31 |
var $hook_list; |
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
32 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
33 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
34 |
* The list of plugins that should be loaded. Used only by common.php. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
35 |
* @var array |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
36 |
* @access private |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
37 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
38 |
|
1 | 39 |
var $load_list; |
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
40 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
41 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
42 |
* The list of plugins that are loaded currently. This is only used by the loaded() method which in turn is |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
43 |
* used by template files with the <!-- IFPLUGIN --> special tag. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
44 |
* @var array |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
45 |
* @access private |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
46 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
47 |
|
1 | 48 |
var $loaded_plugins; |
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
49 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
50 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
51 |
* The list of plugins that are always loaded because they're part of the Enano core. This cannot be modified |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
52 |
* by any external code because user plugins are loaded after the load_list is calculated. Can be useful in |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
53 |
* alternative administration panel frameworks that need the list of system plugins. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
54 |
* @var array |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
55 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
56 |
|
403 | 57 |
var $system_plugins = Array('SpecialUserFuncs.php','SpecialUserPrefs.php','SpecialPageFuncs.php','SpecialAdmin.php','SpecialCSS.php','SpecialUpdownload.php','SpecialSearch.php','PrivateMessages.php','SpecialGroups.php', 'SpecialRecentChanges.php'); |
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
58 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
59 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
60 |
* Name kept for compatibility. Effectively a constructor. Calculates the list of plugins that should be loaded |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
61 |
* and puts that list in the $load_list property. Plugin developers have absolutely no use for this whatsoever. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
62 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
63 |
|
1 | 64 |
function loadAll() |
65 |
{ |
|
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
66 |
global $db, $session, $paths, $template, $plugins; // Common objects |
1 | 67 |
$dir = ENANO_ROOT.'/plugins/'; |
68 |
||
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
69 |
$this->load_list = $this->system_plugins; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
70 |
$q = $db->sql_query('SELECT plugin_filename, plugin_version FROM ' . table_prefix . 'plugins WHERE plugin_flags & ~' . PLUGIN_DISABLED . ' = plugin_flags;'); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
71 |
if ( !$q ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
72 |
$db->_die(); |
1 | 73 |
|
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
74 |
while ( $row = $db->fetchrow() ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
75 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
76 |
$this->load_list[] = $row['plugin_filename']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
77 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
78 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
79 |
$this->loaded_plugins = $this->get_plugin_list($this->load_list); |
1 | 80 |
|
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
81 |
// check for out-of-date plugins |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
82 |
foreach ( $this->load_list as $i => $plugin ) |
1 | 83 |
{ |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
84 |
if ( in_array($plugin, $this->system_plugins) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
85 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
86 |
if ( $this->loaded_plugins[$plugin]['status'] & PLUGIN_OUTOFDATE ) |
1 | 87 |
{ |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
88 |
// it's out of date, don't load |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
89 |
unset($this->load_list[$i]); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
90 |
unset($this->loaded_plugins[$plugin]); |
1 | 91 |
} |
92 |
} |
|
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
93 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
94 |
$this->load_list = array_unique($this->load_list); |
1 | 95 |
} |
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
96 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
97 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
98 |
* Name kept for compatibility. This method is used to add a new hook into the code somewhere. Plugins are encouraged |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
99 |
* to set hooks and hook into other plugins in a fail-safe way, this encourages reuse of code. Returns an array, whose |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
100 |
* values should be eval'ed. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
101 |
* @example <code> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
102 |
$code = $plugins->setHook('my_hook_name'); |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
103 |
foreach ( $code as $cmd ) |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
104 |
{ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
105 |
eval($cmd); |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
106 |
} |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
107 |
</code> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
108 |
* @param string The name of the hook. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
109 |
* @param array Deprecated. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
110 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
111 |
|
1 | 112 |
function setHook($name, $opts = Array()) { |
113 |
if(isset($this->hook_list[$name]) && is_array($this->hook_list[$name])) |
|
114 |
{ |
|
379
82b991bee797
Minor and hopefully non-breaking change to plugin loader to possibly double performance at hook points
Dan
parents:
378
diff
changeset
|
115 |
return array(implode("\n", $this->hook_list[$name])); |
1 | 116 |
} |
117 |
else |
|
118 |
{ |
|
119 |
return Array(); |
|
120 |
} |
|
121 |
} |
|
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
122 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
123 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
124 |
* Attaches to a hook effectively scheduling some code to be run at that point. You should try to keep hooks clean by |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
125 |
* making a function that has variables that need to be modified passed by reference. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
126 |
* @example Simple example: <code> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
127 |
$plugins->attachHook('render_wikiformat_pre', '$text = str_replace("Goodbye, Mr. Chips", "Hello, Mr. Carrots", $text);'); |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
128 |
</code> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
129 |
* @example More complicated example: <code> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
130 |
$plugins->attachHook('render_wikiformat_pre', 'myplugin_parser_ext($text);'); |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
131 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
132 |
// Notice that $text is passed by reference. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
133 |
function myplugin_parser_ext(&$text) |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
134 |
{ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
135 |
$text = str_replace("Goodbye, Mr. Chips", "Hello, Mr. Carrots", $text); |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
136 |
} |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
137 |
</code> |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
138 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
139 |
|
1 | 140 |
function attachHook($name, $code) { |
141 |
if(!isset($this->hook_list[$name])) |
|
142 |
{ |
|
143 |
$this->hook_list[$name] = Array(); |
|
144 |
} |
|
145 |
$this->hook_list[$name][] = $code; |
|
146 |
} |
|
464
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
147 |
|
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
148 |
/** |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
149 |
* Tell whether a plugin is loaded or not. |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
150 |
* @param string The filename of the plugin |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
151 |
* @return bool |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
152 |
*/ |
8063eace5b67
Documented includes/plugins.php to try and help plugin developers a little.
Dan
parents:
411
diff
changeset
|
153 |
|
1 | 154 |
function loaded($plugid) |
155 |
{ |
|
156 |
return isset( $this->loaded_plugins[$plugid] ); |
|
157 |
} |
|
507
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
158 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
159 |
/** |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
160 |
* Parses all special comment blocks in a plugin and returns an array in the format: |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
161 |
<code> |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
162 |
array( |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
163 |
0 => array( |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
164 |
'block' => 'upgrade', |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
165 |
// parsed from the block's parameters section |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
166 |
'release_from' => '1.0b1', |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
167 |
'release_to' => '1.0b2', |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
168 |
'value' => 'foo' |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
169 |
), |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
170 |
1 => array( |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
171 |
... |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
172 |
) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
173 |
); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
174 |
</code> |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
175 |
* @param string Path to plugin file |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
176 |
* @param string Optional. The type of block to fetch. If this is specified, only the block type specified will be read, all others will be discarded. |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
177 |
* @return array |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
178 |
*/ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
179 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
180 |
public static function parse_plugin_blocks($file, $type = false) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
181 |
{ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
182 |
if ( !file_exists($file) ) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
183 |
{ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
184 |
return array(); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
185 |
} |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
186 |
$blocks = array(); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
187 |
$contents = @file_get_contents($file); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
188 |
if ( empty($contents) ) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
189 |
{ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
190 |
return array(); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
191 |
} |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
192 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
193 |
$regexp = '#^/\*\*!([a-z0-9_]+)' // block header and type |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
194 |
. '(([\s]+[a-z0-9_]+[\s]*=[\s]*".+?"[\s]*;)*)' // parameters |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
195 |
. '[\s]*\*\*' . "\n" // spacing and header close |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
196 |
. '([\w\W]+?)' . "\n" // value |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
197 |
. '\*\*!\*/' // closing comment |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
198 |
. '#m'; |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
199 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
200 |
// Match out all blocks |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
201 |
$results = preg_match_all($regexp, $contents, $blocks); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
202 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
203 |
$return = array(); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
204 |
foreach ( $blocks[0] as $i => $_ ) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
205 |
{ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
206 |
if ( is_string($type) && $blocks[1][$i] !== $type ) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
207 |
continue; |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
208 |
|
519
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
209 |
$value =& $blocks[4][$i]; |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
210 |
// parse includes |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
211 |
preg_match_all('/^!include [\'"]?(.+?)[\'"]?$/m', $value, $includes); |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
212 |
foreach ( $includes[0] as $i => $replace ) |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
213 |
{ |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
214 |
$filename = ENANO_ROOT . '/' . $includes[1][$i]; |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
215 |
if ( @file_exists( $filename ) && @is_readable( $filename ) ) |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
216 |
{ |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
217 |
$contents = @file_get_contents($filename); |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
218 |
$value = str_replace_once($replace, $contents, $value); |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
219 |
} |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
220 |
} |
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
221 |
|
507
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
222 |
$el = self::parse_vars($blocks[2][$i]); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
223 |
$el['block'] = $blocks[1][$i]; |
519
94214ec0871c
Started work on the new plugin manager and associated management code. Very incomplete at this point and not usable.
Dan
parents:
507
diff
changeset
|
224 |
$el['value'] = $value; |
507
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
225 |
$return[] = $el; |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
226 |
} |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
227 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
228 |
return $return; |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
229 |
} |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
230 |
|
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
231 |
private static function parse_vars($var_block) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
232 |
{ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
233 |
preg_match_all('/[\s]+([a-z0-9_]+)[\s]*=[\s]*"(.+?)";/', $var_block, $matches); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
234 |
$return = array(); |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
235 |
foreach ( $matches[0] as $i => $_ ) |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
236 |
{ |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
237 |
$return[ $matches[1][$i] ] = $matches[2][$i]; |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
238 |
} |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
239 |
return $return; |
586fd7d3202d
Fixed some stray version numbers (again!); added support for Diffie-Hellman logins in the normal login form (not AJAX) - even works in IE
Dan
parents:
464
diff
changeset
|
240 |
} |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
241 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
242 |
/** |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
243 |
* Reads all plugins in the filesystem and cross-references them with the database, providing a very complete summary of plugins |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
244 |
* on the site. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
245 |
* @param array If specified, will restrict scanned files to this list. Defaults to null, which means all PHP files will be scanned. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
246 |
* @return array |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
247 |
*/ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
248 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
249 |
function get_plugin_list($restrict = null) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
250 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
251 |
global $db, $session, $paths, $template, $plugins; // Common objects |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
252 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
253 |
// Scan all plugins |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
254 |
$plugin_list = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
255 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
256 |
if ( $dirh = @opendir( ENANO_ROOT . '/plugins' ) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
257 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
258 |
while ( $dh = @readdir($dirh) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
259 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
260 |
if ( !preg_match('/\.php$/i', $dh) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
261 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
262 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
263 |
if ( is_array($restrict) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
264 |
if ( !in_array($dh, $restrict) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
265 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
266 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
267 |
$fullpath = ENANO_ROOT . "/plugins/$dh"; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
268 |
// it's a PHP file, attempt to read metadata |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
269 |
// pass 1: try to read a !info block |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
270 |
$blockdata = $this->parse_plugin_blocks($fullpath, 'info'); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
271 |
if ( empty($blockdata) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
272 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
273 |
// no !info block, check for old header |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
274 |
$fh = @fopen($fullpath, 'r'); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
275 |
if ( !$fh ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
276 |
// can't read, bail out |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
277 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
278 |
$plugin_data = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
279 |
for ( $i = 0; $i < 8; $i++ ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
280 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
281 |
$plugin_data[] = @fgets($fh, 8096); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
282 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
283 |
// close our file handle |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
284 |
fclose($fh); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
285 |
// is the header correct? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
286 |
if ( trim($plugin_data[0]) != '<?php' || trim($plugin_data[1]) != '/*' ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
287 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
288 |
// nope. get out. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
289 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
290 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
291 |
// parse all the variables |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
292 |
$plugin_meta = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
293 |
for ( $i = 2; $i <= 7; $i++ ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
294 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
295 |
if ( !preg_match('/^([A-z0-9 ]+?): (.+?)$/', trim($plugin_data[$i]), $match) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
296 |
continue 2; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
297 |
$plugin_meta[ strtolower($match[1]) ] = $match[2]; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
298 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
299 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
300 |
else |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
301 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
302 |
// parse JSON block |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
303 |
$plugin_data =& $blockdata[0]['value']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
304 |
$plugin_data = enano_clean_json(enano_trim_json($plugin_data)); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
305 |
try |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
306 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
307 |
$plugin_meta_uc = enano_json_decode($plugin_data); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
308 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
309 |
catch ( Exception $e ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
310 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
311 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
312 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
313 |
// convert all the keys to lowercase |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
314 |
$plugin_meta = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
315 |
foreach ( $plugin_meta_uc as $key => $value ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
316 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
317 |
$plugin_meta[ strtolower($key) ] = $value; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
318 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
319 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
320 |
if ( !isset($plugin_meta) || !is_array(@$plugin_meta) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
321 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
322 |
// parsing didn't work. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
323 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
324 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
325 |
// check for required keys |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
326 |
$required_keys = array('plugin name', 'plugin uri', 'description', 'author', 'version', 'author uri'); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
327 |
foreach ( $required_keys as $key ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
328 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
329 |
if ( !isset($plugin_meta[$key]) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
330 |
// not set, skip this plugin |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
331 |
continue 2; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
332 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
333 |
// decide if it's a system plugin |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
334 |
$plugin_meta['system plugin'] = in_array($dh, $this->system_plugins); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
335 |
// reset installed variable |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
336 |
$plugin_meta['installed'] = false; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
337 |
$plugin_meta['status'] = 0; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
338 |
// all checks passed |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
339 |
$plugin_list[$dh] = $plugin_meta; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
340 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
341 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
342 |
// gather info about installed plugins |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
343 |
$q = $db->sql_query('SELECT plugin_id, plugin_filename, plugin_version, plugin_flags FROM ' . table_prefix . 'plugins;'); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
344 |
if ( !$q ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
345 |
$db->_die(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
346 |
while ( $row = $db->fetchrow() ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
347 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
348 |
if ( !isset($plugin_list[ $row['plugin_filename'] ]) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
349 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
350 |
// missing plugin file, don't report (for now) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
351 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
352 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
353 |
$filename =& $row['plugin_filename']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
354 |
$plugin_list[$filename]['installed'] = true; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
355 |
$plugin_list[$filename]['status'] = PLUGIN_INSTALLED; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
356 |
$plugin_list[$filename]['plugin id'] = $row['plugin_id']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
357 |
if ( $row['plugin_version'] != $plugin_list[$filename]['version'] ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
358 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
359 |
$plugin_list[$filename]['status'] |= PLUGIN_OUTOFDATE; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
360 |
$plugin_list[$filename]['version installed'] = $row['plugin_version']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
361 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
362 |
if ( $row['plugin_flags'] & PLUGIN_DISABLED ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
363 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
364 |
$plugin_list[$filename]['status'] |= PLUGIN_DISABLED; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
365 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
366 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
367 |
$db->free_result(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
368 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
369 |
// sort it all out by filename |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
370 |
ksort($plugin_list); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
371 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
372 |
// done |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
373 |
return $plugin_list; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
374 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
375 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
376 |
/** |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
377 |
* Installs a plugin. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
378 |
* @param string Filename of plugin. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
379 |
* @param array The list of plugins as output by pluginLoader::get_plugin_list(). If not passed, the function is called, possibly wasting time. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
380 |
* @return array JSON-formatted but not encoded response |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
381 |
*/ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
382 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
383 |
function install_plugin($filename, $plugin_list = null) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
384 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
385 |
global $db, $session, $paths, $template, $plugins; // Common objects |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
386 |
global $lang; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
387 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
388 |
if ( !$plugin_list ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
389 |
$plugin_list = $this->get_plugin_list(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
390 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
391 |
// we're gonna need this |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
392 |
require_once ( ENANO_ROOT . '/includes/sql_parse.php' ); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
393 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
394 |
switch ( true ): case true: |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
395 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
396 |
// is the plugin in the directory and awaiting installation? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
397 |
if ( !isset($plugin_list[$filename]) || ( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
398 |
isset($plugin_list[$filename]) && $plugin_list[$filename]['installed'] |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
399 |
)) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
400 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
401 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
402 |
'mode' => 'error', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
403 |
'error' => 'Invalid plugin specified.', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
404 |
'debug' => $filename |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
405 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
406 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
407 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
408 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
409 |
$dataset =& $plugin_list[$filename]; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
410 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
411 |
// load up the installer schema |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
412 |
$schema = $this->parse_plugin_blocks( ENANO_ROOT . '/plugins/' . $filename, 'install' ); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
413 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
414 |
$sql = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
415 |
if ( !empty($schema) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
416 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
417 |
// parse SQL |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
418 |
$parser = new SQL_Parser($schema[0]['value'], true); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
419 |
$parser->assign_vars(array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
420 |
'TABLE_PREFIX' => table_prefix |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
421 |
)); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
422 |
$sql = $parser->parse(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
423 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
424 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
425 |
// schema is final, check queries |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
426 |
foreach ( $sql as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
427 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
428 |
if ( !$db->check_query($query) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
429 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
430 |
// aww crap, a query is bad |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
431 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
432 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
433 |
'error' => $lang->get('acppl_err_upgrade_bad_query'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
434 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
435 |
break 2; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
436 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
437 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
438 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
439 |
// this is it, perform installation |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
440 |
foreach ( $sql as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
441 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
442 |
if ( substr($query, 0, 1) == '@' ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
443 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
444 |
$query = substr($query, 1); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
445 |
$db->sql_query($query); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
446 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
447 |
else |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
448 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
449 |
if ( !$db->sql_query($query) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
450 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
451 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
452 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
453 |
|
529 | 454 |
// log action |
455 |
$time = time(); |
|
456 |
$ip_db = $db->escape($_SERVER['REMOTE_ADDR']); |
|
457 |
$username_db = $db->escape($session->username); |
|
458 |
$file_db = $db->escape($filename); |
|
459 |
$q = $db->sql_query('INSERT INTO '.table_prefix."logs(log_type, action, time_id, edit_summary, author, page_text) VALUES\n" |
|
460 |
. " ('security', 'plugin_install', $time, '$ip_db', '$username_db', '$file_db');"); |
|
461 |
if ( !$q ) |
|
462 |
$db->_die(); |
|
463 |
||
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
464 |
// register plugin |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
465 |
$version_db = $db->escape($dataset['version']); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
466 |
$filename_db = $db->escape($filename); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
467 |
$flags = PLUGIN_INSTALLED; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
468 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
469 |
$q = $db->sql_query('INSERT INTO ' . table_prefix . "plugins ( plugin_version, plugin_filename, plugin_flags )\n" |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
470 |
. " VALUES ( '$version_db', '$filename_db', $flags );"); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
471 |
if ( !$q ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
472 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
473 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
474 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
475 |
'success' => true |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
476 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
477 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
478 |
endswitch; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
479 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
480 |
return $return; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
481 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
482 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
483 |
/** |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
484 |
* Uninstalls a plugin, removing it completely from the database and calling any custom uninstallation code the plugin specifies. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
485 |
* @param string Filename of plugin. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
486 |
* @param array The list of plugins as output by pluginLoader::get_plugin_list(). If not passed, the function is called, possibly wasting time. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
487 |
* @return array JSON-formatted but not encoded response |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
488 |
*/ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
489 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
490 |
function uninstall_plugin($filename, $plugin_list = null) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
491 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
492 |
global $db, $session, $paths, $template, $plugins; // Common objects |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
493 |
global $lang; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
494 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
495 |
if ( !$plugin_list ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
496 |
$plugin_list = $this->get_plugin_list(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
497 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
498 |
// we're gonna need this |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
499 |
require_once ( ENANO_ROOT . '/includes/sql_parse.php' ); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
500 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
501 |
switch ( true ): case true: |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
502 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
503 |
// is the plugin in the directory and already installed? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
504 |
if ( !isset($plugin_list[$filename]) || ( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
505 |
isset($plugin_list[$filename]) && !$plugin_list[$filename]['installed'] |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
506 |
)) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
507 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
508 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
509 |
'mode' => 'error', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
510 |
'error' => 'Invalid plugin specified.', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
511 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
512 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
513 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
514 |
// get plugin id |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
515 |
$dataset =& $plugin_list[$filename]; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
516 |
if ( empty($dataset['plugin id']) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
517 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
518 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
519 |
'mode' => 'error', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
520 |
'error' => 'Couldn\'t retrieve plugin ID.', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
521 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
522 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
523 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
524 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
525 |
// load up the installer schema |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
526 |
$schema = $this->parse_plugin_blocks( ENANO_ROOT . '/plugins/' . $filename, 'uninstall' ); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
527 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
528 |
$sql = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
529 |
if ( !empty($schema) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
530 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
531 |
// parse SQL |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
532 |
$parser = new SQL_Parser($schema[0]['value'], true); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
533 |
$parser->assign_vars(array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
534 |
'TABLE_PREFIX' => table_prefix |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
535 |
)); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
536 |
$sql = $parser->parse(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
537 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
538 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
539 |
// schema is final, check queries |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
540 |
foreach ( $sql as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
541 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
542 |
if ( !$db->check_query($query) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
543 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
544 |
// aww crap, a query is bad |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
545 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
546 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
547 |
'error' => $lang->get('acppl_err_upgrade_bad_query'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
548 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
549 |
break 2; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
550 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
551 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
552 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
553 |
// this is it, perform uninstallation |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
554 |
foreach ( $sql as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
555 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
556 |
if ( substr($query, 0, 1) == '@' ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
557 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
558 |
$query = substr($query, 1); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
559 |
$db->sql_query($query); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
560 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
561 |
else |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
562 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
563 |
if ( !$db->sql_query($query) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
564 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
565 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
566 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
567 |
|
529 | 568 |
// log action |
569 |
$time = time(); |
|
570 |
$ip_db = $db->escape($_SERVER['REMOTE_ADDR']); |
|
571 |
$username_db = $db->escape($session->username); |
|
572 |
$file_db = $db->escape($filename); |
|
573 |
$q = $db->sql_query('INSERT INTO '.table_prefix."logs(log_type, action, time_id, edit_summary, author, page_text) VALUES\n" |
|
574 |
. " ('security', 'plugin_uninstall', $time, '$ip_db', '$username_db', '$file_db');"); |
|
575 |
if ( !$q ) |
|
576 |
$db->_die(); |
|
577 |
||
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
578 |
// deregister plugin |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
579 |
$q = $db->sql_query('DELETE FROM ' . table_prefix . "plugins WHERE plugin_id = {$dataset['plugin id']};"); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
580 |
if ( !$q ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
581 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
582 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
583 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
584 |
'success' => true |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
585 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
586 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
587 |
endswitch; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
588 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
589 |
return $return; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
590 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
591 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
592 |
/** |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
593 |
* Very intelligently upgrades a plugin to the version specified in the filesystem. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
594 |
* @param string Filename of plugin. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
595 |
* @param array The list of plugins as output by pluginLoader::get_plugin_list(). If not passed, the function is called, possibly wasting time. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
596 |
* @return array JSON-formatted but not encoded response |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
597 |
*/ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
598 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
599 |
function upgrade_plugin($filename, $plugin_list = null) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
600 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
601 |
global $db, $session, $paths, $template, $plugins; // Common objects |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
602 |
global $lang; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
603 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
604 |
if ( !$plugin_list ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
605 |
$plugin_list = $this->get_plugin_list(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
606 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
607 |
// we're gonna need this |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
608 |
require_once ( ENANO_ROOT . '/includes/sql_parse.php' ); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
609 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
610 |
switch ( true ): case true: |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
611 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
612 |
// is the plugin in the directory and already installed? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
613 |
if ( !isset($plugin_list[$filename]) || ( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
614 |
isset($plugin_list[$filename]) && !$plugin_list[$filename]['installed'] |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
615 |
)) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
616 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
617 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
618 |
'mode' => 'error', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
619 |
'error' => 'Invalid plugin specified.', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
620 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
621 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
622 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
623 |
// get plugin id |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
624 |
$dataset =& $plugin_list[$filename]; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
625 |
if ( empty($dataset['plugin id']) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
626 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
627 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
628 |
'mode' => 'error', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
629 |
'error' => 'Couldn\'t retrieve plugin ID.', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
630 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
631 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
632 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
633 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
634 |
// |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
635 |
// Here we go with the main upgrade process. This is the same logic that the |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
636 |
// Enano official upgrader uses, in fact it's the same SQL parser. We need |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
637 |
// list of all versions of the plugin to continue, though. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
638 |
// |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
639 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
640 |
if ( !isset($dataset['version list']) || ( isset($dataset['version list']) && !is_array($dataset['version list']) ) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
641 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
642 |
// no version list - update the version number but leave the rest alone |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
643 |
$version = $db->escape($dataset['version']); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
644 |
$q = $db->sql_query('UPDATE ' . table_prefix . "plugins SET plugin_version = '$version' WHERE plugin_id = {$dataset['plugin id']};"); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
645 |
if ( !$q ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
646 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
647 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
648 |
// send an error and notify the user even though it was technically a success |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
649 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
650 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
651 |
'error' => $lang->get('acppl_err_upgrade_not_supported'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
652 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
653 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
654 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
655 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
656 |
// build target list |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
657 |
$versions = $dataset['version list']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
658 |
$indices = array_flip($versions); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
659 |
$installed = $dataset['version installed']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
660 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
661 |
// is the current version upgradeable? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
662 |
if ( !isset($indices[$installed]) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
663 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
664 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
665 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
666 |
'error' => $lang->get('acppl_err_upgrade_bad_version'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
667 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
668 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
669 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
670 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
671 |
// does the plugin support upgrading to its own version? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
672 |
if ( !isset($indices[$installed]) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
673 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
674 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
675 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
676 |
'error' => $lang->get('acppl_err_upgrade_bad_target_version'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
677 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
678 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
679 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
680 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
681 |
// list out which versions to do |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
682 |
$index_start = @$indices[$installed] + 1; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
683 |
$index_stop = @$indices[$dataset['version']]; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
684 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
685 |
// Are we trying to go backwards? |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
686 |
if ( $index_stop <= $index_start ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
687 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
688 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
689 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
690 |
'error' => $lang->get('acppl_err_upgrade_to_older'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
691 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
692 |
break; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
693 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
694 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
695 |
// build the list of version sets |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
696 |
$ver_previous = $installed; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
697 |
$targets = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
698 |
for ( $i = $index_start; $i <= $index_stop; $i++ ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
699 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
700 |
$targets[] = array($ver_previous, $versions[$i]); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
701 |
$ver_previous = $versions[$i]; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
702 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
703 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
704 |
// parse out upgrade sections in plugin file |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
705 |
$plugin_blocks = $this->parse_plugin_blocks( ENANO_ROOT . '/plugins/' . $filename, 'upgrade' ); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
706 |
$sql_blocks = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
707 |
foreach ( $plugin_blocks as $block ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
708 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
709 |
if ( !isset($block['from']) || !isset($block['to']) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
710 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
711 |
continue; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
712 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
713 |
$key = "{$block['from']} TO {$block['to']}"; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
714 |
$sql_blocks[$key] = $block['value']; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
715 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
716 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
717 |
// do version list check |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
718 |
// for now we won't fret if a specific version set isn't found, we'll just |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
719 |
// not do that version and assume there were no DB changes. |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
720 |
foreach ( $targets as $i => $target ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
721 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
722 |
list($from, $to) = $target; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
723 |
$key = "$from TO $to"; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
724 |
if ( !isset($sql_blocks[$key]) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
725 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
726 |
unset($targets[$i]); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
727 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
728 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
729 |
$targets = array_values($targets); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
730 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
731 |
// parse and finalize schema |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
732 |
$schema = array(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
733 |
foreach ( $targets as $i => $target ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
734 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
735 |
list($from, $to) = $target; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
736 |
$key = "$from TO $to"; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
737 |
try |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
738 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
739 |
$parser = new SQL_Parser($sql_blocks[$key], true); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
740 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
741 |
catch ( Exception $e ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
742 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
743 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
744 |
'mode' => 'error', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
745 |
'error' => 'SQL parser init exception', |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
746 |
'debug' => "$e" |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
747 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
748 |
break 2; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
749 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
750 |
$parser->assign_vars(array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
751 |
'TABLE_PREFIX' => table_prefix |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
752 |
)); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
753 |
$parsed = $parser->parse(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
754 |
foreach ( $parsed as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
755 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
756 |
$schema[] = $query; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
757 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
758 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
759 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
760 |
// schema is final, check queries |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
761 |
foreach ( $schema as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
762 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
763 |
if ( !$db->check_query($query) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
764 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
765 |
// aww crap, a query is bad |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
766 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
767 |
'mode' => 'error', |
528
43535769970b
Fixed some bad language string references in plugin management API
Dan
parents:
527
diff
changeset
|
768 |
'error' => $lang->get('acppl_err_upgrade_bad_query'), |
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
769 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
770 |
break 2; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
771 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
772 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
773 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
774 |
// this is it, perform upgrade |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
775 |
foreach ( $schema as $query ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
776 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
777 |
if ( substr($query, 0, 1) == '@' ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
778 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
779 |
$query = substr($query, 1); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
780 |
$db->sql_query($query); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
781 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
782 |
else |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
783 |
{ |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
784 |
if ( !$db->sql_query($query) ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
785 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
786 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
787 |
} |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
788 |
|
529 | 789 |
// log action |
790 |
$time = time(); |
|
791 |
$ip_db = $db->escape($_SERVER['REMOTE_ADDR']); |
|
792 |
$username_db = $db->escape($session->username); |
|
793 |
$file_db = $db->escape($filename); |
|
794 |
$q = $db->sql_query('INSERT INTO '.table_prefix."logs(log_type, action, time_id, edit_summary, author, page_text) VALUES\n" |
|
795 |
. " ('security', 'plugin_upgrade', $time, '$ip_db', '$username_db', '$file_db');"); |
|
796 |
if ( !$q ) |
|
797 |
$db->_die(); |
|
798 |
||
527
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
799 |
// update version number |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
800 |
$version = $db->escape($dataset['version']); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
801 |
$q = $db->sql_query('UPDATE ' . table_prefix . "plugins SET plugin_version = '$version' WHERE plugin_id = {$dataset['plugin id']};"); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
802 |
if ( !$q ) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
803 |
$db->die_json(); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
804 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
805 |
// all done :-) |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
806 |
$return = array( |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
807 |
'success' => true |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
808 |
); |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
809 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
810 |
endswitch; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
811 |
|
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
812 |
return $return; |
21e11f564463
(Hopefully) finished new plugin manager and implemented the utilization of it. Still HIGHLY experimental.
Dan
parents:
519
diff
changeset
|
813 |
} |
1 | 814 |
} |
815 |
||
816 |
?> |