| Server IP : 104.21.84.107 / Your IP : 104.23.197.209 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admisiones2025/plugins/task/sessiongc/src/Extension/ |
Upload File : |
<?php
/**
* @package Joomla.Plugins
* @subpackage Task.sessiongc
*
* @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
namespace Joomla\Plugin\Task\SessionGC\Extension;
use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\CMS\Session\MetadataManager;
use Joomla\Component\Scheduler\Administrator\Event\ExecuteTaskEvent;
use Joomla\Component\Scheduler\Administrator\Task\Status;
use Joomla\Component\Scheduler\Administrator\Traits\TaskPluginTrait;
use Joomla\Event\SubscriberInterface;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
/**
* A task plugin. Session data purge task.
* {@see ExecuteTaskEvent}.
*
* @since 5.0.0
*/
final class SessionGC extends CMSPlugin implements SubscriberInterface
{
use TaskPluginTrait;
/**
* The meta data manager
*
* @var MetadataManager
*
* @since 4.4.0
*/
private $metadataManager;
/**
* @var string[]
* @since 5.0.0
*/
private const TASKS_MAP = [
'session.gc' => [
'langConstPrefix' => 'PLG_TASK_SESSIONGC',
'method' => 'sessionGC',
'form' => 'sessionGCForm',
],
];
/**
* @var boolean
* @since 5.0.0
*/
protected $autoloadLanguage = true;
/**
* Constructor.
*
* @param array $config An optional associative array of configuration settings
* @param MetadataManager $metadataManager The user factory
*
* @since 4.4.0
*/
public function __construct(array $config, MetadataManager $metadataManager)
{
parent::__construct($config);
$this->metadataManager = $metadataManager;
}
/**
* @inheritDoc
*
* @return string[]
*
* @since 5.0.0
*/
public static function getSubscribedEvents(): array
{
return [
'onTaskOptionsList' => 'advertiseRoutines',
'onExecuteTask' => 'standardRoutineHandler',
'onContentPrepareForm' => 'enhanceTaskItemForm',
];
}
/**
* @param ExecuteTaskEvent $event The `onExecuteTask` event.
*
* @return integer The routine exit code.
*
* @since 5.0.0
* @throws \Exception
*/
private function sessionGC(ExecuteTaskEvent $event): int
{
$enableGC = (int) $event->getArgument('params')->enable_session_gc ?? 1;
if ($enableGC) {
$this->getApplication()->getSession()->gc();
}
$enableMetadata = (int) $event->getArgument('params')->enable_session_metadata_gc ?? 1;
if ($this->getApplication()->get('session_handler', 'none') !== 'database' && $enableMetadata) {
$this->metadataManager->deletePriorTo(time() - $this->getApplication()->getSession()->getExpire());
}
$this->logTask('SessionGC end');
return Status::OK;
}
}