dcAdvancedCleaner/inc/lib.dc.advanced.cleaner.behaviors.php

235 lines
7.7 KiB
PHP
Raw Normal View History

2018-02-19 18:10:58 +00:00
<?php
2021-09-06 22:09:09 +00:00
/**
* @brief dcAdvancedCleaner, a plugin for Dotclear 2
2021-11-06 15:19:49 +00:00
*
2021-09-06 22:09:09 +00:00
* @package Dotclear
* @subpackage Plugin
2021-11-06 15:19:49 +00:00
*
2021-09-06 22:09:09 +00:00
* @author Jean-Christian Denis and Contributors
2021-11-06 15:19:49 +00:00
*
2021-09-06 22:09:09 +00:00
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
2021-09-06 23:39:52 +00:00
if (!defined('DC_ADMIN_CONTEXT')) {
return null;
}
2018-02-19 18:10:58 +00:00
class behaviorsDcAdvancedCleaner
{
2022-11-15 10:34:45 +00:00
public static function adminDashboardFavorites($favs)
2021-10-28 20:17:38 +00:00
{
$favs->register('dcAdvancedCleaner', [
'title' => __('Advanced cleaner'),
2022-11-15 10:34:45 +00:00
'url' => dcCore::app()->adminurl->get('admin.plugin.dcAdvancedCleaner'),
2021-10-28 20:17:38 +00:00
'small-icon' => dcPage::getPF('dcAdvancedCleaner/icon.png'),
'large-icon' => dcPage::getPF('dcAdvancedCleaner/icon-big.png'),
2022-11-15 10:34:45 +00:00
'permissions' => dcCore::app()->auth->isSuperAdmin(),
2021-10-28 20:17:38 +00:00
]);
}
2021-09-06 22:09:09 +00:00
public static function pluginsBeforeDelete($plugin)
{
2021-09-06 23:39:52 +00:00
self::moduleBeforeDelete($plugin, 'plugins.php?removed=1');
2021-09-06 22:09:09 +00:00
}
public static function themeBeforeDelete($theme)
{
2021-09-06 23:39:52 +00:00
self::moduleBeforeDelete($theme, 'blog_theme.php?del=1');
2021-09-06 22:09:09 +00:00
}
2021-09-06 23:39:52 +00:00
// Generic module before delete
public static function moduleBeforeDelete($module, $redir)
2021-09-06 22:09:09 +00:00
{
$done = false;
2022-11-15 10:34:45 +00:00
if (!dcCore::app()->blog->settings->dcAdvancedCleaner->dcAdvancedCleaner_behavior_active) {
2021-09-06 23:39:52 +00:00
return null;
}
2022-11-15 10:34:45 +00:00
$uninstaller = new dcUninstaller();
2021-09-06 22:09:09 +00:00
$uninstaller->loadModule($module['root']);
$m_callbacks = $uninstaller->getDirectCallbacks($module['id']);
2021-11-06 15:19:49 +00:00
$m_actions = $uninstaller->getDirectActions($module['id']);
2021-09-06 22:09:09 +00:00
2021-11-06 15:19:49 +00:00
foreach ($m_callbacks as $k => $callback) {
2021-09-06 23:39:52 +00:00
if (!isset($callback['func']) || !is_callable($callback['func'])) {
continue;
}
call_user_func($callback['func'], $module);
2021-09-06 22:09:09 +00:00
$done = true;
}
2021-11-06 15:19:49 +00:00
foreach ($m_actions as $type => $actions) {
foreach ($actions as $v) {
2021-09-06 23:39:52 +00:00
$uninstaller->execute($type, $v['action'], $v['ns']);
2021-09-06 22:09:09 +00:00
$done = true;
}
}
if ($done) {
http::redirect($redir);
}
}
2022-11-15 10:34:45 +00:00
public static function pluginsToolsTabs()
2021-09-06 22:09:09 +00:00
{
2022-11-15 10:34:45 +00:00
self::modulesTabs(DC_PLUGINS_ROOT, dcCore::app()->adminurl->get('admin.plugins') . '#uninstaller');
2021-09-06 22:09:09 +00:00
}
2022-11-15 10:34:45 +00:00
public static function modulesTabs($path, $redir, $title = '')
2021-09-06 22:09:09 +00:00
{
2022-11-15 10:34:45 +00:00
if (!dcCore::app()->blog->settings->dcAdvancedCleaner->dcAdvancedCleaner_behavior_active) {
2021-09-06 23:39:52 +00:00
return null;
}
2021-09-06 22:09:09 +00:00
$title = empty($title) ? __('Advanced uninstall') : $title;
2022-11-15 10:34:45 +00:00
$uninstaller = new dcUninstaller();
2021-09-06 22:09:09 +00:00
$uninstaller->loadModules($path);
$modules = $uninstaller->getModules();
2021-11-06 15:19:49 +00:00
$props = $uninstaller->getAllowedActions();
2021-09-06 22:09:09 +00:00
2021-09-07 08:31:22 +00:00
echo '<div class="multi-part" id="uninstaller" title="' . __($title) . '"><h3>' . __($title) . '</h3>';
2021-09-06 22:09:09 +00:00
2021-11-06 15:19:49 +00:00
if (!count($modules)) {
2021-09-06 23:39:52 +00:00
echo '<p>' . __('There is no module with uninstall features') . '</p></div>';
2021-11-06 15:19:49 +00:00
2021-09-06 23:39:52 +00:00
return null;
2021-09-06 22:09:09 +00:00
}
echo
2021-09-06 23:39:52 +00:00
'<p>' . __('List of modules with advanced uninstall features') . '</p>' .
'<form method="post" action="' . $redir . '">' .
'<table class="clear"><tr>' .
2021-09-07 08:52:28 +00:00
'<th colspan="2">' . __('module') . '</th>';
2021-09-06 22:09:09 +00:00
2021-11-06 15:19:49 +00:00
foreach ($props as $pro_id => $prop) {
2021-09-06 23:39:52 +00:00
echo '<th>' . __($pro_id) . '</th>';
2021-09-06 22:09:09 +00:00
}
2021-09-07 08:52:28 +00:00
echo '<th>' . __('other') . '</th>' . '</tr>';
2021-09-06 22:09:09 +00:00
$i = 0;
2021-11-06 15:19:49 +00:00
foreach ($modules as $module_id => $module) {
2021-09-06 22:09:09 +00:00
echo
2021-09-06 23:39:52 +00:00
'<tr class="line">' .
'<td class="nowrap">' . $module_id . '</td>' .
'<td class="nowrap">' . $module['version'] . '</td>';
2021-09-06 22:09:09 +00:00
$actions = $uninstaller->getUserActions($module_id);
2021-11-06 15:19:49 +00:00
foreach ($props as $prop_id => $prop) {
2021-09-06 22:09:09 +00:00
echo '<td class="nowrap">';
if (!isset($actions[$prop_id])) {
echo '--</td>';
2021-11-06 15:19:49 +00:00
2021-09-06 22:09:09 +00:00
continue;
}
$j = 0;
2021-11-06 15:19:49 +00:00
foreach ($actions[$prop_id] as $action_id => $action) {
2021-09-06 23:39:52 +00:00
if (!isset($props[$prop_id][$action['action']])) {
continue;
}
$ret = base64_encode(serialize([
2021-11-06 15:19:49 +00:00
'type' => $prop_id,
'action' => $action['action'],
2022-11-15 10:34:45 +00:00
'ns' => $action['ns'],
2021-09-06 23:39:52 +00:00
]));
2021-09-06 22:09:09 +00:00
2021-11-06 15:19:49 +00:00
echo '<label class="classic">' .
2021-09-06 23:39:52 +00:00
form::checkbox(['actions[' . $module_id . '][' . $j . ']'], $ret) .
' ' . $action['desc'] . '</label><br />';
2021-09-06 22:09:09 +00:00
$j++;
}
echo '</td>';
}
echo '<td class="nowrap">';
$callbacks = $uninstaller->getUserCallbacks($module_id);
if (empty($callbacks)) {
echo '--';
}
$k = 0;
2021-11-06 15:19:49 +00:00
foreach ($callbacks as $callback_id => $callback) {
2021-09-06 22:09:09 +00:00
$ret = base64_encode(serialize($callback['func']));
2021-11-06 15:19:49 +00:00
echo '<label class="classic">' .
2021-09-06 23:39:52 +00:00
form::checkbox(['extras[' . $module_id . '][' . $k . ']'], $ret) .
' ' . $callback['desc'] . '</label><br />';
2021-09-06 22:09:09 +00:00
}
echo '</td></tr>';
}
2021-11-06 15:19:49 +00:00
echo
2021-09-06 23:39:52 +00:00
'</table>' .
'<p>' .
2022-11-15 10:34:45 +00:00
dcCore::app()->formNonce() .
2021-10-28 20:17:38 +00:00
form::hidden(['path'], $path) .
2021-09-06 23:39:52 +00:00
form::hidden(['redir'], $redir) .
form::hidden(['action'], 'uninstall') .
'<input type="submit" name="submit" value="' . __('Perform selected actions') . '" /> ' .
'</p>' .
2021-09-07 08:31:22 +00:00
'</form>';
echo '</div>';
2021-09-06 22:09:09 +00:00
}
2021-10-28 20:17:38 +00:00
public static function adminModulesListDoActions($list, $modules, $type)
{
2022-11-15 10:34:45 +00:00
if (!dcCore::app()->blog->settings->dcAdvancedCleaner->dcAdvancedCleaner_behavior_active) {
2021-10-28 20:17:38 +00:00
return null;
}
if (!isset($_POST['action']) || $_POST['action'] != 'uninstall'
2022-11-15 10:34:45 +00:00
|| (empty($_POST['extras']) && empty($_POST['actions']))
2021-10-28 20:17:38 +00:00
) {
return null;
}
2022-11-15 10:34:45 +00:00
$uninstaller = new dcUninstaller();
2021-10-28 20:17:38 +00:00
$uninstaller->loadModules($_POST['path']);
$modules = $uninstaller->getModules();
$props = $uninstaller->getAllowedActions();
try {
// Extras
if (!empty($_POST['extras'])) {
2021-11-06 15:19:49 +00:00
foreach ($_POST['extras'] as $module_id => $extras) {
foreach ($extras as $k => $sentence) {
2021-10-28 20:17:38 +00:00
$extra = @unserialize(@base64_decode($sentence));
if (!$extra || !is_callable($extra)) {
continue;
}
2022-11-15 10:34:45 +00:00
call_user_func($extra, $module_id);
2021-10-28 20:17:38 +00:00
}
}
}
// Actions
if (!empty($_POST['actions'])) {
2021-11-06 15:19:49 +00:00
foreach ($_POST['actions'] as $module_id => $actions) {
foreach ($actions as $k => $sentence) {
2021-10-28 20:17:38 +00:00
$action = @unserialize(@base64_decode($sentence));
2021-11-06 15:19:49 +00:00
if (!$action
|| !isset($action['type'])
|| !isset($action['action'])
2021-10-28 20:17:38 +00:00
|| !isset($action['ns'])
) {
continue;
}
$uninstaller->execute($action['type'], $action['action'], $action['ns']);
}
}
}
2022-11-15 10:34:45 +00:00
dcAdminNotices::addSuccessNotice(__('Action successfuly excecuted'));
2021-10-28 20:17:38 +00:00
http::redirect($_POST['redir']);
2021-11-06 15:19:49 +00:00
} catch (Exception $e) {
2022-11-15 10:34:45 +00:00
dcCore::app()->error->add($e->getMessage());
2021-10-28 20:17:38 +00:00
}
}
2021-11-06 15:19:49 +00:00
}