| Server IP : 81.19.159.101 / Your IP : 216.73.217.111 Web Server : Apache System : Linux www58.world4you.com 4.18.0-553.126.2.lve.el8.x86_64 #1 SMP Thu May 28 14:12:30 UTC 2026 x86_64 User : ftp8817043 ( 2681) PHP Version : 8.4.21 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/.sites/103/site8817043/web/wp-content/plugins/akeebabackupwp/app/Solo/View/Alice/ |
Upload File : |
<?php
/**
* @package solo
* @copyright Copyright (c)2014-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Solo\View\Alice;
use Awf\Mvc\View;
use Exception;
use Solo\Model\Alice;
use Solo\Model\Log;
class Html extends View
{
/**
* List of log entries to choose from, Html compatible
*
* @var array
*/
public $logs;
/**
* Currently selected log
*
* @var string
*/
public $log;
/**
* Should I autostart the log analysis? 0/1
*
* @var int
*/
public $autorun;
/**
* Total number of checks to perform
*
* @var int
*/
public $totalChecks;
/**
* Number of checks already performed
*
* @var int
*/
public $doneChecks;
/**
* Description of the current section of tests being run
*
* @var string
*/
public $currentSection;
/**
* Description of the last check that just finished
*
* @var string
*/
public $currentCheck;
/**
* Percentage of the process already done (0-100)
*
* @var int
*/
public $percentage;
/**
* The error ALICE detected
*
* @var array
*/
public $aliceError;
/**
* The warnings ALICE detected
*
* @var array
*/
public $aliceWarnings;
/**
* Overall status of the scan: 'success', 'warnings', 'error'
*
* @var array
*/
public $aliceStatus;
/**
* The exception to report to the user in the 'error' layout.
*
* @var Exception
*/
public $errorException;
/**
* Setup the main log page
*
* @return boolean
*/
public function onBeforeMain()
{
$model = $this->getContainer()->mvcFactory->makeTempModel('Log');
$this->logs = $model->getLogList(true);
$this->log = $this->input->getCmd('log', null);
return true;
}
public function onBeforeStart()
{
return $this->onBeforeStep();
}
public function onBeforeStep()
{
/** @var Alice $model */
$model = $this->getModel();
$this->totalChecks = $model->getState('totalChecks');
$this->doneChecks = $model->getState('doneChecks');
$this->currentSection = $model->getState('currentSection');
$this->currentCheck = $model->getState('currentCheck');
$this->percentage = min(100, ceil(100.0 * ($this->doneChecks / max($this->totalChecks, 1))));
return true;
}
public function onBeforeResult()
{
/** @var Alice $model */
$model = $this->getModel();
$this->totalChecks = $model->getState('totalChecks');
$this->doneChecks = $model->getState('doneChecks');
$this->aliceError = $model->getState('aliceError');
$this->aliceWarnings = $model->getState('aliceWarnings');
$this->aliceStatus = empty($this->aliceWarnings) ? 'success' : 'warnings';
$this->aliceStatus = empty($this->aliceError) ? $this->aliceStatus : 'error';
return true;
}
public function onBeforeError()
{
$this->errorException = $this->container->segment->get('aliceException', null, 'akeeba');
return true;
}
}