2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 09/17/2011 *
4 * =================== Last change: 09/17/2011 *
6 * -------------------------------------------------------------------- *
7 * File : ajax-functions.php *
8 * -------------------------------------------------------------------- *
9 * Short description : AJAX-related functions *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : AJAX-bezogene Funktionen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
44 function initAjax () {
45 // Init AJAX reply array
46 $GLOBALS['ajax_reply'] = array(
48 'reply_content' => NULL,
51 // Set content type (mostly JSON)
52 setContentType('application/json');
54 // By default nothing is found/valid
55 setHttpStatus('204 No Content');
58 setUsername('{--USERNAME_AJAX--}');
60 // In installation phase load ajax_installer.php
61 if (isInstallationPhase()) {
63 loadIncludeOnce('inc/ajax/ajax_installer.php');
67 // Setter for AJAX reply content
68 function setAjaxReplyContent ($content) {
69 // Set it, but with URL encoding
70 $GLOBALS['ajax_reply']['reply_content'] = urlencode(doFinalCompilation($content, false));
74 * Checks whether the AJAX access level was valid. This function doesn't need
75 * caching in $GLOBALS[__FUNCTION__] because it will be called only once.
77 function isAjaxRequestLevelValid () {
78 // By default nothing is valid
81 // Switch on the 'level' value
82 switch (postRequestElement('level')) {
83 case 'install': // Installation phase level
84 // Simply check for it
85 $isValid = isInstallationPhase();
88 case 'admin': // Admin area
89 // Load admin includes
90 loadIncludeOnce('inc/modules/admin/admin-inc.php');
91 loadIncludeOnce('inc/ajax/ajax_admin.php');
93 // Determine correct 'what' value
94 $what = determineWhat();
97 $action = getActionFromModuleWhat('admin', $what);
100 $isValid = ((isAdmin()) && (isAdminAllowedAccessMenu($action, $what)));
103 default: // Unsupported level (please report this!)
104 logDebugMessage(__FUNCTION__, __LINE__, 'Unsupported AJAX request access level ' . postRequestElement('level') . ' detected. Please report this, it means this part is not finished.');
108 // Return validation result
112 // Processes the AJAX request by generating a call-back on given 'level' value
113 function processAjaxRequest () {
114 // Generate the call-back function name
115 $callbackName = 'doAjaxProcess' . capitalizeUnderscoreString(postRequestElement('level'));
117 // Is the call-back function there?
118 if (!function_exists($callbackName)) {
119 // This shall not happen
120 reportBug(__FUNCTION__, __LINE__, 'AJAX call-back ' . $callbackName . ' does not exist.');
124 call_user_func($callbackName);
128 function sendAjaxContent () {
129 // Is the status fine or template not found (404)?
130 if ((getHttpStatus() == '200 OK') || (getHttpStatus() == '404 NOT FOUND')) {
131 // Then output the JSON
132 outputHtml(json_encode($GLOBALS['ajax_reply'], JSON_FORCE_OBJECT));