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 (!defined('__SECURITY')) {
36 $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)) {
59 // Extension was found so we can load it in registration mode
60 $EXT_ALWAYS_ACTIVE = "N";
63 // And run possible updates
64 $EXT_LOAD_MODE = "update"; $EXT_UPDATE_DEPENDS = "";
65 foreach ($EXT_VER_HISTORY as $EXT_VER) {
66 // Load extension in update mode
69 // Do we have an update?
70 if (((GET_EXT_VERSION("sql_patches") != "") && ($_CONFIG['verbose_sql'] == "Y")) || (!EXT_IS_ACTIVE("sql_patches"))) {
71 if (!empty($UPDATE_NOTES)) {
73 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".$UPDATE_NOTES."<br /><br />\n";
75 } elseif (($EXT_VER == "0.0") || ($EXT_VER == "0.0.0")) {
77 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".INITIAL_RELEASE."<br /><br />\n";
79 // No update notes found!
80 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br /><I>".NO_UPDATE_NOTES."</I><br /><br />\n";
85 // Does this extension depends on an outstanding update of another update?
86 if (!empty($EXT_UPDATE_DEPENDS)) {
87 // Backup SQL commands and clear current
92 // Backup language as well
93 $LANG_BCK = $EXT_LANG_PREFIX;
94 $EXT_ALWAYS_ACTIVE = "N";
96 // Load required extension also in update mode
97 $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $EXT_UPDATE_DEPENDS);
99 // Check for required file
100 if (FILE_READABLE($file)) {
101 // File exists so let's load it
102 $VER_BACKUP = $EXT_VERSION;
103 $EXT_ALWAYS_ACTIVE = "N";
105 $EXT_VERSION = $VER_BACKUP;
107 // If versions mismatch update extension first
108 $ext_ver = GET_EXT_VERSION($EXT_UPDATE_DEPENDS);
110 // Extension version set?
111 if (empty($ext_ver)) {
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__);
117 if (SQL_NUMROWS($result) == 1) {
118 // Task found so load task's ID and register extension...
119 list($task) = SQL_FETCHROW($result);
121 // Try to register the extension
122 $test = EXTENSION_REGISTER($EXT_UPDATE_DEPENDS, $task, $dry_run);
126 SQL_FREERESULT($result);
127 } elseif ($ext_ver != $EXT_VERSION) {
128 // Ok, update this extension now
129 EXTENSION_UPDATE(basename($file), $EXT_UPDATE_DEPENDS, $ext_ver, $dry_run);
134 // Nothing to register / update before...
138 // Required file for update does not exists!
140 // But this is fine for the first time...
143 // Finally restore previous SQLs
144 $SQLs = $SQLs2; unset($SQLs2);
145 $EXT_LANG_PREFIX = $LANG_BCK;
147 // Does not depend on an other extension
151 // Switch back to register mode
152 $EXT_LOAD_MODE = "register";
154 // Does everthing before wents ok?
156 // "Dry-run-mode" activated?
159 foreach ($SQLs as $sql) {
160 // Trim spaces away which we don't need
163 // Is there still an SQL query?
165 // Do we have an "ALTER TABLE" command?
166 if (substr(strtolower($sql), 0, 11) == "alter table") {
167 // Analyse the alteration command
168 SQL_ALTER_TABLE($sql, __FILE__, __LINE__);
170 // Run regular SQL command
171 $result = SQL_QUERY($sql, __FILE__, __LINE__, false);
176 // Remove cache file(s) if extension is active
177 if ((EXT_IS_ACTIVE("cache")) || (GET_EXT_VERSION("cache") != "")) {
178 //* DEBUG: */ echo __LINE__.": DESTROY!<br />\n";
179 // Remove cache files
180 if ($cacheInstance->cache_file("extensions", true)) $cacheInstance->cache_destroy();
181 if ($cacheInstance->cache_file("mod_reg", true)) $cacheInstance->cache_destroy();
182 if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy();
185 // Check for added include files
186 if (count($INC_POOL > 0)) {
187 // Loads every include file
188 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 // @TODO This causes the whole (!) menu cache being purged
204 CACHE_PURGE_ADMIN_MENU();
206 // In normal mode return a true on success
212 // Rewrite SQL command to keep { and } inside
213 foreach ($SQLs as $key => $sql) {
214 $sql = str_replace('{', "{", str_replace('}', "}", $sql));
218 // In "dry-run" mode return array with all SQL commands
221 // Remove all SQL commands
225 // No, an error occurs while registering extension :-(
228 } elseif (($id > 0) && (!empty($ext_name))) {
229 // Remove task from system when id and extension's name is valid
230 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE id=%s AND status='NEW' LIMIT 1",
231 array(bigintval($id)), __FILE__, __LINE__);
234 // Is this the sql_patches?
235 //* DEBUG: */ echo __LINE__.":{$ext_name}/{$EXT_LOAD_MODE}<br />\n";
236 if (($ext_name == "sql_patches") && (($EXT_LOAD_MODE == "register") || ($EXT_LOAD_MODE == "remove")) && (!$dry_run) && ($test)) {
237 // Then redirect to logout
238 //* DEBUG: */ echo __LINE__.": LOAD!<br />\n";
239 LOAD_URL("modules.php?module=admin&logout=1&".$EXT_LOAD_MODE."=sql_patches");
242 // Return status code
246 function EXTENSION_RUN_SQLS($id, $EXT_LOAD_MODE) {
247 global $cacheInstance, $_CONFIG;
250 // Extensions are never active by default
251 $EXT_ALWAYS_ACTIVE = "N";
253 // By default no SQL has been executed
256 // This shall never do a non-admin user!
257 if (!IS_ADMIN()) return false;
259 // Get extension's name
260 $ext_name = GET_EXT_NAME($id);
261 if (empty($ext_name)) return false;
263 // Load extension in detected mode
264 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):ext_name[{$id}]={$ext_name}<br />\n";
265 $file = sprintf("%sinc/extensions/ext-%s.php", PATH, $ext_name);
266 if (FILE_READABLE($file)) {
271 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):SQLs::count=".count($SQLs)."<br />\n";
272 if ((is_array($SQLs) && (sizeof($SQLs) > 0))) {
273 // Run SQL commands...
274 foreach ($SQLs as $sql) {
275 // Trim spaces away which we don't need
278 // Is there still an SQL query?
280 // Do we have an "ALTER TABLE" command?
281 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):SQL={$SQL}<br />\n";
282 if (substr(strtolower($sql), 0, 11) == "alter table") {
283 // Analyse the alteration command
284 SQL_ALTER_TABLE($sql, __FILE__, __LINE__);
286 // Run regular SQL command
287 $result = SQL_QUERY($sql, __FILE__, __LINE__, false);
290 // An SQL has been executed
296 if ($EXT_LOAD_MODE == "remove") {
297 // Delete this extension (remember to remove it from your server *before* you click on welcome!
298 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_extensions WHERE id=%s LIMIT 1",
299 array($id), __FILE__, __LINE__);
302 //* DEBUG: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>):mode={$EXT_LOAD_MODE}<br />\n";
304 // Is this the sql_patches?
305 //* DEBUG: */ echo __LINE__.": {$id}/{$ext_name}/{$EXT_LOAD_MODE}<br />\n";
306 if (($ext_name == "sql_patches") && (($EXT_LOAD_MODE == "register") || ($EXT_LOAD_MODE == "remove"))) {
307 // Then redirect to logout
308 //* DEBUG: */ echo __LINE__.": LOAD!<br />\n";
309 LOAD_URL("modules.php?module=admin&logout=1&".$EXT_LOAD_MODE."=sql_patches");
313 // Remove cache file(s) if extension is active
314 if (((EXT_IS_ACTIVE("cache")) || (GET_EXT_VERSION("cache") != "")) && (((SQL_AFFECTEDROWS() == 1)) || ($sqlRan === true) || ($EXT_LOAD_MODE == "activate") || ($EXT_LOAD_MODE == "deactivate"))) {
315 //* DEBUG: */ echo __LINE__.": DESTROY!<br />\n";
316 // Remove cache files
317 if ($cacheInstance->cache_file("extensions", true)) $cacheInstance->cache_destroy();
318 if ($cacheInstance->cache_file("mod_reg", true)) $cacheInstance->cache_destroy();
319 if ($cacheInstance->cache_file("config", true)) $cacheInstance->cache_destroy();
321 // @TODO This causes the whole (!) menu cache being purged
322 CACHE_PURGE_ADMIN_MENU();
325 // Check if given extension is active
326 function EXT_IS_ACTIVE ($ext_name) {
327 global $cacheArray, $_CONFIG;
329 // Extensions are all inactive during installation
330 if ((!isBooleanConstantAndTrue('mxchange_installed')) || (isBooleanConstantAndTrue('mxchange_installing')) || (empty($ext_name))) return false;
332 // Not active is the default
336 if (!empty($cacheArray['extensions']['ext_active'][$ext_name])) {
338 //* DEBUG: */ echo "CACHE! ext_name={$ext_name}<br />\n";
339 $active = $cacheArray['extensions']['ext_active'][$ext_name];
342 if (isset($_CONFIG['cache_hits'])) $_CONFIG['cache_hits']++;
343 } elseif (($ext_name == "cache") || (GET_EXT_VERSION("cache") == "")) {
344 //* DEBUG: */ echo "DB! ext_name={$ext_name}<br />\n";
345 // Load from database
346 $result = SQL_QUERY_ESC("SELECT ext_active FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
347 array($ext_name), __FILE__, __LINE__);
348 if (SQL_NUMROWS($result) == 0) {
349 // Extension was not found!
354 list($active) = SQL_FETCHROW($result);
357 SQL_FREERESULT($result);
361 //* DEBUG: */ echo $ext_name."[DB]: {$active}<br />\n";
362 $cacheArray['extensions']['ext_active'][$ext_name] = $active;
364 // Extension not active!
365 //* DEBUG: */ echo $ext_name.": Not active!<br />\n";
366 $cacheArray['extensions']['ext_active'][$ext_name] = "N";
370 //DEBUG_LOG(__FUNCTION__.": ext_name={$ext_name},active={$active}");
372 // Is this extension activated? (For admins we always have active extensions...)
373 return ($active == "Y");
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: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): 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: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): 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: */ print __FUNCTION__."(<font color=\"#0000aa\">".__LINE__."</font>): 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;
414 $SQLs = array(); $INC_POOL = array();
416 // Only admins are allowed to update extensions
417 if ((!IS_ADMIN()) || (empty($ext))) return false;
419 // Load extension in update mode
420 $EXT_LOAD_MODE = "update"; $EXT_UPDATE_DEPENDS = ""; $NOTES = "";
422 // Load extension file
423 include(sprintf("%sinc/extensions/%s", PATH, $file));
425 if (!empty($EXT_UPDATE_DEPENDS)) {
426 // Update another extension first!
427 $test = EXTENSION_UPDATE(("ext-".$EXT_UPDATE_DEPENDS.".php"), $EXT_UPDATE_DEPENDS, GET_EXT_VERSION($EXT_UPDATE_DEPENDS), $dry_run);
430 // Check if version is updated
431 if ((($EXT_VERSION != $EXT_VER) || ($dry_run)) && (is_array($EXT_VER_HISTORY)))
433 // Search for starting point
434 $start = array_search($EXT_VER, $EXT_VER_HISTORY);
437 // And load SQL queries in order of version history
438 for ($idx = ($start + 1); $idx < sizeof($EXT_VER_HISTORY); $idx++)
440 // Remove old SQLs array to prevent possible bugs
441 if (!$dry_run) { unset($SQLs); $SQLs = array(); }
444 $EXT_VER = $EXT_VER_HISTORY[$idx];
447 include(PATH."inc/extensions/".$file);
450 if ($_CONFIG['verbose_sql'] == "Y")
452 $EXT_VER = $EXT_VER_HISTORY[$idx];
453 if (!empty($UPDATE_NOTES))
455 // Update notes found
456 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".$UPDATE_NOTES."<br /><br />\n";
459 elseif ($EXT_VER == "0.0")
462 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br />".INITIAL_RELEASE."<br /><br />\n";
466 $NOTES .= "<STRONG>v".$EXT_VER.":</STRONG><br /><I>".NO_UPDATE_NOTES."</I><br /><br />\n";
470 // In real-mode execute any existing includes
471 if ((!$dry_run) && (count($INC_POOL) > 0)) {
473 foreach ($INC_POOL as $fqfn) {
479 if ((is_array($SQLs)) && (!$dry_run)) {
481 foreach ($SQLs as $sql)
486 // Do we have an "ALTER TABLE" command?
487 if (substr(strtolower($sql), 0, 11) == "alter table") {
488 // Analyse the alteration command
489 SQL_ALTER_TABLE($sql, __FILE__, __LINE__);
491 // Run regular SQL command
492 $result = SQL_QUERY($sql, __FILE__, __LINE__, false);
496 } elseif (GET_EXT_VERSION("sql_patches") == "") {
497 // Remove SQLs if extension is not installed
504 // In normal mode insert task and update extension's version...
505 $ext_subj = "[UPDATE-".$ext."-".$EXT_VERSION.":] ".ADMIN_UPDATE_EXT_SUBJ;
508 CREATE_EXTENSION_UPDATE_TASK(GET_ADMIN_ID(get_session('admin_login')), $ext_subj, addslashes($NOTES));
510 // Update extension's version
511 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_extensions SET ext_version='%s' WHERE ext_name='%s' LIMIT 1",
512 array($EXT_VERSION, $ext), __FILE__, __LINE__);
515 if (EXT_IS_ACTIVE("cache")) {
516 if ($cacheInstance->cache_file("extensions", true) == true) $cacheInstance->cache_destroy();
517 if ($cacheInstance->cache_file("config", true) == true) $cacheInstance->cache_destroy();
518 if ($cacheInstance->cache_file("mod_reg", true) == true) $cacheInstance->cache_destroy();
524 // In "dry-run" mode return array with SQL commands
530 function EXTENSION_VERBOSE_TABLE($SQLs, $title = ADMIN_SQLS_EXECUTED_ON_REMOVAL, $dashed = "", $switch = false, $WIDTH = "480") {
533 $S = false; $SW = 2; $i = 1;
535 if ((is_array($SQLs)) && (GET_EXT_VERSION("sql_patches") >= "0.0.7") && ($_CONFIG['verbose_sql'] == "Y")) {
536 $OUT = "<DIV align=\"center\">
537 <TABLE border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"".$WIDTH."\" align=\"center\"".$dashed.">
539 <TD colspan=\"2\" align=\"center\" class=\"admin_title bottom2\" height=\"24\">
540 <STRONG>".$title.":</STRONG>
543 foreach ($SQLs as $idx => $sql) {
548 <TD class=\"switch_sw".(3 - $SW)." bottom2\" style=\"padding-left: 2px\" width=\"30\">".$i.".</TD>
549 <TD class=\"switch_sw".(3 - $SW)." bottom2\" style=\"padding-left: 5px; padding-right: 5px\">
553 if ($switch) $SW = 3 - $SW;
559 if ((!$S) && (GET_EXT_VERSION("sql_patches") >= "0.0.7") && ($_CONFIG['verbose_sql'] == "Y")) {
560 // No addional SQL commands to run
562 <TD colspan=\"2\" align=\"center\" class=\"switch_sw2 bottom2\" height=\"24\">
563 <FONT class=\"admin_note\">".ADMIN_NO_ADDIONAL_SQLS."</FONT>
569 // Add missing close-table tag
577 // Get extension name from id
578 function GET_EXT_NAME ($id) {
580 global $cacheArray, $_CONFIG;
581 if (!empty($cacheArray['extensions']['ext_name'][$id])) {
583 $ret = $cacheArray['extensions']['ext_name'][$id];
586 $_CONFIG['cache_hits']++;
587 } elseif (!EXT_IS_ACTIVE("cache")) {
588 // Load from database
589 $result = SQL_QUERY_ESC("SELECT ext_name FROM "._MYSQL_PREFIX."_extensions WHERE id=%s LIMIT 1",
590 array(bigintval($id)), __FILE__, __LINE__);
591 list($ret) = SQL_FETCHROW($result);
592 SQL_FREERESULT($result);
596 // Get extension id from name
597 function GET_EXT_ID($name) {
599 global $cacheArray, $_CONFIG;
600 if (isset($cacheArray['extensions']['ext_id'][$name])) {
602 $ret = $cacheArray['extensions']['ext_id'][$name];
605 $_CONFIG['cache_hits']++;
606 } elseif (!EXT_IS_ACTIVE("cache")) {
607 // Load from database
608 $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1",
609 array($name), __FILE__, __LINE__);
610 list($ret) = SQL_FETCHROW($result);
611 SQL_FREERESULT($result);
617 // Activate given extension
618 function ACTIVATE_EXTENSION($ext_name) {
619 // Activate the extension
620 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_extensions SET ext_active='Y' WHERE ext_name='%s' LIMIT 1",
621 array($ext_name), __FILE__, __LINE__);
623 // Extension has been activated?
624 if (SQL_AFFECTEDROWS() == 1) {
625 // Then run all queries
626 EXTENSION_RUN_SQLS(GET_EXT_ID($ext_name), "activate");
629 // Checks wether the extension is older than given
630 function EXT_VERSION_IS_OLDER ($ext_name, $ext_ver) {
631 // Get current extension version
632 $currVersion = GET_EXT_VERSION($ext_name);
634 // Remove all dots from both versions
635 $currVersion = str_replace(".", "", $currVersion);
636 $ext_ver = str_replace(".", "", $ext_ver);
638 // Now compare both and return the result
639 return ($currVersion < $ext_ver);