code review

This commit is contained in:
Jean-Christian Paul Denis 2022-12-07 21:58:18 +01:00
parent 65db1c53dd
commit 3344f71dfd
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
9 changed files with 235 additions and 162 deletions

View File

@ -1,5 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
}
@ -31,8 +41,8 @@ if (dcCore::app()->auth->check(dcCore::app()->auth->makePermissions([
dcCore::app()->addBehavior('adminAfterPageCreate', ['templatorBehaviors','adminBeforePostUpdate']);
dcCore::app()->addBehavior('adminBeforePageUpdate', ['templatorBehaviors','adminBeforePostUpdate']);
dcCore::app()->addBehavior('adminPostsActions', ['templatorBehaviors','adminPostsActions']);
dcCore::app()->addBehavior('adminPagesActions', ['templatorBehaviors','adminPostsActions']);
dcCore::app()->addBehavior('adminPostsActionsV2', ['templatorBehaviors','adminPostsActionsV2']);
dcCore::app()->addBehavior('adminPagesActionsV2', ['templatorBehaviors','adminPostsActionsV2']);
dcCore::app()->addBehavior('adminFiltersListsV2', function (ArrayObject $sorts) {
$sorts['templator'] = [
@ -65,8 +75,7 @@ class templatorBehaviors
$selected = $post_meta->isEmpty() ? '' : $post_meta->meta_id;
}
$sidebar_items['options-box']['items']['templator'] =
'<div id="templator">' .
$sidebar_items['options-box']['items']['templator'] = '<div id="templator">' .
'<h5>' . __('Template') . '</h5>' .
'<p><label for="post_tpl">' . __('Select template:') . '</label>' .
form::combo('post_tpl', self::getTemplateCombo(), $selected) . '</p>' .
@ -85,7 +94,7 @@ class templatorBehaviors
}
}
public static function adminPostsActions(dcPostsActions $pa)
public static function adminPostsActionsV2(dcPostsActions $pa)
{
$pa->addAction(
[

View File

@ -1,11 +1,21 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
$this->registerModule(
'Templator',
'Templates engine',
'Create and select more templates for your posts',
'Osku and contributors',
'1.4-dev',

View File

@ -1,5 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}

View File

@ -1,5 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}

View File

@ -1,5 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}

View File

@ -1,5 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
class templatorMedia extends dcMedia
{
// limit to html files

View File

@ -1,15 +1,15 @@
<?php
# -- BEGIN LICENSE BLOCK ----------------------------------
#
# This file is part of templator a plugin for Dotclear 2.
#
# Copyright (c) 2010 Osku and contributors
# Licensed under the GPL version 2.0 license.
# A copy of this license is available in LICENSE file or at
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
#
# -- END LICENSE BLOCK ------------------------------------
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return;
}
@ -30,12 +30,11 @@ class templatorPager
$widget_icon = '<span class="widget" title="' . __('Template widget') . '">&diams;</span>';
$part = 'copy';
if (preg_match('/^category-(.+)$/', $f->basename)) {
// That is ugly.
$cat_id = str_replace('category-', '', $f->basename);
$cat_id = str_replace('.html', '', $cat_id);
$cat_parents = dcCore::app()->blog->getCategoryParents($cat_id);
if (preg_match('/^category-(.+).html$/', $f->basename, $cat_id)) {
$cat_id = (int) $cat_id[1];
$category = dcCore::app()->blog->getCategory($cat_id);
$full_name = '';
$cat_parents = dcCore::app()->blog->getCategoryParents($cat_id);
while ($cat_parents->fetch()) {
$full_name = $cat_parents->cat_title . ' &rsaquo; ';
};
@ -43,14 +42,10 @@ class templatorPager
$params['cat_id'] = $cat_id;
$params['post_type'] = '';
$icon = dcPage::getPF('templator/img/template-alt.png');
$part = 'copycat';;
$part = 'copycat';
try {
$counter = dcCore::app()->blog->getPosts($params, true);
} catch (Exception $e) {
dcCore::app()->error->add($e->getMessage());
}
if ($counter->f(0) == 0) {
$count = __('No entry');
} elseif ($counter->f(0) == 1) {
@ -58,6 +53,9 @@ class templatorPager
} else {
$count = '<strong>' . $counter->f(0) . '</strong> <a href="posts.php?cat_id=' . $cat_id . '">' . __('entries') . '</a>';
}
} catch (Exception $e) {
dcCore::app()->error->add($e->getMessage());
}
} elseif (preg_match('/^widget-(.+)$/', $f->basename)) {
$count = '&nbsp;';
$icon = dcPage::getPF('templator/img/template-widget.png');
@ -69,9 +67,6 @@ class templatorPager
try {
$counter = dcCore::app()->meta->getPostsByMeta($params, true);
} catch (Exception $e) {
dcCore::app()->error->add($e->getMessage());
}
$url = dcCore::app()->adminurl->get('admin.plugin.templator', [
'part' => 'posts',
'file' => $fname,
@ -84,6 +79,9 @@ class templatorPager
} else {
$count = '<strong>' . $counter->f(0) . '</strong> <a href="' . $url . '">' . __('entries') . '</a>';
}
} catch (Exception $e) {
dcCore::app()->error->add($e->getMessage());
}
}
$res = '<div class="' . $class . '"><a class="media-icon media-link" href="' . $link_edit . '">' .

View File

@ -1,5 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_RC_PATH')) {
return null;
}
@ -141,10 +151,10 @@ class dcTemplator
$source = [
'c' => file_get_contents($base),
'w' => $this->getDestinationFile($name) !== false,
'f' => $f, ];
];
if (!$source['w']) {
throw new Exception(sprintf(__('File %s is not readable'), $source));
throw new Exception(sprintf(__('File %s is not readable'), $name));
}
if ($type == 'empty') {
@ -185,24 +195,20 @@ class dcTemplator
public function copypasteTpl($name, $source)
{
if ($name == $source) {
throw new Exception(__('Why copy file content in the same file?'));
throw new Exception(__('File already exists.'));
}
$file = $this->getSourceContent($source);
$source = [
$data = [
'c' => $file['c'],
'w' => $this->getDestinationFile($name) !== false,
'f' => $f, ];
];
if (!$source['w']) {
if (!$data['w']) {
throw new Exception(sprintf(__('File %s is not readable'), $source));
}
if ($type == 'empty') {
$source['c'] = '';
}
try {
$dest = $this->getDestinationFile($name);
@ -210,7 +216,7 @@ class dcTemplator
throw new Exception();
}
$content = $source['c'];
$content = $data['c'];
if (!is_dir(dirname($dest))) {
files::makeDir(dirname($dest));

View File

@ -1,4 +1,15 @@
<?php
/**
* @brief templator, a plugin for Dotclear 2
*
* @package Dotclear
* @subpackage Plugin
*
* @author Osku and contributors
*
* @copyright Jean-Christian Denis
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
*/
if (!defined('DC_CONTEXT_ADMIN')) {
return null;
}
@ -24,6 +35,7 @@ if (in_array($part, ['files', 'delete'])) {
if (in_array($part, ['new', 'copycat'])) {
$has_categories = false;
try {
$categories = dcCore::app()->blog->getCategories(['post_type' => 'post']);
@ -63,7 +75,7 @@ if (in_array($part, ['new', 'copycat'])) {
### Action ###
/**
/*
* Duplicate dc template
*/
if ('new' == $part && !empty($_POST['filesource'])) {
@ -86,7 +98,7 @@ if ('new' == $part && !empty($_POST['filesource'])) {
}
}
/**
/*
* Copy tempaltor template
*/
if ('copy' == $part && !empty($_POST['filename'])) {
@ -105,7 +117,7 @@ if ('copy' == $part && !empty($_POST['filename'])) {
}
}
/**
/*
* Copy templator category template
*/
if ('copycat' == $part && !empty($_POST['filecat'])) {
@ -124,7 +136,7 @@ if ('copycat' == $part && !empty($_POST['filecat'])) {
}
}
/**
/*
* Delete tempaltor template
*/
if ('delete' == $part && !empty($_POST['file'])) {
@ -144,7 +156,7 @@ if ('delete' == $part && !empty($_POST['file'])) {
### Display ###
/**
/*
* Check
*/
@ -160,7 +172,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
]) .
dcPage::notices();
/**
/*
* Duplicate dotclear template
*/
} elseif ('new' == $part) {
@ -195,7 +207,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
'<input type="submit" value="' . __('Create') . '" /></p>' .
'</form>';
/**
/*
* Copy templator template
*/
} elseif ('copy' == $part && !empty($_REQUEST['file'])) {
@ -224,11 +236,11 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
form::hidden('file', html::escapeHTML($_REQUEST['file'])) . '</p>' .
'</form>';
/**
/*
* Copy templator category template
*/
} elseif ('copycat' == $part && !empty($_REQUEST['file'])) {
$category_id = str_replace(['category-','.html'], '', $_REQUEST['file']);
$category_id = (int) str_replace(['category-','.html'], '', $_REQUEST['file']);
$cat_parents = dcCore::app()->blog->getCategoryParents($category_id);
$full_name = '';
while ($cat_parents->fetch()) {
@ -261,7 +273,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
form::hidden('file', html::escapeHTML($_REQUEST['file'])) . '</p>' .
'</form>';
/**
/*
* Delete templator template
*/
} elseif ('delete' == $part && !empty($_REQUEST['file'])) {
@ -287,7 +299,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
form::hidden('file', html::escapeHTML($_GET['file'])) . '</p>' .
'</form>';
/**
/*
* List templator templates
*/
} elseif ('files' == $part) {
@ -310,8 +322,6 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
$filter->add(dcAdminFilters::getPageFilter());
$pager = new dcPager($filter->page, count($items), $filter->nb, 10);
$pager->html_prev = __('&#171;prev.');
$pager->html_next = __('next&#187;');
echo
'<div class="media-list">' .
@ -326,7 +336,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
'</div>';
}
/**
/*
* List Used templator template
*/
} elseif ('used' == $part) {
@ -394,7 +404,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
echo '<p>' . __('No specific templates on this blog.') . '</p>';
}
/**
/*
* Edit emplator template
*/
} elseif ('edit' == $part && !empty($_REQUEST['file'])) {
@ -405,9 +415,9 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
$name = $file['f'];
if (preg_match('/^category-(.+).html$/', $name, $cat_id)) {
$category = dcCore::app()->blog->getCategory($cat_id[1]);
$category = dcCore::app()->blog->getCategory((int) $cat_id[1]);
$full_name = '';
$cat_parents = dcCore::app()->blog->getCategoryParents($cat_id[1]);
$cat_parents = dcCore::app()->blog->getCategoryParents((int) $cat_id[1]);
while ($cat_parents->fetch()) {
$full_name = $cat_parents->cat_title . ' &rsaquo; ';
};
@ -490,7 +500,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
}
}
/**
/*
* Edit posts options linked to a template
*/
} elseif ('posts' == $part && (!empty($_REQUEST['file']) || $_REQUEST['file'] == '0')) {
@ -543,7 +553,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
]) .
dcPage::notices() .
'<h3>' . __('Unselect template') . '</h3>' .
'<h3>' . sprintf(__('Unselect template "%s"'), '<strong>' . $file . '</strong>') . '</h3>' .
'<p><a class ="back" href="' . $redir . '">' . __('Back') . '</a></p>';
if (!dcCore::app()->error->flag()) {
@ -566,7 +576,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
'<p class="col checkboxes-helpers"></p>' .
'<p class="col right">' .
'<input type="submit" value="' . __('Unselect template for selcted entries') . '" /></p>' .
'<input type="submit" value="' . __('Unselect template for selected entries') . '" /></p>' .
form::hidden('action', 'unselecttpl') .
dcCore::app()->adminurl->getHiddenFormFields('admin.plugin.templator', $filter->values()) .
form::hidden('redir', $redir) .
@ -579,7 +589,7 @@ if (!dcCore::app()->templator->canUseRessources(true)) {
}
}
/**
/*
* Default page
*/
} else {