| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/gessing.es/wp-content/plugins/akeebabackupwp/app/Solo/Controller/ |
Upload File : |
<?php
/**
* @package Solo
* @copyright 2014-2016 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU GPL version 3 or later
*/
namespace Solo\Controller;
use Awf\Database\Installer;
use Awf\Mvc\Model;
use Awf\Router\Router;
use Awf\Text\Text;
use Solo\Model\Update;
class Main extends ControllerDefault
{
public function onBeforeDefault()
{
// If we are running inside a CMS but there is no active user we have to throw a 403
$inCMS = $this->container->segment->get('insideCMS', false);
if ($inCMS && !$this->container->userManager->getUser()->getId())
{
return false;
}
// Update the database, if necessary
$dbInstaller = new Installer($this->container);
$dbInstaller->updateSchema();
/** @var \Solo\Model\Main $model */
$model = $this->getModel();
// Run the update scripts, if necessary
if ($model->postUpgradeActions())
{
$url = $this->container->router->route('index.php?view=main');
$this->container->application->redirect($url);
}
// Apply settings encryption preferences
$model->checkEngineSettingsEncryption();
// Update magic configuration parameters
$model->updateMagicParameters();
// Flag stuck backups
$model->flagStuckBackups();
return true;
}
public function switchProfile()
{
$this->csrfProtection();
// Switch the active profile
$session = \Awf\Application\Application::getInstance()->getContainer()->segment;
$session->profile = $this->input->getInt('profile', 1);
// Redirect
$url = $this->container->router->route('index.php?view=main');
$returnURL = $this->input->get('returnurl', '', 'raw');
if (!empty($returnURL))
{
$url = base64_decode($returnURL);
}
$this->setRedirect($url);
return true;
}
public function getUpdateInformation()
{
// Protect against direct access
$this->csrfProtection();
// Initialise
$ret = array(
'hasUpdate' => false,
'version' => '',
'noticeHTML' => '',
);
// Am I running inside a CMS?
$inCMS = $this->container->segment->get('insideCMS', false);
/** @var Update $updateModel */
$updateModel = Model::getTmpInstance($this->container->application_name, 'Update', $this->container);
$ret['hasUpdate'] = $updateModel->getUpdateInformation()->get('hasUpdate', false);
$ret['version'] = $updateModel->getUpdateInformation()->get('version', 'dev');
if ($ret['hasUpdate'])
{
$router = $this->container->router;
$updateHeader = Text::sprintf('SOLO_UPDATE_LBL_MAINNOTICE_TEXT', '<span class="label label-success">' . $ret['version'] . '</span>');
$updateButton = Text::_('SOLO_UPDATE_BTN_UPDATE_NOW');
$updateLink = $router->route('index.php?view=update');
$ret['noticeHTML'] = <<< HTML
<div class="alert alert-dismissable alert-warning">
<p>
$updateHeader
</p>
<p style="text-align: center">
<a href="$updateLink" class="btn btn-lg btn-primary">
<span class="glyphicon glyphicon-retweet"></span>
$updateButton
</a>
</p>
</div>
HTML;
}
echo '###' . json_encode($ret) . '###';
$this->container->application->close();
}
public function applyDownloadId()
{
// Protect against direct access
$this->csrfProtection();
$msg = Text::_('COM_AKEEBA_CPANEL_ERR_INVALIDDOWNLOADID');
$msgType = 'error';
$dlid = $this->input->getString('dlid', '');
// If the Download ID seems legit let's apply it
if (preg_match('/^([0-9]{1,}:)?[0-9a-f]{32}$/i', $dlid))
{
$msg = null;
$msgType = null;
$config = $this->container->appConfig;
$config->set('options.update_dlid', $dlid);
$config->saveConfiguration();
}
// Redirect
$url = $this->container->router->route('index.php?view=main');
$returnURL = $this->input->get('returnurl', '', 'raw');
if (!empty($returnURL))
{
$url = base64_decode($returnURL);
}
$this->setRedirect($url, $msg, $msgType);
return true;
}
/**
* Reset the Secret Word for front-end and remote backup
*
* @return bool
*/
public function resetSecretWord()
{
// CSRF prevention
$this->csrfProtection();
$session = $this->container->segment;
$newSecret = $session->get('newSecretWord', null);
if (empty($newSecret))
{
$random = new \Akeeba\Engine\Util\RandomValue();
$newSecret = $random->generateString(32);
$session->set('newSecretWord', $newSecret);
}
$config = $this->container->appConfig;
$config->set('options.frontend_secret_word', $newSecret);
$config->saveConfiguration();
$msg = Text::sprintf('COM_AKEEBA_CPANEL_MSG_FESECRETWORD_RESET', $newSecret);
$url = $this->container->router->route('index.php?view=Main');
$this->setRedirect($url, $msg);
return true;
}
}