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

@ -16,8 +16,8 @@ if (!defined('DC_RC_PATH')) {
return null; return null;
} }
$d = dirname(__FILE__).'/inc/'; $d = dirname(__FILE__) . '/inc/';
$__autoload['dcPackman'] = $d.'class.dc.packman.php'; $__autoload['dcPackman'] = $d . 'class.dc.packman.php';
$__autoload['libPackman'] = $d.'lib.packman.php'; $__autoload['libPackman'] = $d . 'lib.packman.php';
$__autoload['packmanFileZip'] = $d.'lib.packman.filezip.php'; $__autoload['packmanFileZip'] = $d . 'lib.packman.filezip.php';

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,16 +28,16 @@ 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)
).')(/|$)#'; ) . ')(/|$)#';
} }
return $exclude; return $exclude;
@ -48,9 +47,8 @@ class dcPackman
{ {
$res = array(); $res = array();
$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;
} }
@ -73,15 +70,14 @@ class dcPackman
$i = 0; $i = 0;
foreach($zip_files AS $zip_file) { foreach($zip_files AS $zip_file) {
$zip = new fileUnzip($root.'/'.$zip_file); $zip = new fileUnzip($root . '/' . $zip_file);
$zip_root_dir = $zip->getRootDir(); $zip_root_dir = $zip->getRootDir();
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);
} }
@ -90,7 +86,7 @@ class dcPackman
continue; continue;
} }
$zip->unzip($define,$cache.'/_define.php'); $zip->unzip($define, $cache . '/_define.php');
$modules->requireDefine($cache, $zip_root_dir); $modules->requireDefine($cache, $zip_root_dir);
if ($modules->moduleExists($zip_root_dir)) { if ($modules->moduleExists($zip_root_dir)) {
@ -100,21 +96,19 @@ class dcPackman
$res[$i] = $themes->getModules($zip_root_dir); $res[$i] = $themes->getModules($zip_root_dir);
} }
$res[$i]['id'] = $zip_root_dir; $res[$i]['id'] = $zip_root_dir;
$res[$i]['root'] = $root.'/'.$zip_file; $res[$i]['root'] = $root . '/' . $zip_file;
unlink($cache.'_define.php'); unlink($cache . '_define.php');
$i++; $i++;
} }
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,13 +116,12 @@ 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;
} }
@set_time_limit(300); @set_time_limit(300);
$fp = fopen($dest,'wb'); $fp = fopen($dest, 'wb');
$zip = $nocomment ? $zip = $nocomment ?
new packmanFileZip($fp) : new fileZip($fp); new packmanFileZip($fp) : new fileZip($fp);
@ -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,37 +174,36 @@ 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);
foreach($parts as $i => $part) { foreach($parts as $i => $part) {
$parts[$i] = files::tidyFileName($part); $parts[$i] = files::tidyFileName($part);
} }
return implode('/', $parts).'.zip'; return implode('/', $parts) . '.zip';
} }
private static function getOverwrite($overwrite, $root, $file) private static function getOverwrite($overwrite, $root, $file)
{ {
$path = $root.'/'.$file; $path = $root . '/' . $file;
if (file_exists($path) && !$overwrite) { if (file_exists($path) && !$overwrite) {
// don't break loop // don't break loop
//throw new Exception('File already exists'); //throw new Exception('File already exists');
@ -224,7 +215,7 @@ class dcPackman
private static function getCache() private static function getCache()
{ {
$c = DC_TPL_CACHE.'/packman'; $c = DC_TPL_CACHE . '/packman';
if (!file_exists($c)) { if (!file_exists($c)) {
@mkdir($c); @mkdir($c);
} }

View File

@ -14,14 +14,14 @@
class packmanFileZip extends fileZip class packmanFileZip extends fileZip
{ {
protected function writeFile($name,$file,$size,$mtime) protected function writeFile($name, $file, $size, $mtime)
{ {
if (!isset($this->entries[$name])) { if (!isset($this->entries[$name])) {
return; return;
} }
$size = filesize($file); $size = filesize($file);
$this->memoryAllocate($size*3); $this->memoryAllocate($size * 3);
$content = file_get_contents($file); $content = file_get_contents($file);
@ -43,47 +43,47 @@ class packmanFileZip extends fileZip
# Data descriptor # Data descriptor
$data_desc = $data_desc =
"\x50\x4b\x03\x04". "\x50\x4b\x03\x04" .
"\x14\x00". # ver needed to extract "\x14\x00" . # ver needed to extract
"\x00\x00". # gen purpose bit flag "\x00\x00" . # gen purpose bit flag
"\x08\x00". # compression method "\x08\x00" . # compression method
pack('v',$mtime). # last mod time pack('v', $mtime) . # last mod time
pack('v',$mdate). # last mod date pack('v', $mdate) . # last mod date
pack('V',$crc). # crc32 pack('V', $crc) . # crc32
pack('V',$c_len). # compressed filesize pack('V', $c_len) . # compressed filesize
pack('V',$unc_len). # uncompressed filesize pack('V', $unc_len) . # uncompressed filesize
pack('v',strlen($name)). # length of filename pack('v', strlen($name)) . # length of filename
pack('v',0). # extra field length pack('v' ,0) . # extra field length
$name. # end of "local file header" segment $name . # end of "local file header" segment
$zdata. # "file data" segment $zdata . # "file data" segment
pack('V',$crc). # crc32 pack('V', $crc) . # crc32
pack('V',$c_len). # compressed filesize pack('V', $c_len) . # compressed filesize
pack('V',$unc_len); # uncompressed filesize pack('V', $unc_len); # uncompressed filesize
fwrite($this->fp,$data_desc); fwrite($this->fp, $data_desc);
unset($zdata); unset($zdata);
$new_offset = $this->old_offset + strlen($data_desc); $new_offset = $this->old_offset + strlen($data_desc);
# Add to central directory record # Add to central directory record
$cdrec = $cdrec =
"\x50\x4b\x01\x02". "\x50\x4b\x01\x02" .
"\x00\x00". # version made by "\x00\x00" . # version made by
"\x14\x00". # version needed to extract "\x14\x00" . # version needed to extract
"\x00\x00". # gen purpose bit flag "\x00\x00" . # gen purpose bit flag
"\x08\x00". # compression method "\x08\x00" . # compression method
pack('v',$mtime). # last mod time pack('v', $mtime) . # last mod time
pack('v',$mdate). # last mod date pack('v', $mdate) . # last mod date
pack('V',$crc). # crc32 pack('V', $crc) . # crc32
pack('V',$c_len). # compressed filesize pack('V', $c_len) . # compressed filesize
pack('V',$unc_len). # uncompressed filesize pack('V', $unc_len) . # uncompressed filesize
pack('v',strlen($name)). # length of filename pack('v', strlen($name)) . # length of filename
pack('v',0). # extra field length pack('v', 0) . # extra field length
pack('v',0). # file comment length pack('v', 0) . # file comment length
pack('v',0). # disk number start pack('v', 0) . # disk number start
pack('v',0). # internal file attributes pack('v', 0) . # internal file attributes
pack('V',32). # external file attributes - 'archive' bit set pack('V', 32) . # external file attributes - 'archive' bit set
pack('V',$this->old_offset). # relative offset of local header pack('V', $this->old_offset). # relative offset of local header
$name; $name;
$this->old_offset = $new_offset; $this->old_offset = $new_offset;
@ -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;
} }
@ -38,14 +37,14 @@ class libPackman
); );
} }
if (!is_writable(dirname($repo.'/'.$file_a))) { if (!is_writable(dirname($repo . '/' . $file_a))) {
$core->error->add( $core->error->add(
__('Path to first export package is not writable.') __('Path to first export package is not writable.')
); );
} }
if (!empty($file_b) if (!empty($file_b)
&& !is_writable(dirname($repo.'/'.$file_b))) { && !is_writable(dirname($repo . '/' . $file_b))) {
$core->error->add( $core->error->add(
__('Path to second export package is not writable.') __('Path to second export package is not writable.')
); );
@ -59,7 +58,7 @@ class libPackman
return !( return !(
empty($path) || empty($path) ||
empty($file) || empty($file) ||
!is_writable(dirname($path.'/'.$file)) !is_writable(dirname($path . '/' . $file))
); );
} }
@ -68,88 +67,87 @@ class libPackman
$type = $type == 'themes' ? 'themes' : 'plugins'; $type = $type == 'themes' ? 'themes' : 'plugins';
echo echo
'<div class="multi-part" '. '<div class="multi-part" ' .
'id="packman-'.$type.'" title="'.$title.'">'. 'id="packman-' . $type . '" title="' . $title . '">' .
'<h3>'.$title.'</h3>'; '<h3>' . $title . '</h3>';
if (empty($modules) && !is_array($modules)) { if (empty($modules) && !is_array($modules)) {
echo echo
'<p><strong>'.__('There are no modules.').'</strong></p>'. '<p><strong>' . __('There are no modules.') . '</strong></p>' .
'<div>'; '<div>';
return null; return null;
} }
echo echo
'<form action="plugin.php" method="post">'. '<form action="plugin.php" method="post">' .
'<table class="clear"><tr>'. '<table class="clear"><tr>' .
'<th class="nowrap">'.__('Id').'</th>'. '<th class="nowrap">' . __('Id') . '</th>' .
'<th class="nowrap">'.__('Version').'</th>'. '<th class="nowrap">' . __('Version') . '</th>' .
'<th class="nowrap maximal">'.__('Name').'</th>'. '<th class="nowrap maximal">' . __('Name') . '</th>' .
'<th class="nowrap">'.__('Root').'</th>'. '<th class="nowrap">' . __('Root') . '</th>' .
'</tr>'; '</tr>';
foreach (self::sort($modules) as $id => $module) { foreach (self::sort($modules) as $id => $module) {
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">' .
html::escapeHTML($module['version']). html::escapeHTML($module['version']) .
'</td>'. '</td>' .
'<td class="nowrap maximal">'. '<td class="nowrap maximal">' .
__(html::escapeHTML($module['name'])). __(html::escapeHTML($module['name'])) .
'</td>'. '</td>' .
'<td class="nowrap">'. '<td class="nowrap">' .
dirname(path::real($module['root'], false)). dirname(path::real($module['root'], false)) .
'</td>'. '</td>' .
'</tr>'; '</tr>';
} }
echo echo
'</table>'. '</table>' .
'<p class="checkboxes-helpers"></p>'. '<p class="checkboxes-helpers"></p>' .
'<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>' .
'</form>'. '</form>' .
'</div>'; '</div>';
} }
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;
} }
echo echo
'<div class="multi-part" '. '<div class="multi-part" ' .
'id="packman-repository-'.$type.'" title="'.$title.'">'. 'id="packman-repository-' . $type . '" title="' . $title . '">' .
'<h3>'.$title.'</h3>'; '<h3>' . $title . '</h3>';
if (empty($modules) || !is_array($modules)) { if (empty($modules) || !is_array($modules)) {
echo echo
'<p><strong>'.__('There are no packages').'</strong></p>'. '<p><strong>' . __('There are no packages') . '</strong></p>' .
'</div>'; '</div>';
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';
@ -168,15 +166,15 @@ class libPackman
} }
echo echo
'<form action="plugin.php" method="post">'. '<form action="plugin.php" method="post">' .
'<table class="clear"><tr>'. '<table class="clear"><tr>' .
'<th class="nowrap">'.__('Id').'</th>'. '<th class="nowrap">' . __('Id') . '</th>' .
'<th class="nowrap">'.__('Version').'</th>'. '<th class="nowrap">' . __('Version') . '</th>' .
'<th class="nowrap">'.__('Name').'</th>'. '<th class="nowrap">' . __('Name') . '</th>' .
'<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']])) {
@ -186,45 +184,46 @@ class libPackman
$dup[$module['root']] = 1; $dup[$module['root']] = 1;
echo echo
'<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">' .
html::escapeHTML($module['version']). html::escapeHTML($module['version']) .
'</td>'. '</td>' .
'<td class="nowrap maximal">'. '<td class="nowrap maximal">' .
__(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=' .
html::escapeHTML(basename($module['root'])).'</a>'. basename($module['root']) . '&amp;repo=' . $type . '" title="'. __('Download') . '">' .
'</td>'. html::escapeHTML(basename($module['root'])) . '</a>' .
'</td>' .
'</tr>'; '</tr>';
} }
echo echo
'</table>'. '</table>' .
'<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>' .
'</form>'. '</form>' .
'</div>'; '</div>';
} }
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';
} }