EVOLUTION-MANAGER
Edit File: fileops.php
<?php /** Absolute path to the DAWS directory. - necessary for php protection */ if ( !defined('ABSPATH') ) define('ABSPATH', dirname(__FILE__) . '/'); if (DupProSnapLibUtil::wp_is_ini_value_changeable('display_errors')) @ini_set('display_errors', 1); error_reporting(E_ALL); set_error_handler("terminate_missing_variables"); require_once(dirname(__FILE__) . '/class.fileops.constants.php'); require_once(dirname(__FILE__) . '/class.fileops.u.move.php'); require_once(FileOpsConstants::$LIB_DIR . '/snaplib/snaplib.all.php'); class FileOps { private $lock_handle = null; function __construct() { date_default_timezone_set('UTC'); // Some machines don’t have this set so just do it here. DupProSnapLibLogger::init(FileOpsConstants::$LOG_FILEPATH); } public function processRequest() { try { DupProSnapLibLogger::clearLog(); /* @var $state FileOpsState */ DupProSnapLibLogger::log('process request'); $retVal = new StdClass(); $retVal->pass = false; if (isset($_REQUEST['action'])) { //$params = $_REQUEST; $params = array(); DupProSnapLibLogger::logObject('REQUEST', $_REQUEST); foreach($_REQUEST as $key => $value) { $params[$key] = json_decode($value, true); } } else { $json = file_get_contents('php://input'); DupProSnapLibLogger::logObject('json1', $json); $params = json_decode($json, true); DupProSnapLibLogger::logObject('json2', $json); } DupProSnapLibLogger::logObject('params', $params); DupProSnapLibLogger::logObject('keys', array_keys($params)); $action = $params['action']; if ($action == 'deltree') { DupProSnapLibLogger::log('deltree'); $config = DeleteConfig(); $config->workerTime = DupProSnapLibUtil::GetArrayValue($params, 'worker_time'); $config->directories = DupProSnapLibUtil::getArrayValue($params, 'directories'); $config->throttleDelayInUs = DupProSnapLibUtil::getArrayValue($params, 'throttleDelay', false, 0) * 1000000; $config->excludedDirectories = DupProSnapLibUtil::getArrayValue($params, 'excluded_directories', false, array()); $config->excludedFiles = DupProSnapLibUtil::getArrayValue($params, 'excluded_files', false, array()); $config->fileLock = DupProSnapLibUtil::GetArrayValue($params, 'fileLock'); DupProSnapLibLogger::logObject('Config', $config); // TODO use appropriate lock type DupProSnapLibIOU::flock($this->lock_handle, LOCK_EX); $this->lock_handle = DupProSnapLibIOU::fopen(FileOpsConstants::$PROCESS_LOCK_FILEPATH, 'c+'); DupProSnapLibIOU::flock($this->lock_handle, LOCK_UN); $retVal->pass = true; $retVal->status = new stdClass; //todo $retVal->status->errors = $moveErrors; // RSR TODO ensure putting right thing in here } else if($action === 'move_files') { $directories = DupProSnapLibUtil::getArrayValue($params, 'directories', false, array()); $files = DupProSnapLibUtil::getArrayValue($params, 'files', false, array()); $excludedFiles = DupProSnapLibUtil::getArrayValue($params, 'excluded_files', false, array()); $destination = DupProSnapLibUtil::getArrayValue($params, 'destination'); DupProSnapLibLogger::log('before move'); $moveErrors = FileOpsMoveU::move($directories, $files, $excludedFiles, $destination); DupProSnapLibLogger::log('after move'); $retVal->pass = true; $retVal->status = new stdClass(); $retVal->status->errors = $moveErrors; // RSR TODO ensure putting right thing in here } else { throw new Exception('Unknown command.'); } session_write_close(); } catch (Exception $ex) { $error_message = "Error Encountered:" . $ex->getMessage() . '<br/>' . $ex->getTraceAsString(); DupProSnapLibLogger::log($error_message); $retVal->pass = false; $retVal->error = $error_message; } DupProSnapLibLogger::logObject("before json encode retval", $retVal); $jsonRetVal = json_encode($retVal); DupProSnapLibLogger::logObject("json encoded retval", $jsonRetVal); echo $jsonRetVal; } } function generateCallTrace() { $e = new Exception(); $trace = explode("\n", $e->getTraceAsString()); // reverse array to make steps line up chronologically $trace = array_reverse($trace); array_shift($trace); // remove {main} array_pop($trace); // remove call to this method $length = count($trace); $result = array(); for ($i = 0; $i < $length; $i++) { $result[] = ($i + 1) . ')' . substr($trace[$i], strpos($trace[$i], ' ')); // replace '#someNum' with '$i)', set the right ordering } return "\t" . implode("\n\t", $result); } function terminate_missing_variables($errno, $errstr, $errfile, $errline) { // echo "<br/>ERROR: $errstr $errfile $errline<br/>"; // if (($errno == E_NOTICE) and ( strstr($errstr, "Undefined variable"))) die("$errstr in $errfile line $errline"); DupProSnapLibLogger::log("ERROR $errno, $errstr, {$errfile}:{$errline}"); DupProSnapLibLogger::log(generateCallTrace()); // DaTesterLogging::clearLog(); // exit(1); //return false; // Let the PHP error handler handle all the rest } $fileOps = new FileOps(); $fileOps->processRequest();