2 /************************************************************************
3 * MXChange v0.2.1 Start: 03/25/2004 *
4 * =============== Last change: 09/29/2004 *
6 * -------------------------------------------------------------------- *
7 * File : extensions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Extension management *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Erweiterungen-Management *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
18 * This program is free software; you can redistribute it and/or modify *
19 * it under the terms of the GNU General Public License as published by *
20 * the Free Software Foundation; either version 2 of the License, or *
21 * (at your option) any later version. *
23 * This program is distributed in the hope that it will be useful, *
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
26 * GNU General Public License for more details. *
28 * You should have received a copy of the GNU General Public License *
29 * along with this program; if not, write to the Free Software *
30 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
32 ************************************************************************/
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
37 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
41 function EXTENSION_REGISTER ($ext_name, $id, $dry_run=false)
43 global $NOTES, $_CONFIG, $INC_POOL, $cacheInstance;
44 // We want to register an extension and registration status is by default "failed" (= false)
45 $EXT_LOAD_MODE = "register"; $ret = false; $SQLs = array();
48 // This shall never do a non-admin user!
49 if (!IS_ADMIN()) return false;
51 // Is this extension already installed?
52 if (EXT_IS_ACTIVE($ext_name)) return false;
55 $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name);
57 // Does this extension exists?
58 if (FILE_READABLE($file))
60 // Extension was found so we can load it in registration mode
63 // And run possible updates
64 $EXT_LOAD_MODE = "update"; $EXT_UPDATE_DEPENDS = "";
65 foreach ($EXT_VER_HISTORY as $EXT_VER)
68 if (((GET_EXT_VERSION("sql_patches") != '') && ($_CONFIG['verbose_sql'] == "Y")) || (!EXT_IS_ACTIVE("sql_patches")))
70 if (!empty($UPDATE_NOTES))
73 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".$UPDATE_NOTES."<br /><br />\n";
76 elseif (($EXT_VER == "0.0") || ($EXT_VER == "0.0.0"))
79 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".INITIAL_RELEASE."<br /><br />\n";
83 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br /><I>".NO_UPDATE_NOTES."</I><br /><br />\n";
88 // Does this extension depends on an outstanding update of another update?
89 if (!empty($EXT_UPDATE_DEPENDS))
91 // Backup SQL commands and clear current
92 $SQLs2 = $SQLs; $SQLs = array(); $test = false;
94 // Backup language as well
95 $LANG_BCK = $EXT_LANG_PREFIX; $EXT_ALWAYS_ACTIVE = "N";
97 // Load required extension also in update mode
98 $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $EXT_UPDATE_DEPENDS);
100 // Check for required file
101 if (FILE_READABLE($file))
103 // File exists so let's load it
104 $VER_BACKUP = $EXT_VERSION;
106 $EXT_VERSION = $VER_BACKUP;
108 // If versions mismatch update extension first
109 $ext_ver = GET_EXT_VERSION($EXT_UPDATE_DEPENDS);
112 // Extension not registered so far so first load task's ID...
113 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_task_system WHERE task_type='EXTENSION' AND subject LIKE '[%s:]%%' LIMIT 1",
114 array($EXT_UPDATE_DEPENDS), __FILE__, __LINE__);
115 if (SQL_NUMROWS($result) == 1)
117 // Task found so load task's ID and register extension...
118 list($task) = SQL_FETCHROW($result);
119 SQL_FREERESULT($result);
120 $test = EXTENSION_REGISTER($EXT_UPDATE_DEPENDS, $task, $dry_run);
123 elseif ($ext_ver != $EXT_VERSION)
125 // Ok, update this extension now
126 EXTENSION_UPDATE(basename($file), $EXT_UPDATE_DEPENDS, $ext_ver, $dry_run);
133 // Nothing to register / update before...
139 // Required file for update does not exists!
141 // But this is fine for the first time...
144 // Finally restore previous SQLs
145 $SQLs = $SQLs2; unset($SQLs2);
146 $EXT_LANG_PREFIX = $LANG_BCK;
150 // Does not depend on an other extension
154 // Switch back to register mode
155 $EXT_LOAD_MODE = "register";
157 // Does everthing before wents ok?
159 // "Dry-run-mode" activated?
162 foreach ($SQLs as $sql) {
163 // Trim spaces away which we don't need
166 // Is there still an SQL query?
168 // Do we have an "ALTER TABLE" command?
169 if (substr(strtolower($sql), 0, 11) == "alter table") {
170 // Analyse the alteration command
171 SQL_ALTER_TABLE($sql, __FILE__, __LINE__);
173 // Run regular SQL command
174 $result = SQL_QUERY($sql, __FILE__, __LINE__, false);
179 // Remove cache file(s) if extension is active
180 if ((EXT_IS_ACTIVE("cache")) || (GET_EXT_VERSION("cache") != "")) {
181 //* DEBUG: */ echo __LINE__.": DESTROY!<br />\n";
182 // Remove cache files
183 if ($cacheInstance->cache_file("extensions", true)) $cacheInstance->cache_destroy();
184 if ($cacheInstance->cache_file("mod_reg", true)) $cacheInstance->cache_destroy();
185 if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy();
188 // Check for added include files
189 if (count($INC_POOL > 0)) {
190 // Loads every include file
191 foreach ($INC_POOL as $inc) {
196 // Register extension
197 $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_extensions (ext_name, ext_lang_file, ext_active, ext_version) VALUES ('%s', '%s', '%s', '%s')",
198 array($ext_name, $EXT_LANG_PREFIX, $EXT_ALWAYS_ACTIVE, $EXT_VERSION), __FILE__, __LINE__);
200 // Update task management
201 ADMIN_SOLVE_TASK($id);
203 // In normal mode return a true on success
209 // Rewrite SQL command to keep { and } inside
210 foreach ($SQLs as $key => $sql) {
211 $sql = str_replace('{', "{", str_replace('}', "}", $sql));
215 // In "dry-run" mode return array with all SQL commands
218 // Remove all SQL commands
222 // No, an error occurs while registering extension :-(
225 } elseif (($id > 0) && (!empty($ext_name))) {
226 // Remove task from system when id and extension's name is valid
227 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND status='NEW' LIMIT 1",
228 array(bigintval($id)), __FILE__, __LINE__);
231 // Is this the sql_patches?
232 //* DEBUG: */ echo __LINE__.":{$ext_name}/{$EXT_LOAD_MODE}<br />\n";
233 if (($ext_name == "sql_patches") && (($EXT_LOAD_MODE == "register") || ($EXT_LOAD_MODE == "remove")) && (!$dry_run) && ($test)) {
234 // Then redirect to logout
235 //* DEBUG: */ echo __LINE__.": LOAD!<br />\n";
236 LOAD_URL("modules.php?module=admin&logout=1&".$EXT_LOAD_MODE."=sql_patches");
239 // Return status code
243 function EXTENSION_RUN_SQLS($id, $EXT_LOAD_MODE) {
244 global $cacheInstance;
247 // By default no SQL has been executed
250 // This shall never do a non-admin user!
251 if (!IS_ADMIN()) return false;
253 // Get extension's name
254 $ext_name = GET_EXT_NAME($id);
255 if (empty($ext_name)) return false;
257 // Load extension in detected mode
258 //* DEBUG: */ echo __FUNCTION__.":ext_name[{$id}]={$ext_name}<br />\n";
259 $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name);
260 if (FILE_READABLE($file)) {
265 //* DEBUG: */ echo __FUNCTION__.":SQLs::count=".count($SQLs)."<br />\n";
266 if ((is_array($SQLs) && (sizeof($SQLs) > 0))) {
267 // Run SQL commands...
268 foreach ($SQLs as $sql) {
269 // Trim spaces away which we don't need
272 // Is there still an SQL query?
274 // Do we have an "ALTER TABLE" command?
275 //* DEBUG: */ echo __FUNCTION__.":SQL={$SQL}<br />\n";
276 if (substr(strtolower($sql), 0, 11) == "alter table") {
277 // Analyse the alteration command
278 SQL_ALTER_TABLE($sql, __FILE__, __LINE__);
280 // Run regular SQL command
281 $result = SQL_QUERY($sql, __FILE__, __LINE__, false);
284 // An SQL has been executed
290 if ($EXT_LOAD_MODE == "remove") {
291 // Delete this extension (remember to remove it from your server *before* you click on welcome!
292 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_extensions WHERE id=%s LIMIT 1",
293 array($id), __FILE__, __LINE__);
296 //* DEBUG: */ echo __FUNCTION__.":mode={$EXT_LOAD_MODE}<br />\n";
298 // Remove cache file(s) if extension is active
299 if (((EXT_IS_ACTIVE("cache")) || (GET_EXT_VERSION("cache") != "")) && (((SQL_AFFECTEDROWS() == 1) && ($EXT_LOAD_MODE == "remove")) || ($sqlRan === true))) {
300 //* DEBUG: */ echo __LINE__.": DESTROY!<br />\n";
301 // Remove cache files
302 if ($cacheInstance->cache_file("extensions", true)) $cacheInstance->cache_destroy();
303 if ($cacheInstance->cache_file("mod_reg", true)) $cacheInstance->cache_destroy();
304 if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy();
307 // Is this the sql_patches?
308 //* DEBUG: */ echo __LINE__.": {$id}/{$ext_name}/{$EXT_LOAD_MODE}<br />\n";
309 if (($ext_name == "sql_patches") && (($EXT_LOAD_MODE == "register") || ($EXT_LOAD_MODE == "remove"))) {
310 // Then redirect to logout
311 //* DEBUG: */ echo __LINE__.": LOAD!<br />\n";
312 LOAD_URL("modules.php?module=admin&logout=1&".$EXT_LOAD_MODE."=sql_patches");
316 // Check if given extension is active
317 function EXT_IS_ACTIVE ($ext_name, $ignore_admin = false, $ignore_cache = false) {
318 global $cacheArray, $_CONFIG;
320 // Extensions are all inactive during installation
321 if ((!isBooleanConstantAndTrue('mxchange_installed')) || (isBooleanConstantAndTrue('mxchange_installing')) || (empty($ext_name))) return false;
323 // Extension's file name will also be checked
324 $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name);
325 if (!FILE_READABLE($file)) return false;
326 //* DEBUG: */ echo "*".$ext_name."(".count($cacheArray).")<br />";
328 // Not active is the default
332 if ((!empty($cacheArray['extensions']['ext_active'][$ext_name])) && (!$ignore_cache)) {
334 //* DEBUG: */ echo "CACHE! ext_name={$ext_name}<br />\n";
335 $active = $cacheArray['extensions']['ext_active'][$ext_name];
338 if (isset($_CONFIG['cache_hits'])) $_CONFIG['cache_hits']++;
339 } elseif (($ext_name == "cache") || (GET_EXT_VERSION("cache") == "")) {
340 //* DEBUG: */ echo "DB! ext_name={$ext_name}<br />\n";
341 // Load from database
342 $result = SQL_QUERY_ESC("SELECT ext_active FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
343 array($ext_name), __FILE__, __LINE__);
344 if (SQL_NUMROWS($result) == 0) {
345 // Extension was not found!
348 list($active) = SQL_FETCHROW($result);
349 //* DEBUG: */ echo $ext_name."[DB]: {$active}<br />\n";
350 SQL_FREERESULT($result);
353 $cacheArray['extensions']['ext_active'][$ext_name] = $active;
355 // Extension not active!
356 //* DEBUG: */ echo $ext_name.": Not active!<br />\n";
357 $cacheArray['extensions']['ext_active'][$ext_name] = "N";
360 // Create FQFN for extension file
361 $inc = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name);
364 //DEBUG_LOG(__FUNCTION__.": ext_name={$ext_name},active={$active}");
366 // Is this extension activated? (For admins we always have active extensions...)
375 // Get version from extensions
376 function GET_EXT_VERSION ($ext_name) {
377 global $cacheArray, $_CONFIG, $cacheInstance;
380 // Extensions are all inactive during installation
381 if ((!isBooleanConstantAndTrue('mxchange_installed')) || (isBooleanConstantAndTrue('mxchange_installing'))) return "";
382 //* DEBUG: */ echo __FUNCTION__.": ext_name={$ext_name}<br />\n";
384 // Is the cache written?
385 if (!empty($cacheArray['extensions']['ext_version'][$ext_name])) {
386 // Load data from cache
387 //* DEBUG: */ echo __FUNCTION__.": CACHE!<br />\n";
388 $ret = $cacheArray['extensions']['ext_version'][$ext_name];
391 if (isset($_CONFIG['cache_hits'])) $_CONFIG['cache_hits']++; else $_CONFIG['cache_hits'] = 1;
392 } elseif (!is_object($cacheInstance)) {
393 // Load from database
394 $result = SQL_QUERY_ESC("SELECT ext_version FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
395 array($ext_name), __FILE__, __LINE__);
396 list($ret) = SQL_FETCHROW($result);
397 SQL_FREERESULT($result);
400 $cacheArray['extensions']['ext_version'][$ext_name] = $ret;
404 //* DEBUG: */ echo __FUNCTION__.": ret={$ret}<br />\n";
408 function EXTENSION_UPDATE($file, $ext, $EXT_VER, $dry_run=false)
410 // This shall never do a non-admin user!
411 global $cacheInstance, $_CONFIG, $NOTES; $SQLs = array();
412 if ((!IS_ADMIN()) || (empty($ext))) return false;
414 // Load extension in update mode
415 $EXT_LOAD_MODE = "update"; $EXT_UPDATE_DEPENDS = ""; $NOTES = "";
416 include(PATH."inc/extensions/".$file);
417 if (!empty($EXT_UPDATE_DEPENDS))
419 // Update another extension first!
420 $test = EXTENSION_UPDATE(("ext-".$EXT_UPDATE_DEPENDS.".php"), $EXT_UPDATE_DEPENDS, GET_EXT_VERSION($EXT_UPDATE_DEPENDS), $dry_run);
423 // Check if version is updated
424 if ((($EXT_VERSION != $EXT_VER) || ($dry_run)) && (is_array($EXT_VER_HISTORY)))
426 // Search for starting point
427 $start = array_search($EXT_VER, $EXT_VER_HISTORY);
430 // And load SQL queries in order of version history
431 for ($idx = ($start + 1); $idx < sizeof($EXT_VER_HISTORY); $idx++)
433 // Remove old SQLs array to prevent possible bugs
434 if (!$dry_run) { unset($SQLs); $SQLs = array(); }
437 $EXT_VER = $EXT_VER_HISTORY[$idx];
440 include(PATH."inc/extensions/".$file);
443 if ($_CONFIG['verbose_sql'] == "Y")
445 $EXT_VER = $EXT_VER_HISTORY[$idx];
446 if (!empty($UPDATE_NOTES))
448 // Update notes found
449 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".$UPDATE_NOTES."<br /><br />\n";
452 elseif ($EXT_VER == "0.0")
455 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".INITIAL_RELEASE."<br /><br />\n";
459 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br /><I>".NO_UPDATE_NOTES."</I><br /><br />\n";
464 if ((is_array($SQLs)) && (!$dry_run))
467 foreach ($SQLs as $sql)
472 // Do we have an "ALTER TABLE" command?
473 if (substr(strtolower($sql), 0, 11) == "alter table") {
474 // Analyse the alteration command
475 SQL_ALTER_TABLE($sql, __FILE__, __LINE__);
477 // Run regular SQL command
478 $result = SQL_QUERY($sql, __FILE__, __LINE__, false);
482 } elseif (GET_EXT_VERSION("sql_patches") == "") {
483 // Remove SQLs if extension is not installed
490 // In normal mode insert task and update extension's version...
491 $ext_subj = "[UPDATE-".$ext."-".$EXT_VERSION.":] ".ADMIN_UPDATE_EXT_SUBJ;
494 CREATE_EXTENSION_UPDATE_TASK(GET_ADMIN_ID(get_session('admin_login')), $ext_subj, addslashes($NOTES));
496 // Update extension's version
497 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_extensions SET ext_version='%s' WHERE ext_name='%s' LIMIT 1",
498 array($EXT_VERSION, $ext), __FILE__, __LINE__);
501 if (EXT_IS_ACTIVE("cache")) {
502 if ($cacheInstance->cache_file("extensions", true) == true) $cacheInstance->cache_destroy();
503 if ($cacheInstance->cache_file("config", true) == true) $cacheInstance->cache_destroy();
504 if ($cacheInstance->cache_file("mod_reg", true) == true) $cacheInstance->cache_destroy();
510 // In "dry-run" mode return array with SQL commands
516 function EXTENSION_VERBOSE_TABLE($SQLs, $title = ADMIN_SQLS_EXECUTED_ON_REMOVAL, $dashed = "", $switch = false, $WIDTH = "480") {
519 $S = false; $SW = 2; $i = 1;
521 if ((is_array($SQLs)) && (GET_EXT_VERSION("sql_patches")) && ($_CONFIG['verbose_sql'] == "Y")) {
522 $OUT = "<DIV align=\"center\">
523 <TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"".$WIDTH."\" align=\"center\"".$dashed.">
525 <TD colspan=\"2\" align=\"center\" class=\"admin_title bottom2\" height=\"24\">
526 <STRONG>".$title.":</STRONG>
529 foreach ($SQLs as $idx => $sql) {
534 <TD class=\"switch_sw".(3 - $SW)." bottom2\" style=\"padding-left: 2px\" width=\"30\">".$i.".</TD>
535 <TD class=\"switch_sw".(3 - $SW)." bottom2\" style=\"padding-left: 5px; padding-right: 5px\">
539 if ($switch) $SW = 3 - $SW;
545 if ((!$S) && (GET_EXT_VERSION("sql_patches")) && ($_CONFIG['verbose_sql'] == "Y")) {
546 // No addional SQL commands to run
548 <TD colspan=\"2\" align=\"center\" class=\"switch_sw2 bottom2\" height=\"24\">
549 <FONT class=\"admin_note\">".ADMIN_NO_ADDIONAL_SQLS."</FONT>
555 // Add missing close-table tag
563 // Get extension name from id
564 function GET_EXT_NAME ($id) {
566 global $cacheArray, $_CONFIG;
567 if (!empty($cacheArray['extensions']['ext_name'][$id])) {
569 $ret = $cacheArray['extensions']['ext_name'][$id];
572 $_CONFIG['cache_hits']++;
573 } elseif (!EXT_IS_ACTIVE("cache")) {
574 // Load from database
575 $result = SQL_QUERY_ESC("SELECT ext_name FROM "._MYSQL_PREFIX."_extensions WHERE id=%s LIMIT 1",
576 array(bigintval($id)), __FILE__, __LINE__);
577 list($ret) = SQL_FETCHROW($result);
578 SQL_FREERESULT($result);
582 // Get extension id from name
583 function GET_EXT_ID($name) {
585 global $cacheArray, $_CONFIG;
586 if (isset($cacheArray['extensions']['ext_id'][$name])) {
588 $ret = $cacheArray['extensions']['ext_id'][$name];
591 $_CONFIG['cache_hits']++;
592 } elseif (!EXT_IS_ACTIVE("cache")) {
593 // Load from database
594 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
595 array($name), __FILE__, __LINE__);
596 list($ret) = SQL_FETCHROW($result);
597 SQL_FREERESULT($result);