0.0.0 shall be our first version
[mailer.git] / inc / modules / admin / what-extensions.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 03/22/2004 *
4  * ===================                          Last change: 12/13/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-extentions.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Extension management                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Erweiterungen-Management                         *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 // Normally we want the overview of all registered extensions
47 $do = 'overview';
48
49 if (isGetRequestParameterSet('reg_ext')) {
50         // We are about to register a new extension
51         $do = 'register';
52         $taskId = determineExtensionTaskId(getRequestParameter('reg_ext'));
53
54         // The id comes from task management and it is - of course - *not* the extension's name!
55 } elseif ((isFormSent('change')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
56         // De-/activate extensions
57         foreach (postRequestParameter('sel') as $ext_id => $ext_active) {
58                 // Shall we keep the extension always active?
59                 if ((isset($GLOBALS['cache_array']['always_active'][getExtensionName($ext_id)])) && ($GLOBALS['cache_array']['always_active'][getExtensionName($ext_id)] == 'Y') && ($ext_active == 'Y')) {
60                         // Keep this extension active!
61                         displayMessage(getMaskedMessage('ADMIN_EXTENSION_ALWAYS_ACTIVE', getExtensionName($ext_id)));
62                 } else {
63                         // Deactivation is default
64                         $active = 'N';
65                         setExtensionMode('deactivate');
66
67                         // Is the extension deactivated?
68                         if ($ext_active != 'Y') {
69                                 // Then we can activate it
70                                 $active = 'Y';
71                                 setExtensionMode('activate');
72                         } // END - if
73
74                         // Update database
75                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_active`='%s' WHERE `id`=%s AND `ext_active`='%s' LIMIT 1",
76                                 array($active, bigintval($ext_id), $ext_active), __FILE__, __LINE__);
77
78                         // Run embeded SQL commands
79                         doExtensionSqls($ext_id, getExtensionMode());
80                 }
81         } // END - foreach
82
83         // Redirect to prevent missing cache in js.php
84         redirectToUrl('modules.php?module=admin&amp;what=extensions&amp;changed=' . countPostSelection());
85 } elseif (((isFormSent('edit')) || (isPostRequestParameterSet('modify'))) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
86         // Change settings like CSS file load
87         if (isPostRequestParameterSet('modify')) {
88                 // Change entries
89                 $cache_update = '0';
90                 foreach (postRequestParameter('sel') as $ext_id => $sel) {
91                         // Secure id
92                         $ext_id = bigintval($ext_id);
93
94                         // Change this extension?
95                         if ($sel == 1) {
96                                 // Load mode is modify
97                                 setExtensionMode('modify');
98
99                                 // Get entry for 'active'
100                                 $active = postRequestParameter('active', $ext_id);
101
102                                 // Update extension's record
103                                 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
104                                         // Update also CSS column when extensions sql_patches is newer or exact v0.0.6
105                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_has_css`='%s', `ext_active`='%s' WHERE `id`=%s LIMIT 1",
106                                                 array(postRequestParameter('css', $ext_id), $active, $ext_id), __FILE__, __LINE__);
107                                 } else {
108                                         // When extension is older than v0.0.6 there is no column for the CSS information
109                                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_extensions` SET `ext_active`='%s' WHERE `id`=%s LIMIT 1",
110                                                 array($active, $ext_id), __FILE__, __LINE__);
111                                 }
112
113                                 // Run SQLs on activation / deactivation
114                                 switch ($active) {
115                                         case 'Y': setExtensionMode('activate');   break;
116                                         case 'N': setExtensionMode('deactivate'); break;
117                                 } // END - switch
118
119                                 // Run embeded SQL commands
120                                 doExtensionSqls($ext_id, getExtensionMode());
121                         } // END - if
122                 } // END - foreach
123
124                 // Redirect to prevent missing cache in js.php
125                 redirectToUrl('modules.php?module=admin&amp;what=extensions&amp;edited=' . countPostSelection());
126         } else {
127                 // Edit selected entries
128                 $OUT = '';
129                 foreach (postRequestParameter('sel') as $ext_id => $sel) {
130                         // Edit this extension?
131                         if (($sel == 'Y') || ($sel != 'Y')) {
132                                 // Default is no CSS for non-updated mailers
133                                 $css = 'N';
134
135                                 // Load required data
136                                 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
137                                         $result = SQL_QUERY_ESC("SELECT `ext_has_css`, `ext_active` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `id`=%s LIMIT 1",
138                                                 array(bigintval($ext_id)), __FILE__, __LINE__);
139                                         list($css, $active) = SQL_FETCHROW($result);
140                                         SQL_FREERESULT($result);
141                                 } else {
142                                         $result = SQL_QUERY_ESC("SELECT `ext_active` FROM `{?_MYSQL_PREFIX?}_extensions` WHERE `id`=%s LIMIT 1",
143                                                 array(bigintval($ext_id)), __FILE__, __LINE__);
144                                         list($active) = SQL_FETCHROW($result);
145                                         SQL_FREERESULT($result);
146                                         $css = 'X';
147                                 }
148
149                                 // Prepare CSS column
150                                 $cssSelection = '---';
151                                 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
152                                         $cssSelection = addSelectionBox('yn', $css, 'css', $ext_id);
153                                 } // END - if
154
155                                 // Prepare data for the row template
156                                 $content = array(
157                                         'id'     => $ext_id,
158                                         'name'   => getExtensionName($ext_id),
159                                         'active' => addSelectionBox('yn', $active, 'active', $ext_id),
160                                         'css'    => $cssSelection,
161                                 );
162
163                                 // Load row template and switch color
164                                 $OUT .= loadTemplate('admin_extensions_edit_row', true, $content);
165                         } // END - if
166                 } // END - foreach
167
168                 // Load template
169                 loadTemplate('admin_extensions_edit', false, $OUT);
170                 $do = 'edit';
171         }
172 } elseif ((isPostRequestParameterSet('delete')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
173         // List extensions and when verbose is enabled SQL statements which will be executed
174         $OUT = '';
175         foreach (postRequestParameter('sel') as $ext_id => $sel) {
176                 // Init variables
177                 $VERBOSE_OUT = '';
178                 initSqls();
179
180                 // Secure id number
181                 $ext_id = bigintval($ext_id);
182
183                 // Is the id valid?
184                 if (isExtensionIdValid($ext_id)) {
185                         // Get extension name
186                         $ext_name = getExtensionName($ext_id);
187
188                         // Listing of SQLs enabled?
189                         if (isVerboseSqlEnabled()) {
190                                 // Load SQL commands in remove mode
191                                 if (loadExtension($ext_name, 'remove', '0.0.0', true)) {
192                                         // Generate extra table with loaded SQL commands
193                                         $VERBOSE_OUT = addExtensionVerboseSqlTable();
194                                 } // END - if
195                         } // END - if
196
197                         // Prepare data for the row template
198                         $content = array(
199                                 'id'       => $ext_id,
200                                 'ext_name' => $ext_name,
201                                 'verbose'  => $VERBOSE_OUT
202                         );
203
204                         // Load row template and switch color
205                         $OUT .= loadTemplate('admin_extensions_delete_row', true, $content);
206                 } else {
207                         // Prepare data for the row template
208                         $content = array(
209                                 'id'       => $ext_id
210                         );
211
212                         // Not valid!
213                         $OUT .= loadTemplate('admin_extensions_delete_row_404', true, $content);
214                 }
215         } // END - foreach
216
217         // Load template
218         loadTemplate('admin_extensions_delete', false, $OUT);
219         $do = 'delete';
220 } elseif ((isFormSent('remove')) && (ifPostContainsSelections()) && (!isDemoModeActive())) {
221         // Remove extensions from DB (you have to delete all files manually!)
222         $cache_update = '0';
223         foreach (postRequestParameter('sel') as $ext_id => $active) {
224                 // Secure id number
225                 $ext_id = bigintval($ext_id);
226
227                 // Is this extension selected and id valid?
228                 if (($active == 1) && (isExtensionIdValid($ext_id))) {
229                         // Run embeded SQL commands
230                         doExtensionSqls($ext_id, 'remove');
231                 } // END - if
232         } // END - foreach
233
234         // Redirect to prevent missing cache in js.php
235         redirectToUrl('modules.php?module=admin&amp;what=extensions&amp;removed=' . countPostSelection());
236 } elseif ((isGetRequestParameterSet('do')) && (!isDemoModeActive())) {
237         // Other things to do
238         $do = SQL_ESCAPE(secureString(getRequestParameter('do')));
239 } elseif (isGetRequestParameterSet('do')) {
240         // Demo mode active!
241         $do = 'demo';
242 } elseif (isGetRequestParameterSet('registered')) {
243         // Extensions changed
244         displayMessage(getMaskedMessage('ADMIN_EXTENSION_REGISTERED', getExtensionName(getRequestParameter('registered'))));
245
246         // Show next link
247         if (isExtensionActive('task')) {
248                 loadTemplate('admin_next_link', false, array(
249                         'url'   => 'modules.php?module=admin&amp;what=list_task',
250                         'title' => '{--ADMIN_EXTENSION_REGISTER_NEXT_LINK--}'
251                 ));
252         } else {
253                 loadTemplate('admin_next_link', false, array(
254                         'url'   => 'modules.php?module=admin',
255                         'title' => '{--ADMIN_EXTENSION_REGISTER_NEXT_LINK--}'
256                 ));
257         }
258 } elseif (isGetRequestParameterSet('changed')) {
259         // Extensions changed
260         displayMessage(getMaskedMessage('ADMIN_EXTENSION_CHANGED', bigintval(getRequestParameter('changed'))));
261 } elseif (isGetRequestParameterSet('edited')) {
262         // Extensions changed
263         displayMessage(getMaskedMessage('ADMIN_EXTENSION_EDITED', bigintval(getRequestParameter('edited'))));
264 } elseif (isGetRequestParameterSet('removed')) {
265         // Extensions changed
266         displayMessage(getMaskedMessage('ADMIN_EXTENSIONS_REMOVED', bigintval(getRequestParameter('removed'))));
267 }
268
269 // Shall we display active/inactive extensions?
270 $where = '';
271 if (isGetRequestParameterSet('active')) {
272         $where = sprintf("WHERE `ext_active`='%s'", SQL_ESCAPE(secureString(getRequestParameter('active'))));
273 } // END - if
274
275 // Case selection
276 switch ($do) {
277         case 'overview': // List all registered extensions
278                 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
279                         // Load extension data with CSS informations
280                         $result = SQL_QUERY("SELECT
281         `id` AS ext_id, `ext_name`, `ext_active`, `ext_has_css` AS ext_css, `ext_version`
282 FROM
283         `{?_MYSQL_PREFIX?}_extensions`
284 ".$where."
285 ORDER BY
286         `ext_name` ASC", __FILE__, __LINE__);
287                 } else {
288                         // Load extension data without CSS informations
289                         $result = SQL_QUERY("SELECT
290         `id` AS ext_id, `ext_name`, `ext_active`, `ext_version`
291 FROM
292         `{?_MYSQL_PREFIX?}_extensions`
293 ".$where."
294 ORDER BY
295         `ext_name` ASC", __FILE__, __LINE__);
296                 }
297
298                 // Are there some entries?
299                 if (!SQL_HASZERONUMS($result)) {
300                         // Extensions are registered
301                         $OUT = '';
302                         while ($content = SQL_FETCHARRAY($result)) {
303                                 // Prepare CSS selection output
304                                 $cssSelection = '---';
305                                 if (isExtensionInstalledAndNewer('sql_patches', '0.0.6')) {
306                                         $cssSelection = translateYesNo($content['ext_css']);
307                                 } // END - if
308
309                                 // Prepare data for the row template
310                                 $content['ext_css'] = $cssSelection;
311
312                                 // Load row template and switch color
313                                 $OUT .= loadTemplate('admin_extensions_row', true, $content);
314                         } // END - while
315
316                         // Free memory
317                         SQL_FREERESULT($result);
318
319                         // Load template
320                         loadTemplate('admin_extensions', false, $OUT);
321                 } else {
322                         // No extensions are registered
323                         displayMessage('{--ADMIN_NO_EXTENSION_REGISTERED--}');
324                 }
325                 break;
326
327         case 'register': // Register new extension
328                 // Do we have some tasks?
329                 $numTasks = countSumTotalData(getCurrentAdminId(), 'task_system', 'id', 'assigned_admin', true, "AND `task_type`='EXTENSION'");
330
331                 // Is the id number valid and the task was found?
332                 if (($taskId > 0) && ($numTasks > 0)) {
333                         // id is valid so begin with registration, we first want to it's real name from task management (subject column)
334                         $result = SQL_QUERY_ESC("SELECT `subject` FROM `{?_MYSQL_PREFIX?}_task_system` WHERE `id`=%s LIMIT 1",
335                                 array(bigintval($taskId)), __FILE__, __LINE__);
336                         list($subject) = SQL_FETCHROW($result);
337
338                         // Free result
339                         SQL_FREERESULT($result);
340
341                         // Disable cache update by default
342                         $cache_update = '0';
343                         if (!empty($subject)) {
344                                 // Extract extension's name from subject...
345                                 $ext_name = trim(substr($subject, 1, strpos($subject, ':') - 1));
346
347                                 // Test the extension for deprecation
348                                 loadExtension($ext_name, 'test');
349
350                                 // Is the extension deprecated?
351                                 if (!isExtensionDeprecated()) {
352                                         // ... so we can finally register and load it in registration mode
353                                         if (registerExtension($ext_name, $taskId)) {
354                                                 // Errors?
355                                                 if (!ifFatalErrorsDetected()) {
356                                                         // Extension was found and successfully registered
357                                                         redirectToUrl('modules.php?module=admin&amp;what=extensions&amp;registered=' . getExtensionId($ext_name));
358                                                 } else {
359                                                         // Errors detected!
360                                                         displayMessage(getMaskedMessage('ADMIN_EXTENSION_NOT_REGISTERED', $ext_name));
361                                                 }
362
363                                                 // Do we need to update cache file?
364                                                 // @TODO Rewrite this to a filter
365                                                 if (isExtensionActive('cache')) {
366                                                         // Remove cache file (will be auto-created again!)
367                                                         if ($GLOBALS['cache_instance']->loadCacheFile('config'))    $GLOBALS['cache_instance']->removeCacheFile();
368                                                         if ($GLOBALS['cache_instance']->loadCacheFile('extension')) $GLOBALS['cache_instance']->removeCacheFile();
369                                                         if ($GLOBALS['cache_instance']->loadCacheFile('filter'))    $GLOBALS['cache_instance']->removeCacheFile();
370                                                         if ($GLOBALS['cache_instance']->loadCacheFile('modules'))   $GLOBALS['cache_instance']->removeCacheFile();
371                                                 } // END - if
372                                         } elseif (isExtensionInstalled($ext_name)) {
373                                                 // Notify the admin that we have a problem here...
374                                                 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_ALREADY--}');
375                                         } else {
376                                                 // Notify the admin that we have a problem here...
377                                                 displayMessage(getMaskedMessage('ADMIN_EXTENSION_REGISTRATION_FAILED_404', $ext_name));
378                                         }
379                                 } else {
380                                         // Motify the admin that we have a problem here...
381                                         displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_DEPRECATED--}');
382                                 }
383                         } else {
384                                 // Extension was not found in task management
385                                 displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_ID_404--}');
386                         }
387                 } elseif ($numTasks == '0') {
388                         // No longer assigned or old task
389                         displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_ASSIGED--}');
390                 } else {
391                         // id is invalid
392                         displayMessage('{--ADMIN_EXTENSION_REGISTRATION_FAILED_INVALID--}');
393                 }
394                 break;
395
396         case 'demo':
397                 displayMessage('{--SETTINGS_NOT_SAVED--}');
398                 break;
399 } // END - switch
400
401 // [EOF]
402 ?>