uawdijnntqw1x1x1
IP : 216.73.216.186
Hostname : webd009.cluster130.gra.hosting.ovh.net
Kernel : Linux webd009.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
pressec
/
www
/
ads--temp-pour-eviter-les-spams
/
lib
/
xajax
/
lib
/
..
/
..
/
xajax
/
..
/
Max.php
/
/
<?php /* +---------------------------------------------------------------------------+ | Revive Adserver | | http://www.revive-adserver.com | | | | Copyright: See the COPYRIGHT.txt file. | | License: GPLv2 or later, see the LICENSE.txt file. | +---------------------------------------------------------------------------+ */ require_once RV_PATH . '/lib/RV.php'; require_once MAX_PATH . '/lib/OA.php'; require_once OX_PATH . '/lib/pear/PEAR.php'; /** * The main OpenX class. * * @package Max */ class MAX { /** * Converts error code constants into equivalent strings. * * @param integer $errorCode The error code. * @return string Text representing the error code. */ public static function errorConstantToString($errorCode) { $aErrorCodes = array( MAX_ERROR_INVALIDARGS => 'invalid arguments', MAX_ERROR_INVALIDCONFIG => 'invalid config', MAX_ERROR_NODATA => 'no data', MAX_ERROR_NOCLASS => 'no class', MAX_ERROR_NOMETHOD => 'no method', MAX_ERROR_NOAFFECTEDROWS => 'no affected rows', MAX_ERROR_NOTSUPPORTED => 'not supported', MAX_ERROR_INVALIDCALL => 'invalid call', MAX_ERROR_INVALIDAUTH => 'invalid auth', MAX_ERROR_EMAILFAILURE => 'email failure', MAX_ERROR_DBFAILURE => 'db failure', MAX_ERROR_DBTRANSACTIONFAILURE => 'db transaction failure', MAX_ERROR_BANNEDUSER => 'banned user', MAX_ERROR_NOFILE => 'no file', MAX_ERROR_INVALIDFILEPERMS => 'invalid file perms', MAX_ERROR_INVALIDSESSION => 'invalid session', MAX_ERROR_INVALIDPOST => 'invalid post', MAX_ERROR_INVALIDTRANSLATION => 'invalid translation', MAX_ERROR_FILEUNWRITABLE => 'file unwritable', MAX_ERROR_INVALIDREQUEST => 'invalid request', MAX_ERROR_INVALIDTYPE => 'invalid type', ); if (in_array($errorCode, array_keys($aErrorCodes))) { return strtoupper($aErrorCodes[$errorCode]); } else { return 'PEAR'; } } /** * A method to convert PEAR_Error objects to strings. * * @param PEAR_Error $oError A {@link PEAR_Error} object * @param string $additionalInfo * * @return string */ public static function errorObjToString($oError, $additionalInfo = null) { $aConf = $GLOBALS['_MAX']['CONF']; $message = htmlspecialchars($oError->getMessage()); $debugInfo = htmlspecialchars($oError->getDebugInfo()); $additionalInfo = htmlspecialchars($additionalInfo); $level = $oError->getCode(); $errorType = MAX::errorConstantToString($level); $img = MAX::constructURL(MAX_URL_IMAGE, 'errormessage.gif'); // Message $output = <<<EOF <br /> <div class="errormessage"> <img class="errormessage" src="$img" align="absmiddle"> <span class='tab-r'>$errorType Error</span> <br /> <br />$message <br /><pre>$debugInfo</pre> $additionalInfo </div> <br /> <br /> EOF; return $output; } /** * A method to invoke errors. * * @static * @param mixed $message A string error message, or a {@link PEAR_Error} object. * @param integer $type A custom message code - see the {@link setupConstants()} function. * @param integer $behaviour Optional behaviour (i.e. PEAR_ERROR_DIE to halt on this error). * @return PEAR_Error $error A (@link PEAR_Error} object. */ public static function raiseError($message, $type = null, $behaviour = null) { // If fatal if ($behaviour == PEAR_ERROR_DIE) { // Log fatal message here as execution will stop $errorType = MAX::errorConstantToString($type); if (!is_string($message)) $message = print_r($message, true); OA::debug($type . ' :: ' . $message, PEAR_LOG_EMERG); exit(); } $error = PEAR::raiseError($message, $type, $behaviour); return $error; } /** * A method to construct URLs based on the OpenX installation details. * * @param integer $type The URL type. One of: * - MAX_URL_ADMIN for admin pages; * - MAX_URL_IMAGE for OpenX images (i.e. in /admin/images). * @param string $file An optional file name. * @return string The URL to the file. */ public static function constructURL($type, $file = null) { $aConf = $GLOBALS['_MAX']['CONF']; // Prepare the base URL if ($type == MAX_URL_ADMIN) { $path = $aConf['webpath']['admin']; } elseif ($type == MAX_URL_IMAGE) { return OX::assetPath("/images/" . $file); } else { return null; } // Add a trailing slash to the path, so that there will // be at least one slash in the path (after the hostname, // in the event that virtual hosts are used, and delivery // happens from the root of virtual hosts) $path .= '/'; // Modify the admin URL for different SSL port if required if ($aConf['openads']['sslPort'] != 443) { if ($GLOBALS['_MAX']['HTTP'] == 'https://') { $path = preg_replace('#/#', ':' . $aConf['openads']['sslPort'] . '/', $path, 1); } } // Return the URL return $GLOBALS['_MAX']['HTTP'] . $path . $file; } } /** * A callback function that sets the default PEAR Error behaviour. * * @static * @param PEAR_Error $oError A {@link PEAR_Error} object */ function pearErrorHandler($oError) { $aConf = $GLOBALS['_MAX']['CONF']; // Log message $message = $oError->getMessage(); $debugInfo = $oError->getDebugInfo(); OA::debug('PEAR' . " :: $message : $debugInfo", PEAR_LOG_ERR); // If sesssion debug, send error info to screen $msg = ''; if (empty($aConf['debug']['production'])) { $GLOBALS['_MAX']['ERRORS'][] = $oError; } // Add backtrace info if (!empty($aConf['debug']['showBacktrace'])) { $msg .= 'PEAR backtrace: <div onClick="if (this.style.height) {this.style.height = null;this.style.width = null;} else {this.style.height = \'8px\'; this.style.width=\'8px\'}"'; $msg .= 'style="float:left; cursor: pointer; border: 1px dashed #FF0000; background-color: #EFEFEF; height: 8px; width: 8px; overflow: hidden; margin-bottom: 2px;">'; $msg .= '<pre wrap style="margin: 5px; background-color: #EFEFEF">'; ob_start(); print_r($oError->getBacktrace()); $msg .= ob_get_clean(); $msg .= '<hr></pre></div>'; $msg .= '<div style="clear:both"></div>'; } if (defined('TEST_ENVIRONMENT_RUNNING')) { // It's a test, stop execution echo nl2br("Message: $message\ndebugInfo: $debugInfo\nbackTrace: $msg"); exit(1); } elseif (defined('OA_WEBSERVICES_API_XMLRPC')) { // It's an XML-RPC response $oResponse = new XML_RPC_Response('', 99999, $message); echo $oResponse->serialize(); exit; } else { // Send the error to the screen echo MAX::errorObjToString($oError, $msg); } } // Set PEAR error handler $oPEAR = new PEAR(); $oPEAR->setErrorHandling(PEAR_ERROR_CALLBACK, 'pearErrorHandler'); /*-------------------------------------------------------*/ /* Old lib-statistics code, general html transform fns */ /*-------------------------------------------------------*/ // Define defaults $clientCache = array(); $campaignCache = array(); $bannerCache = array(); $zoneCache = array(); $affiliateCache = array(); ?>
/home/pressec/www/ads--temp-pour-eviter-les-spams/lib/xajax/lib/../../xajax/../Max.php