fix help and next step of PSR2

This commit is contained in:
Jean-Christian Paul Denis 2021-08-23 15:07:29 +02:00
parent 42f12a73e6
commit 91c7f55946
11 changed files with 529 additions and 562 deletions

View File

@ -1,3 +1,8 @@
pacKman 2021.08.22
* fix PSR2 coding style
* update license
* fix help
pacKman 2021.08.17 pacKman 2021.08.17
* move to Franck style * move to Franck style

View File

@ -41,10 +41,10 @@ class packmanBehaviors
'small-icon' => 'index.php?pf=pacKman/icon.png', 'small-icon' => 'index.php?pf=pacKman/icon.png',
'large-icon' => 'index.php?pf=pacKman/icon-big.png', 'large-icon' => 'index.php?pf=pacKman/icon-big.png',
'permissions' => $core->auth->isSuperAdmin(), 'permissions' => $core->auth->isSuperAdmin(),
'active_cb' => array( 'active_cb' => [
'packmanBehaviors', 'packmanBehaviors',
'adminDashboardFavoritesActive' 'adminDashboardFavoritesActive'
) ]
]); ]);
} }

View File

@ -65,8 +65,7 @@ if (!empty($_POST['save'])) {
$list->getRedir()) $list->getRedir())
); );
} }
} } catch (Exception $e) {
catch (Exception $e) {
$core->error->add($e->getMessage()); $core->error->add($e->getMessage());
} }
} }

View File

@ -18,52 +18,52 @@ if (!defined('DC_CONTEXT_ADMIN')) {
# -- Module specs -- # -- Module specs --
$dc_min = '2.6'; $dc_min = '2.18';
$mod_id = 'pacKman'; $mod_id = 'pacKman';
$mod_conf = array( $mod_conf = [
array( [
'packman_menu_plugins', 'packman_menu_plugins',
'Add link to pacKman in plugins page', 'Add link to pacKman in plugins page',
false, false,
'boolean' 'boolean'
), ],
array( [
'packman_pack_nocomment', 'packman_pack_nocomment',
'Remove comments from files', 'Remove comments from files',
false, false,
'boolean' 'boolean'
), ],
array( [
'packman_pack_overwrite', 'packman_pack_overwrite',
'Overwrite existing package', 'Overwrite existing package',
false, false,
'boolean' 'boolean'
), ],
array( [
'packman_pack_filename', 'packman_pack_filename',
'Name of package', 'Name of package',
'%type%-%id%', '%type%-%id%',
'string' 'string'
), ],
array( [
'packman_secondpack_filename', 'packman_secondpack_filename',
'Name of second package', 'Name of second package',
'%type%-%id%-%version%', '%type%-%id%-%version%',
'string' 'string'
), ],
array( [
'packman_pack_repository', 'packman_pack_repository',
'Path to package repository', 'Path to package repository',
'', '',
'string' 'string'
), ],
array( [
'packman_pack_excludefiles', 'packman_pack_excludefiles',
'Extra files to exclude from package', 'Extra files to exclude from package',
'*.zip,*.tar,*.tar.gz,.directory,.hg', '*.zip,*.tar,*.tar.gz,.directory,.hg',
'string' 'string'
) ]
); ];
# -- Nothing to change below -- # -- Nothing to change below --
@ -73,9 +73,7 @@ try {
if (version_compare( if (version_compare(
$core->getVersion($mod_id), $core->getVersion($mod_id),
$core->plugins->moduleInfo($mod_id, 'version'), $core->plugins->moduleInfo($mod_id, 'version'),
'>=' '>=')) {
)) {
return null; return null;
} }

View File

@ -13,13 +13,12 @@
# -- END LICENSE BLOCK ------------------------------------ # -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) { if (!defined('DC_CONTEXT_ADMIN')) {
return null; return null;
} }
class dcPackman class dcPackman
{ {
public static $exclude = array( public static $exclude = [
'.', '.',
'..', '..',
'__MACOSX', '__MACOSX',
@ -29,14 +28,14 @@ class dcPackman
'CVS', 'CVS',
'.DS_Store', '.DS_Store',
'Thumbs.db' 'Thumbs.db'
); ];
public static function quote_exclude($exclude) public static function quote_exclude($exclude)
{ {
foreach($exclude AS $k => $v) { foreach($exclude AS $k => $v) {
$exclude[$k] = '#(^|/)(' . str_replace( $exclude[$k] = '#(^|/)(' . str_replace(
array('.', '*'), ['.', '*'],
array('\.', '.*?'), ['\.', '.*?'],
trim($v) trim($v)
) . ')(/|$)#'; ) . ')(/|$)#';
} }
@ -50,7 +49,6 @@ class dcPackman
$cache = self::getCache() . '/'; $cache = self::getCache() . '/';
if (!is_dir($root) || !is_readable($root)) { if (!is_dir($root) || !is_readable($root)) {
return $res; return $res;
} }
@ -64,7 +62,6 @@ class dcPackman
} }
if (empty($zip_files)) { if (empty($zip_files)) {
return $res; return $res;
} }
@ -80,8 +77,7 @@ class dcPackman
if ($zip_root_dir != false) { if ($zip_root_dir != false) {
$define = $zip_root_dir . '/_define.php'; $define = $zip_root_dir . '/_define.php';
$has_define = $zip->hasFile($define); $has_define = $zip->hasFile($define);
} } else {
else {
$define = '_define.php'; $define = '_define.php';
$has_define = $zip->hasFile($define); $has_define = $zip->hasFile($define);
} }
@ -109,12 +105,10 @@ class dcPackman
return $res; return $res;
} }
public static function pack($info, $root, $files, $overwrite=false, $exclude=array(), $nocomment=false) public static function pack($info, $root, $files, $overwrite = false, $exclude = [], $nocomment = false)
{ {
if (!($info = self::getInfo($info)) if (!($info = self::getInfo($info))
|| !($root = self::getRoot($root)) || !($root = self::getRoot($root))) {
) {
return false; return false;
} }
@ -122,8 +116,7 @@ class dcPackman
foreach($files as $file) { foreach($files as $file) {
if (!($file = self::getFile($file, $info)) if (!($file = self::getFile($file, $info))
|| !($dest = self::getOverwrite($overwrite, $root, $file)) || !($dest = self::getOverwrite($overwrite, $root, $file))) {
) {
continue; continue;
} }
@ -164,8 +157,7 @@ class dcPackman
{ {
if (!isset($info['root']) if (!isset($info['root'])
|| !isset($info['id']) || !isset($info['id'])
|| !is_dir($info['root'])) || !is_dir($info['root'])) {
{
throw new Exception('Failed to get module info'); throw new Exception('Failed to get module info');
} }
@ -182,25 +174,24 @@ class dcPackman
private static function getFile($file, $info) private static function getFile($file, $info)
{ {
if (empty($file) || empty($info)) { if (empty($file) || empty($info)) {
return null; return null;
} }
$file = str_replace( $file = str_replace(
array( [
'%type%', '%type%',
'%id%', '%id%',
'%version%', '%version%',
'%author%', '%author%',
'%time%' '%time%'
), ],
array( [
$info['type'], $info['type'],
$info['id'], $info['id'],
$info['version'], $info['version'],
$info['author'], $info['author'],
time() time()
), ],
$file $file
); );
$parts = explode('/', $file); $parts = explode('/', $file);

View File

@ -92,7 +92,7 @@ class packmanFileZip extends fileZip
protected static function removePHPComment($content) protected static function removePHPComment($content)
{ {
$comment = array(T_COMMENT); $comment = [T_COMMENT];
if (defined('T_DOC_COMMENT')) { if (defined('T_DOC_COMMENT')) {
$comment[] = T_DOC_COMMENT; // PHP 5 $comment[] = T_DOC_COMMENT; // PHP 5
} }
@ -103,22 +103,17 @@ class packmanFileZip extends fileZip
$newStr = ''; $newStr = '';
$tokens = token_get_all($content); $tokens = token_get_all($content);
foreach ($tokens as $token) foreach ($tokens as $token) {
{ if (is_array($token)) {
if (is_array($token))
{
if (in_array($token[0], $comment)) { if (in_array($token[0], $comment)) {
//$newStr .= "\n"; //$newStr .= "\n";
} } else {
else {
$newStr .= $token[1]; $newStr .= $token[1];
} }
} } else {
else {
$newStr .= $token; $newStr .= $token;
} }
} }
return $newStr; return $newStr;
} }
} }
?>

View File

@ -13,7 +13,6 @@
# -- END LICENSE BLOCK ------------------------------------ # -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_CONTEXT_ADMIN')) { if (!defined('DC_CONTEXT_ADMIN')) {
return null; return null;
} }
@ -93,7 +92,7 @@ class libPackman
echo echo
'<tr class="line">' . '<tr class="line">' .
'<td class="nowrap"><label class="classic">' . '<td class="nowrap"><label class="classic">' .
form::checkbox(array('modules['.html::escapeHTML($module['root']).']'), html::escapeHTML($id)). form::checkbox(['modules[' . html::escapeHTML($module['root']) . ']'], html::escapeHTML($id)) .
html::escapeHTML($id) . html::escapeHTML($id) .
'</label></td>' . '</label></td>' .
'<td class="nowrap count">' . '<td class="nowrap count">' .
@ -114,13 +113,13 @@ class libPackman
'<p>' . '<p>' .
(!empty($_REQUEST['redir']) ? (!empty($_REQUEST['redir']) ?
form::hidden( form::hidden(
array('redir'), ['redir'],
html::escapeHTML($_REQUEST['redir']) html::escapeHTML($_REQUEST['redir'])
) : '' ) : ''
) . ) .
form::hidden(array('p'), 'pacKman'). form::hidden(['p'], 'pacKman') .
form::hidden(array('type'), $type). form::hidden(['type'], $type) .
form::hidden(array('action'), 'packup'). form::hidden(['action'], 'packup') .
'<input type="submit" name="packup" value="' . '<input type="submit" name="packup" value="' .
__('Pack up selected modules') .'" />' . __('Pack up selected modules') .'" />' .
$core->formNonce() . '</p>' . $core->formNonce() . '</p>' .
@ -131,8 +130,7 @@ class libPackman
public static function repository($core, $modules, $type, $title) public static function repository($core, $modules, $type, $title)
{ {
if (!in_array($type,array('plugins','themes','repository'))) { if (!in_array($type, ['plugins', 'themes', 'repository'])) {
return null; return null;
} }
@ -149,7 +147,7 @@ class libPackman
return null; return null;
} }
$combo_action = array(__('delete') => 'delete'); $combo_action = [__('delete') => 'delete'];
if ($type == 'plugins' || $type == 'themes') { if ($type == 'plugins' || $type == 'themes') {
$combo_action[__('install')] = 'install'; $combo_action[__('install')] = 'install';
@ -176,7 +174,7 @@ class libPackman
'<th class="nowrap">' . __('File') . '</th>' . '<th class="nowrap">' . __('File') . '</th>' .
'</tr>'; '</tr>';
$dup = array(); $dup = [];
foreach(self::sort($modules) AS $module) { foreach(self::sort($modules) AS $module) {
if (isset($dup[$module['root']])) { if (isset($dup[$module['root']])) {
@ -189,7 +187,7 @@ class libPackman
'<tr class="line">' . '<tr class="line">' .
'<td class="nowrap"><label class="classic" title="' . '<td class="nowrap"><label class="classic" title="' .
html::escapeHTML($module['root']) . '">' . html::escapeHTML($module['root']) . '">' .
form::checkbox(array('modules['.html::escapeHTML($module['root']).']'), $module['id']). form::checkbox(['modules[' . html::escapeHTML($module['root']) . ']'], $module['id']) .
html::escapeHTML($module['id']) . html::escapeHTML($module['id']) .
'</label></td>' . '</label></td>' .
'<td class="nowrap count">' . '<td class="nowrap count">' .
@ -199,7 +197,8 @@ class libPackman
__(html::escapeHTML($module['name'])) . __(html::escapeHTML($module['name'])) .
'</td>' . '</td>' .
'<td class="nowrap">' . '<td class="nowrap">' .
'<a class="packman-download" href="plugin.php?p=pacKman&amp;package='.basename($module['root']).'&amp;repo='.$type.'" title="'.__('Download').'">'. '<a class="packman-download" href="plugin.php?p=pacKman&amp;package=' .
basename($module['root']) . '&amp;repo=' . $type . '" title="'. __('Download') . '">' .
html::escapeHTML(basename($module['root'])) . '</a>' . html::escapeHTML(basename($module['root'])) . '</a>' .
'</td>' . '</td>' .
'</tr>'; '</tr>';
@ -210,11 +209,11 @@ class libPackman
'<div class="two-cols">' . '<div class="two-cols">' .
'<p class="col checkboxes-helpers"></p>' . '<p class="col checkboxes-helpers"></p>' .
'<p class="col right">' . __('Selected modules action:') . ' ' . '<p class="col right">' . __('Selected modules action:') . ' ' .
form::combo(array('action'), $combo_action). form::combo(['action'], $combo_action) .
'<input type="submit" name="packup" value="' . __('ok') . '" />' . '<input type="submit" name="packup" value="' . __('ok') . '" />' .
form::hidden(array('p'), 'pacKman'). form::hidden(['p'], 'pacKman') .
form::hidden(array('tab'), 'repository'). form::hidden(['tab'], 'repository') .
form::hidden(array('type'), $type). form::hidden(['type'], $type) .
$core->formNonce() . $core->formNonce() .
'</p>' . '</p>' .
'</div>' . '</div>' .
@ -224,7 +223,7 @@ class libPackman
protected static function sort($modules) protected static function sort($modules)
{ {
$sorter = array(); $sorter = [];
foreach($modules as $id => $module) { foreach($modules as $id => $module) {
$sorter[$id] = $id; $sorter[$id] = $id;
} }

View File

@ -21,8 +21,7 @@ dcPage::checkSuper();
# Queries # Queries
$p_url = 'plugin.php?p=pacKman'; $p_url = 'plugin.php?p=pacKman';
$action = isset($_POST['action']) ? $_POST['action'] : ''; $action = isset($_POST['action']) ? $_POST['action'] : '';
$type = isset($_POST['type']) && in_array($_POST['type'], $type = isset($_POST['type']) && in_array($_POST['type'], ['plugins', 'themes', 'repository']) ? $_POST['type'] : '';
array('plugins', 'themes', 'repository')) ? $_POST['type'] : '';
# Settings # Settings
$core->blog->settings->addNamespace('pacKman'); $core->blog->settings->addNamespace('pacKman');
@ -66,14 +65,12 @@ try
# Download # Download
if (isset($_REQUEST['package']) && empty($type)) { if (isset($_REQUEST['package']) && empty($type)) {
$modules = array(); $modules = [];
if ($type == 'plugins') { if ($type == 'plugins') {
$modules = dcPackman::getPackages($core, $plugins_path); $modules = dcPackman::getPackages($core, $plugins_path);
} } elseif ($type == 'themes') {
elseif ($type == 'themes') {
$modules = dcPackman::getPackages($core, $themes_path); $modules = dcPackman::getPackages($core, $themes_path);
} } else {
else {
$modules = array_merge( $modules = array_merge(
dcPackman::getPackages($core, dirname($repo_path . '/' . $s->packman_pack_filename)), dcPackman::getPackages($core, dirname($repo_path . '/' . $s->packman_pack_filename)),
dcPackman::getPackages($core, dirname($repo_path . '/' . $s->packman_secondpack_filename)) dcPackman::getPackages($core, dirname($repo_path . '/' . $s->packman_secondpack_filename))
@ -83,8 +80,7 @@ try
foreach($modules as $f) { foreach($modules as $f) {
if (preg_match('/' . preg_quote($_REQUEST['package']) . '$/', $f['root']) if (preg_match('/' . preg_quote($_REQUEST['package']) . '$/', $f['root'])
&& is_file($f['root']) && is_readable($f['root']) && is_file($f['root']) && is_readable($f['root'])) {
) {
# --BEHAVIOR-- packmanBeforeDownloadPackage # --BEHAVIOR-- packmanBeforeDownloadPackage
$core->callBehavior('packmanBeforeDownloadPackage', $f, $type); $core->callBehavior('packmanBeforeDownloadPackage', $f, $type);
@ -105,13 +101,11 @@ try
header('Content-Type: text/plain'); header('Content-Type: text/plain');
http::head(404, 'Not Found'); http::head(404, 'Not Found');
exit; exit;
} } elseif (!empty($action) && !$is_editable) {
elseif (!empty($action) && !$is_editable) {
throw new Exception('No selected modules'); throw new Exception('No selected modules');
}
# Pack # Pack
elseif ($action == 'packup') { } elseif ($action == 'packup') {
foreach ($_POST['modules'] as $root => $id) { foreach ($_POST['modules'] as $root => $id) {
@ -124,10 +118,10 @@ try
$module['type'] = $type == 'themes' ? 'theme' : 'plugin'; $module['type'] = $type == 'themes' ? 'theme' : 'plugin';
$root = $s->packman_pack_repository; $root = $s->packman_pack_repository;
$files = array( $files = [
$s->packman_pack_filename, $s->packman_pack_filename,
$s->packman_secondpack_filename $s->packman_secondpack_filename
); ];
$nocomment = $s->packman_pack_nocomment; $nocomment = $s->packman_pack_nocomment;
$overwrite = $s->packman_pack_overwrite; $overwrite = $s->packman_pack_overwrite;
$exclude = explode(',', $s->packman_pack_excludefiles); $exclude = explode(',', $s->packman_pack_excludefiles);
@ -148,10 +142,9 @@ try
http::redirect(empty($_POST['redir']) ? http::redirect(empty($_POST['redir']) ?
$p_url . '#packman-' . $type : $_POST['redir'] $p_url . '#packman-' . $type : $_POST['redir']
); );
}
# Delete # Delete
elseif ($action == 'delete') { } elseif ($action == 'delete') {
foreach ($_POST['modules'] as $root => $id) { foreach ($_POST['modules'] as $root => $id) {
if (!file_exists($root) || !files::isDeletable($root)) { if (!file_exists($root) || !files::isDeletable($root)) {
@ -167,10 +160,9 @@ try
http::redirect( http::redirect(
$p_url . '#packman-repository-' . $type $p_url . '#packman-repository-' . $type
); );
}
# Install # Install
elseif ($action == 'install') { } elseif ($action == 'install') {
foreach ($_POST['modules'] as $root => $id) { foreach ($_POST['modules'] as $root => $id) {
@ -195,18 +187,15 @@ try
http::redirect( http::redirect(
$p_url . '#packman-repository-' . $type $p_url . '#packman-repository-' . $type
); );
}
# Copy # Copy
elseif (strpos($action, 'copy_to_') !== false) { } elseif (strpos($action, 'copy_to_') !== false) {
if ($action == 'copy_to_plugins') { if ($action == 'copy_to_plugins') {
$dest = $plugins_path; $dest = $plugins_path;
} } elseif ($action == 'copy_to_themes') {
elseif ($action == 'copy_to_themes') {
$dest = $themes_path; $dest = $themes_path;
} } elseif ($action == 'copy_to_repository') {
elseif ($action == 'copy_to_repository') {
$dest = $repo_path; $dest = $repo_path;
} }
@ -223,18 +212,15 @@ try
http::redirect( http::redirect(
$p_url . '#packman-repository-' . $type $p_url . '#packman-repository-' . $type
); );
}
# Move # Move
elseif (strpos($action, 'move_to_') !== false) { } elseif (strpos($action, 'move_to_') !== false) {
if ($action == 'move_to_plugins') { if ($action == 'move_to_plugins') {
$dest = $plugins_path; $dest = $plugins_path;
} } elseif ($action == 'move_to_themes') {
elseif ($action == 'move_to_themes') {
$dest = $themes_path; $dest = $themes_path;
} } elseif ($action == 'move_to_repository') {
elseif ($action == 'move_to_repository') {
$dest = $repo_path; $dest = $repo_path;
} }
@ -253,8 +239,7 @@ try
$p_url . '#packman-repository-' . $type $p_url . '#packman-repository-' . $type
); );
} }
} } catch(Exception $e) {
catch(Exception $e) {
$core->error->add($e->getMessage()); $core->error->add($e->getMessage());
} }
@ -270,12 +255,10 @@ $core->callBehavior('packmanAdminHeader', $core);
echo echo
'</head><body>' . '</head><body>' .
dcPage::breadcrumb( dcPage::breadcrumb([
array(
__('Plugins') => '', __('Plugins') => '',
__('pacKman') => '' __('pacKman') => ''
) ]).
).
dcPage::notices(); dcPage::notices();
if ($core->error->flag()) { if ($core->error->flag()) {
@ -284,9 +267,8 @@ if ($core->error->flag()) {
'<a href="plugins.php?module=pacKman&amp;conf=1&amp;redir=' . '<a href="plugins.php?module=pacKman&amp;conf=1&amp;redir=' .
urlencode('plugin.php?p=pacKman') . '">' . __('Configuration') . '</a>' . urlencode('plugin.php?p=pacKman') . '">' . __('Configuration') . '</a>' .
'</p>'; '</p>';
}
else {
} else {
$repo_path_modules = array_merge( $repo_path_modules = array_merge(
dcPackman::getPackages( dcPackman::getPackages(
$core, $core,

View File

@ -55,9 +55,8 @@
<p>Si vous souhaitez plus d'aide ou apporter votre contribution à cette extension, voici quelques liens utiles.</p> <p>Si vous souhaitez plus d'aide ou apporter votre contribution à cette extension, voici quelques liens utiles.</p>
<ul> <ul>
<li><a href="http://forum.dotclear.org/viewtopic.php?id=40066">Sujet sur le forum Dotclear</a></li> <li><a href="http://forum.dotclear.org/viewtopic.php?id=40066">Sujet sur le forum Dotclear</a></li>
<li><a href="http://lab.dotclear.org/wiki/plugin/pacKman">Dépôt svn</a></li> <li><a href="https://github.com/JcDenis/pacKman">Dépôt github</a></li>
<li><a href="https://bitbucket.org/JcDenis/packman">Dépôt hg</a></li> <li><a href="https://plugins.dotaddict.org/dc2/details/pacKman">Dépôt Dotaddict</a></li>
<li><a href="http://jcd.lv/pacKman">Billet dédié sur le blog de l'auteur</a></li>
</ul> </ul>
</body> </body>

View File

@ -13,10 +13,9 @@
# -- END LICENSE BLOCK ------------------------------------ # -- END LICENSE BLOCK ------------------------------------
if (!defined('DC_RC_PATH')) { if (!defined('DC_RC_PATH')) {
return null; return null;
} }
if (!empty($_REQUEST['module']) && $_REQUEST['module'] == 'pacKman') { if (!isset($__resources['help']['pacKman'])) {
$__resources['help']['core_plugins_conf'] = dirname(__FILE__).'/help/help.html'; $__resources['help']['pacKman'] = dirname(__FILE__) . '/help/help.html';
} }