File Manager

Current Directory: /home/astoriaah/www/administrator/components/com_admintools/Model
Viewing File: /home/astoriaah/www/administrator/components/com_admintools/Model/EmergencyOffline.php
<?php /** * @package admintools * @copyright Copyright (c)2010-2022 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\AdminTools\Admin\Model; defined('_JEXEC') || die; use FOF40\Model\Model; use Joomla\CMS\Factory; use Joomla\CMS\Filesystem\File; use Joomla\CMS\Language\Text; class EmergencyOffline extends Model { /** * Checks if the Emergency Off-Line Mode .htaccess backup exists * * @return bool */ public function isOffline() { $backupFile = JPATH_SITE . '/.htaccess.eom'; if (File::exists($backupFile)) { $filedata = @file_get_contents($backupFile); $lines = explode("\n", $filedata); if (!empty($lines)) { if (trim($lines[0]) == '## EOMBAK - Do not remove this line or this file') { return true; } } } return false; } /** * Tries to put the site in Emergency Off-Line Mode, backing up the original .htaccess file * * @return bool True on success */ public function putOffline() { // If the backup doesn't exist, try to create it $htaccessFilePath = JPATH_SITE . '/.htaccess'; if (!$this->isOffline()) { $backupFile = JPATH_SITE . '/.htaccess.eom'; $sourceFile = $htaccessFilePath; if (@file_exists($sourceFile)) { $sourceData = @file_get_contents($sourceFile); $sourceData = "## EOMBAK - Do not remove this line or this file\n" . $sourceData; $result = File::write($backupFile, $sourceData); if (!$result) { return false; } if (!@unlink($sourceFile)) { File::delete($sourceFile); } } else { $sourceData = "## EOMBAK - Do not remove this line or this file\n"; $result = @file_put_contents($backupFile, $sourceData); if (!$result) { $result = File::write($backupFile, $sourceData); } if (!$result) { return false; } } } // Create the offline.html file, if it doesn't exist. If you can't create it, don't worry too much. $offlineFile = JPATH_SITE . '/offline.html'; if (!@file_exists($offlineFile)) { $jreg = $this->container->platform->getConfig(); $message = Text::_($jreg->get('offline_message')); $sitename = $jreg->get('sitename'); $langTag = Factory::getApplication()->getLanguage()->getTag(); $fileContents = <<<ENDHTML <html lang="$langTag"> <head> <title>$sitename</title> <meta name="color-scheme" content="light dark"> <style> body{font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"}h1{font-size:1.5em;padding-bottom:0.5em;border-bottom:thin solid rgba(0,0,0,.1)}.container{padding:0;height:99vh;width:99vw;display:flex;justify-content:center;align-items:center}.banner{min-width:100px;max-width:800px;text-align:center;background:rgba(0,0,0,.2);padding:1em 3em;border:thin solid rgba(0,0,0,.3);border-radius:1em}@media (prefers-color-scheme: dark){h1{border-color:rgba(255,255,255,.3)}.banner{background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.1)}} </style> </head> <body> <div class="container"> <div class="banner"> <h1> $sitename </h1> <p> $message </p> </div> </div> </body> </html> ENDHTML; if (!@file_put_contents($offlineFile, $fileContents)) { File::write($offlineFile, $fileContents); } } $htaccess = $this->getHtaccess(); $result = @file_put_contents($htaccessFilePath, $htaccess); if (!$result) { $result = File::write($htaccessFilePath, $htaccess); } return $result; } /** * Puts the site back on-line * * @return bool True on success */ public function putOnline() { if (!$this->isOffline()) { return false; } $htaccessPath = JPATH_SITE . '/.htaccess'; $oldHtaccessPath = JPATH_SITE . '/.htaccess.eom'; $result = @unlink($htaccessPath); if (!$result) { $result = File::delete($htaccessPath); } if (@file_exists($oldHtaccessPath)) { $filedata = @file($oldHtaccessPath); $newLines = []; $lookFor = "## EOMBAK - Do not remove this line or this file"; foreach ($filedata as $line) { if (trim($line) == $lookFor) { continue; } $newLines[] = $line; } $filedata = implode("\n", $newLines); $result = @file_put_contents($htaccessPath, $filedata); if (!$result) { $result = File::write($htaccessPath, $filedata); } } if ($result) { if (!@unlink($oldHtaccessPath)) { File::delete($oldHtaccessPath); } } return $result; } /** * Returns the contents of the stealthy .htaccess file * * @return string */ public function getHtaccess() { // Sniff the .htaccess for a RewriteBase line $rewriteBase = ''; $sourceFile = JPATH_SITE . '/.htaccess.eom'; if (!@file_exists($sourceFile)) { $sourceFile = JPATH_SITE . '/.htaccess'; } if (@file_exists($sourceFile)) { $sourceData = @file($sourceFile); foreach ($sourceData as $line) { $line = trim($line); if (substr($line, 0, 12) == 'RewriteBase ') { $rewriteBase = $line; break; } } } /** @var ControlPanel $cpanelModel */ $cpanelModel = $this->container->factory->model('ControlPanel')->tmpInstance(); // And finally create our stealth .htaccess $ip = $cpanelModel->getVisitorIP(); $ip = str_replace('.', '\\.', $ip); $htaccess = <<<ENDHTACCESS RewriteEngine On $rewriteBase RewriteCond %{REMOTE_ADDR} !$ip RewriteCond %{REQUEST_URI} !offline\.html RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp|\.swf|\.css|\.js)$ RewriteRule (.*) offline.html [R=307,L] ENDHTACCESS; return $htaccess; } }