mailer project continued:
[mailer.git] / inc / ajax / ajax_admin.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/24/2012 *
4  * ===================                          Last change: 06/24/2012 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ajax_admin.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : AJAX library for admin menu                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : AJAX-Bibliothek fuer Adminmenu                   *
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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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 // "Generates" admin content by loading a message template
44 function generateAdminContent () {
45         // Return it
46         return displayMessage('{--ADMIN_AJAX_MENU_IS_LOADING--}', true);
47 }
48
49 // Processes AJAX requests for admin menu
50 function doAjaxProcessAdmin () {
51         // 'do' must always be set and isAdmin must be true
52         if (!isAdmin()) {
53                 // This shall not happen
54                 reportBug(__FUNCTION__, __LINE__, 'This AJAX request handler was called outside the admin menu.');
55         } elseif (!isPostRequestElementSet('do')) {
56                 // This shall not happen
57                 reportBug(__FUNCTION__, __LINE__, 'The JavaScript did not send "do" which is fatal.');
58         } // END - if
59
60         // Again we do a call-back, so generate a function name depending on 'do'
61         $callbackName = 'doAjaxAdmin' . capitalizeUnderscoreString(postRequestElement('do'));
62
63         // Is the call-back function there?
64         if (!function_exists($callbackName)) {
65                 // This shall not happen
66                 reportBug(__FUNCTION__, __LINE__, 'AJAX call-back ' . $callbackName . ' does not exist.');
67         } // END - if
68
69         // Call the function
70         call_user_func($callbackName);
71
72         // Send AJAX content
73         sendAjaxContent();
74 }
75
76 // Processes admin AJAX calls for content-requests
77 function doAjaxAdminRequestContent () {
78         // 'tab' must be there
79         if (!isPostRequestElementSet('tab')) {
80                 // This shall not happen
81                 reportBug(__FUNCTION__, __LINE__, 'The JavaScript did not send "tab" which is fatal.');
82         } // END - if
83
84         // Construct call-back name for value-preset
85         $callbackName = 'doAjaxPrepareAdmin' . capitalizeUnderscoreString(postRequestElement('tab'));
86
87         // Is the function there?
88         if (function_exists($callbackName)) {
89                 // Call it for setting values in session
90                 call_user_func($callbackName);
91         } else {
92                 // Log missing functions
93                 logDebugMessage(__FUNCTION__, __LINE__, 'Call-back function ' . $callbackName . ' does not exist.');
94         }
95
96         // Is the HTTP status still the same? (204 No Content)
97         if (getHttpStatus() == '204 No Content') {
98                 // We use the current access level 'install' as prefix and construct a template name
99                 setAjaxReplyContent(loadTemplate('admin_area_' . trim(postRequestElement('tab')), true));
100
101                 // Has the template been loaded?
102                 if (isset($GLOBALS['tpl_content']['admin_page_' . trim(postRequestElement('tab'))])) {
103                         // All okay if we reach this point
104                         setHttpStatus('200 OK');
105                 } else {
106                         // Set 404 error
107                         setHttpStatus('404 NOT FOUND');
108                 }
109         } // END - if
110 }
111 // [EOF]
112 ?>