context, null, \JFactory::getDbo()); $testsModel = new TestsModel(null, \JFactory::getDbo()); // Check the applied patches in the database first $appliedPatches = $testsModel->getAppliedPatches(); if (count($appliedPatches)) { $revertErrored = false; // Let's try to cleanly revert all applied patches foreach ($appliedPatches as $patch) { try { $pullModel->revert($patch->id); } catch (\RuntimeException $e) { $revertErrored = true; } } // If we errored out reverting patches, we'll need to truncate the table if ($revertErrored) { try { $testsModel->truncateTable(); } catch (\RuntimeException $e) { $hasErrors = true; $this->getApplication()->enqueueMessage( \JText::sprintf('COM_PATCHTESTER_ERROR_TRUNCATING_PULLS_TABLE', $e->getMessage()), 'error' ); } } } // Now truncate the pulls table try { $pullsModel->truncateTable(); } catch (\RuntimeException $e) { $hasErrors = true; $this->getApplication()->enqueueMessage( \JText::sprintf('COM_PATCHTESTER_ERROR_TRUNCATING_TESTS_TABLE', $e->getMessage()), 'error' ); } jimport('joomla.filesystem.file'); jimport('joomla.filesystem.folder'); // Check the backups directory to see if any .txt files remain; clear them if so $backups = \JFolder::files(JPATH_COMPONENT . '/backups', '.txt'); if (count($backups)) { foreach ($backups as $file) { if (!\JFile::delete(JPATH_COMPONENT . '/backups/' . $file)) { $this->getApplication()->enqueueMessage( \JText::sprintf('COM_PATCHTESTER_ERROR_CANNOT_DELETE_FILE', JPATH_COMPONENT . '/backups/' . $file), 'error' ); $hasErrors = true; } } } // Processing completed, inform the user of a success or fail if ($hasErrors) { $msg = \JText::sprintf( 'COM_PATCHTESTER_RESET_HAS_ERRORS', JPATH_COMPONENT . '/backups', \JFactory::getDbo()->replacePrefix('#__patchtester_tests') ); $type = 'warning'; } else { $msg = \JText::_('COM_PATCHTESTER_RESET_OK'); $type = 'notice'; } } catch (\Exception $e) { $msg = $e->getMessage(); $type = 'error'; } $this->getApplication()->enqueueMessage($msg, $type); $this->getApplication()->redirect(\JRoute::_('index.php?option=com_patchtester', false)); } }