Compare commits
3 Commits
v2023.08.1
...
master
Author | SHA1 | Date |
---|---|---|
Jean-Christian Paul Denis | 411ea6cbed | |
Jean-Christian Paul Denis | 02a44ac22a | |
Jean-Christian Paul Denis | a1470bd16f |
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
|||
postExpired 2023.11.04
|
||||
===========================================================
|
||||
* Require Dotclear 2.28
|
||||
* Require PHP 8.1
|
||||
* Fix typo
|
||||
* Code review (phpstan)
|
||||
|
||||
postExpired 2023.10.19
|
||||
===========================================================
|
||||
* Require Dotclear 2.28
|
||||
* Require PHP 8.1
|
||||
* Upgrade to Dotclear 2.28
|
||||
|
||||
postExpired 2023.08.13
|
||||
===========================================================
|
||||
* Require Dotclear 2.27
|
||||
|
|
35
README.md
35
README.md
|
@ -1,26 +1,22 @@
|
|||
# README
|
||||
|
||||
[![Release](https://img.shields.io/badge/release-2023.08.13-a2cbe9.svg)](https://git.dotclear.watch/JcDenis/postExpired/releases)
|
||||
[![Date](https://img.shields.io/badge/date-2023.08.13-c44d58.svg)](https://git.dotclear.watch/JcDenis/postExpired/releases)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.27-137bbb.svg)](https://fr.dotclear.org/download)
|
||||
[![Release](https://img.shields.io/badge/release-2023.11.04-a2cbe9.svg)](https://git.dotclear.watch/JcDenis/postExpired/releases)
|
||||
![Date](https://img.shields.io/badge/date-2023.11.04-c44d58.svg)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.28-137bbb.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-9ac123.svg)](https://plugins.dotaddict.org/dc2/details/postExpired)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/postExpired)](https://git.dotclear.watch/JcDenis/postExpired/blob/master/LICENSE)
|
||||
[![License](https://img.shields.io/badge/license-GPL--2.0-ececec.svg)](https://git.dotclear.watch/JcDenis/postExpired/src/branch/master/LICENSE)
|
||||
|
||||
## WHAT IS POSTEXPIRED ?
|
||||
## ABOUT
|
||||
|
||||
Post expired is a plugin for the open-source
|
||||
web publishing software called Dotclear.
|
||||
_postExpired_ is a plugin for the open-source web publishing software called [Dotclear](https://www.dotclear.org).
|
||||
|
||||
It add options to the sidebar of post edition page
|
||||
to change some options of a post at a given time.
|
||||
> Add options to the sidebar of post edition page to change some options of a post at a given time.
|
||||
|
||||
## REQUIREMENTS
|
||||
|
||||
_postExpired_ requires:
|
||||
|
||||
* contentadmin permissions
|
||||
* Dotclear 2.27
|
||||
* PHP 7.4+
|
||||
* Dotclear 2.28
|
||||
* PHP 8.1+
|
||||
* Dotclear contentadmin permissions
|
||||
|
||||
## USAGE
|
||||
|
||||
|
@ -39,13 +35,14 @@ Notes:
|
|||
|
||||
## LINKS
|
||||
|
||||
* License : [GNU GPL v2](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html)
|
||||
* Source & contribution : [Gitea Page](https://git.dotclear.watch/JcDenis/postExpired) or [GitHub Page](https://github.com/JcDenis/postExpired)
|
||||
* Packages & details: [Gitea Page](https://git.dotclear.watch/JcDenis/postExpired/releases) or [Dotaddict Page](https://plugins.dotaddict.org/dc2/details/postExpired)
|
||||
* Discuss & help : [Dotclear Forum](https://forum.dotclear.org/viewtopic.php?id=42305)
|
||||
* [License](https://git.dotclear.watch/JcDenis/postExpired/src/branch/master/LICENSE)
|
||||
* [Packages & details](https://git.dotclear.watch/JcDenis/postExpired/releases) (or on [Dotaddict](https://plugins.dotaddict.org/dc2/details/postExpired))
|
||||
* [Sources & contributions](https://git.dotclear.watch/JcDenis/postExpired) (or on [GitHub](https://github.com/JcDenis/postExpired))
|
||||
* [Issues & security](https://git.dotclear.watch/JcDenis/postExpired/issues) (or on [GitHub](https://github.com/JcDenis/postExpired/issues))
|
||||
* [Discuss & help](https://forum.dotclear.org/viewtopic.php?id=42305)
|
||||
|
||||
## CONTRIBUTORS
|
||||
|
||||
* Jean-Christian Denis
|
||||
* Jean-Christian Denis (author)
|
||||
|
||||
You are welcome to contribute to this code.
|
||||
|
|
35
_define.php
35
_define.php
|
@ -1,33 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
* @file
|
||||
* @brief The plugin postExpired definition
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
* @defgroup postExpired Plugin postExpired.
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
* Change entries options at a given date.
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
* @author Tomtom (author)
|
||||
* @author Jean-Christian Denis (latest)
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
declare(strict_types=1);
|
||||
|
||||
$this->registerModule(
|
||||
'Expired entries',
|
||||
'Change entries options at a given date',
|
||||
'Jean-Christian Denis and Contributors',
|
||||
'2023.08.13',
|
||||
'2023.11.04',
|
||||
[
|
||||
'requires' => [['core', '2.27']],
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcCore::app()->auth::PERMISSION_USAGE,
|
||||
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
|
||||
]),
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
|
||||
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
|
||||
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
|
||||
'requires' => [['core', '2.28']],
|
||||
'permissions' => 'My',
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/issues',
|
||||
'details' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/src/branch/master/README.md',
|
||||
'repository' => 'https://git.dotclear.watch/JcDenis/' . basename(__DIR__) . '/raw/branch/master/dcstore.xml',
|
||||
]
|
||||
);
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="postExpired">
|
||||
<name>Expired entries</name>
|
||||
<version>2023.08.13</version>
|
||||
<version>2023.11.04</version>
|
||||
<author>Jean-Christian Denis and Contributors</author>
|
||||
<desc>Change entries options at a given date</desc>
|
||||
<file>https://git.dotclear.watch/JcDenis/postExpired/releases/download/v2023.08.13/plugin-postExpired.zip</file>
|
||||
<da:dcmin>2.27</da:dcmin>
|
||||
<file>https://git.dotclear.watch/JcDenis/postExpired/releases/download/v2023.11.04/plugin-postExpired.zip</file>
|
||||
<da:dcmin>2.28</da:dcmin>
|
||||
<da:details>https://git.dotclear.watch/JcDenis/postExpired/src/branch/master/README.md</da:details>
|
||||
<da:support>https://git.dotclear.watch/JcDenis/postExpired/issues</da:support>
|
||||
</module>
|
||||
|
|
|
@ -1,22 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use dcCore;
|
||||
use Dotclear\App;
|
||||
use Dotclear\Core\Process;
|
||||
|
||||
/**
|
||||
* @brief postExpired backend class.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class Backend extends Process
|
||||
{
|
||||
public static function init(): bool
|
||||
|
@ -30,19 +27,19 @@ class Backend extends Process
|
|||
return false;
|
||||
}
|
||||
|
||||
dcCore::app()->addBehaviors([
|
||||
'adminPostsActions' => [BackendBehaviors::class, 'adminPostsActions'],
|
||||
'adminPagesActions' => [BackendBehaviors::class, 'adminPostsActions'],
|
||||
'adminPostHeaders' => [BackendBehaviors::class, 'adminPostHeaders'],
|
||||
'adminPageHeaders' => [BackendBehaviors::class, 'adminPostHeaders'],
|
||||
'adminPostFormItems' => [BackendBehaviors::class, 'adminPostFormItems'],
|
||||
'adminPageFormItems' => [BackendBehaviors::class, 'adminPostFormItems'],
|
||||
'adminBeforePostDelete' => [BackendBehaviors::class, 'adminBeforePostDelete'],
|
||||
'adminBeforePageDelete' => [BackendBehaviors::class, 'adminBeforePostDelete'],
|
||||
'adminAfterPostUpdate' => [BackendBehaviors::class, 'adminAfterPostSave'],
|
||||
'adminAfterPageUpdate' => [BackendBehaviors::class, 'adminAfterPostSave'],
|
||||
'adminAfterPostCreate' => [BackendBehaviors::class, 'adminAfterPostSave'],
|
||||
'adminAfterPageCreate' => [BackendBehaviors::class, 'adminAfterPostSave'],
|
||||
App::behavior()->addBehaviors([
|
||||
'adminPostsActions' => BackendBehaviors::adminPostsActions(...),
|
||||
'adminPagesActions' => BackendBehaviors::adminPostsActions(...),
|
||||
'adminPostHeaders' => BackendBehaviors::adminPostHeaders(...),
|
||||
'adminPageHeaders' => BackendBehaviors::adminPostHeaders(...),
|
||||
'adminPostFormItems' => BackendBehaviors::adminPostFormItems(...),
|
||||
'adminPageFormItems' => BackendBehaviors::adminPostFormItems(...),
|
||||
'adminBeforePostDelete' => BackendBehaviors::adminBeforePostDelete(...),
|
||||
'adminBeforePageDelete' => BackendBehaviors::adminBeforePostDelete(...),
|
||||
'adminAfterPostUpdate' => BackendBehaviors::adminAfterPostSave(...),
|
||||
'adminAfterPageUpdate' => BackendBehaviors::adminAfterPostSave(...),
|
||||
'adminAfterPostCreate' => BackendBehaviors::adminAfterPostSave(...),
|
||||
'adminAfterPageCreate' => BackendBehaviors::adminAfterPostSave(...),
|
||||
]);
|
||||
|
||||
return true;
|
||||
|
|
|
@ -1,22 +1,12 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use ArrayObject;
|
||||
use DateTimeZone;
|
||||
use dcCore;
|
||||
use Dotclear\App;
|
||||
use Dotclear\Core\Backend\Action\ActionsPosts;
|
||||
use Dotclear\Core\Backend\{
|
||||
Notices,
|
||||
|
@ -44,9 +34,11 @@ use Dotclear\Helper\Html\Html;
|
|||
use Exception;
|
||||
|
||||
/**
|
||||
* @ingroup DC_PLUGIN_POSTEXPIRED
|
||||
* @brief Scheduled post change - admin methods.
|
||||
* @since 2.6
|
||||
* @brief postExpired backend behaviors class.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class BackendBehaviors
|
||||
{
|
||||
|
@ -63,7 +55,7 @@ class BackendBehaviors
|
|||
__('Add expired date') => 'post_expired_add',
|
||||
],
|
||||
],
|
||||
[self::class, 'callbackAdd']
|
||||
self::callbackAdd(...)
|
||||
);
|
||||
|
||||
$pa->addAction(
|
||||
|
@ -72,7 +64,7 @@ class BackendBehaviors
|
|||
__('Remove expired date') => 'post_expired_remove',
|
||||
],
|
||||
],
|
||||
[self::class, 'callbackRemove']
|
||||
self::callbackRemove(...)
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -89,9 +81,9 @@ class BackendBehaviors
|
|||
/**
|
||||
* Add form to post sidebar.
|
||||
*
|
||||
* @param ArrayObject $main_items Main items
|
||||
* @param ArrayObject $sidebar_items Sidebar items
|
||||
* @param ?MetaRecord $post Post record or null
|
||||
* @param ArrayObject<string, mixed> $main_items Main items
|
||||
* @param ArrayObject<string, mixed> $sidebar_items Sidebar items
|
||||
* @param ?MetaRecord $post Post record or null
|
||||
*/
|
||||
public static function adminPostFormItems(ArrayObject $main_items, ArrayObject $sidebar_items, ?MetaRecord $post): void
|
||||
{
|
||||
|
@ -146,8 +138,8 @@ class BackendBehaviors
|
|||
/**
|
||||
* Posts actions callback to add expired date.
|
||||
*
|
||||
* @param ActionsPosts $pa ActionsPosts instance
|
||||
* @param ArrayObject $post _POST actions
|
||||
* @param ActionsPosts $pa ActionsPosts instance
|
||||
* @param ArrayObject<string, mixed> $post _POST actions
|
||||
*/
|
||||
public static function callbackAdd(ActionsPosts $pa, ArrayObject $post): void
|
||||
{
|
||||
|
@ -169,8 +161,8 @@ class BackendBehaviors
|
|||
)
|
||||
) {
|
||||
foreach ($posts_ids as $post_id) {
|
||||
self::delPostExpired($post_id);
|
||||
self::setPostExpired($post_id, $post);
|
||||
self::delPostExpired((int) $post_id);
|
||||
self::setPostExpired((int) $post_id, $post);
|
||||
}
|
||||
|
||||
Notices::addSuccessNotice(__('Expired date added.'));
|
||||
|
@ -183,9 +175,9 @@ class BackendBehaviors
|
|||
|
||||
$pa->beginPage(
|
||||
Page::breadcrumb([
|
||||
Html::escapeHTML(dcCore::app()->blog->name) => '',
|
||||
$pa->getCallerTitle() => $pa->getRedirection(true),
|
||||
__('Add expired date to this selection') => '',
|
||||
Html::escapeHTML(App::blog()->name()) => '',
|
||||
$pa->getCallerTitle() => $pa->getRedirection(true),
|
||||
__('Add expired date to this selection') => '',
|
||||
]),
|
||||
//Page::jsDatePicker() .
|
||||
self::adminPostHeaders()
|
||||
|
@ -197,7 +189,7 @@ class BackendBehaviors
|
|||
(new Para())->items([
|
||||
... self::fieldsPostExpired($posts->f('post_type'), null, false),
|
||||
... $pa->hiddenFields(),
|
||||
dcCore::app()->formNonce(false),
|
||||
App::nonce()->formNonce(),
|
||||
(new Hidden(['action'], 'post_expired_add')),
|
||||
(new Submit(['do']))->value(__('Save')),
|
||||
]),
|
||||
|
@ -210,8 +202,8 @@ class BackendBehaviors
|
|||
/**
|
||||
* Posts actions callback to add expired date.
|
||||
*
|
||||
* @param ActionsPosts $pa ActionsPosts instance
|
||||
* @param ArrayObject $post _POST actions
|
||||
* @param ActionsPosts $pa ActionsPosts instance
|
||||
* @param ArrayObject<string, mixed> $post _POST actions
|
||||
*/
|
||||
public static function callbackRemove(ActionsPosts $pa, ArrayObject $post): void
|
||||
{
|
||||
|
@ -223,7 +215,7 @@ class BackendBehaviors
|
|||
|
||||
// Delete expired date
|
||||
foreach ($posts_ids as $post_id) {
|
||||
self::delPostExpired($post_id);
|
||||
self::delPostExpired((int) $post_id);
|
||||
}
|
||||
|
||||
Notices::addSuccessNotice(__('Expired date deleted.'));
|
||||
|
@ -237,14 +229,14 @@ class BackendBehaviors
|
|||
*/
|
||||
private static function delPostExpired(int $post_id): void
|
||||
{
|
||||
dcCore::app()->meta->delPostMeta($post_id, My::META_TYPE);
|
||||
App::meta()->delPostMeta($post_id, My::META_TYPE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Save expired date.
|
||||
*
|
||||
* @param int $post_id Post id
|
||||
* @param ArrayObject $post _POST fields
|
||||
* @param int $post_id Post id
|
||||
* @param ArrayObject<string, mixed> $post _POST fields
|
||||
*/
|
||||
private static function setPostExpired(int $post_id, ArrayObject $post): void
|
||||
{
|
||||
|
@ -281,7 +273,7 @@ class BackendBehaviors
|
|||
$post_expired['newpassword'] = (string) $post['post_expired_newpassword'];
|
||||
}
|
||||
|
||||
dcCore::app()->meta->setPostMeta(
|
||||
App::meta()->setPostMeta(
|
||||
$post_id,
|
||||
My::META_TYPE,
|
||||
My::encode($post_expired)
|
||||
|
@ -294,14 +286,15 @@ class BackendBehaviors
|
|||
* @param string $post_type Posts type
|
||||
* @param null|int $post_id Post ID
|
||||
* @param bool $render Render fileds to HTML
|
||||
* @return array Array of object form fields
|
||||
*
|
||||
* @return array<string, string|Para> Array of object form fields
|
||||
*/
|
||||
private static function fieldsPostExpired(string $post_type, ?int $post_id = null, bool $render = true): array
|
||||
{
|
||||
$fields = $post_expired = [];
|
||||
|
||||
if ($post_id) {
|
||||
$rs = dcCore::app()->meta->getMetadata([
|
||||
$rs = App::meta()->getMetadata([
|
||||
'meta_type' => My::META_TYPE,
|
||||
'post_id' => $post_id,
|
||||
'limit' => 1,
|
||||
|
@ -328,7 +321,7 @@ class BackendBehaviors
|
|||
$fields['post_expired_category'] = (new Para())->items([
|
||||
(new Label(__('Category:'), Label::OUTSIDE_LABEL_BEFORE))->for('post_expired_category'),
|
||||
(new Select('post_expired_category'))->default(empty($post_expired['category']) ? '' : $post_expired['category'])->items(self::categoriesCombo(
|
||||
dcCore::app()->blog->getCategories(
|
||||
App::blog()->getCategories(
|
||||
['post_type' => 'post']
|
||||
)
|
||||
)),
|
||||
|
@ -354,13 +347,15 @@ class BackendBehaviors
|
|||
(new Checkbox('post_expired_password', !empty($post_expired['password'])))->value(1),
|
||||
(new Label(__('Change password'), Label::OUTSIDE_LABEL_AFTER))->for('post_expired_password')->class('classic'),
|
||||
(new Label(__('New password:'), Label::OUTSIDE_LABEL_BEFORE))->for('post_expired_newpassword'),
|
||||
(new Input('post_expired_newpassword'))->size(65)->maxlenght(255)->class('maximal')->value(empty($post_expired['newpassword']) ? '' : $post_expired['newpassword']),
|
||||
(new Input('post_expired_newpassword'))->size(65)->maxlength(255)->class('maximal')->value(empty($post_expired['newpassword']) ? '' : $post_expired['newpassword']),
|
||||
(new Note())->text(__('Leave empty to remove it'))->class('form-note'),
|
||||
]);
|
||||
|
||||
if ($render) {
|
||||
foreach ($fields as $k => $v) {
|
||||
$fields[$k] = $v->render();
|
||||
if (!is_string($v)) {
|
||||
$fields[$k] = $v->render();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -372,7 +367,7 @@ class BackendBehaviors
|
|||
*
|
||||
* @param MetaRecord $categories Categories recordset
|
||||
*
|
||||
* @return array Categorires combo
|
||||
* @return array<int|string, string|Option> Categorires combo
|
||||
*/
|
||||
private static function categoriesCombo(MetaRecord $categories): array
|
||||
{
|
||||
|
@ -383,7 +378,7 @@ class BackendBehaviors
|
|||
];
|
||||
|
||||
try {
|
||||
$categories = dcCore::app()->blog->getCategories(
|
||||
$categories = App::blog()->getCategories(
|
||||
['post_type' => 'post']
|
||||
);
|
||||
while ($categories->fetch()) {
|
||||
|
@ -402,7 +397,7 @@ class BackendBehaviors
|
|||
/**
|
||||
* Custom status combo.
|
||||
*
|
||||
* @return array Status combo
|
||||
* @return array<string, string> Status combo
|
||||
*/
|
||||
private static function statusCombo(): array
|
||||
{
|
||||
|
@ -417,7 +412,7 @@ class BackendBehaviors
|
|||
/**
|
||||
* Custom selection combo.
|
||||
*
|
||||
* @return array Selection combo
|
||||
* @return array<string, string> Selection combo
|
||||
*/
|
||||
private static function selectedCombo(): array
|
||||
{
|
||||
|
@ -431,7 +426,7 @@ class BackendBehaviors
|
|||
/**
|
||||
* Custom comment status combo.
|
||||
*
|
||||
* @return array Comment status combo
|
||||
* @return array<string, string> Comment status combo
|
||||
*/
|
||||
private static function commentCombo(): array
|
||||
{
|
||||
|
@ -445,7 +440,7 @@ class BackendBehaviors
|
|||
/**
|
||||
* Custom trackback status combo.
|
||||
*
|
||||
* @return array Trackback status combo
|
||||
* @return array<string, string> Trackback status combo
|
||||
*/
|
||||
private static function trackbackCombo(): array
|
||||
{
|
||||
|
@ -465,7 +460,7 @@ class BackendBehaviors
|
|||
*/
|
||||
private static function dateFromUser(string $date): string
|
||||
{
|
||||
$u = !isset(dcCore::app()->auth) ? 'UTC' : dcCore::app()->auth->getInfo('user_tz');
|
||||
$u = App::auth()->getInfo('user_tz') ?? 'UTC';
|
||||
$d = date_create($date, new DateTimeZone($u));
|
||||
|
||||
return $d ? date_format($d->setTimezone(new DateTimeZone('UTC')), 'Y-m-d H:i:00') : '';
|
||||
|
@ -480,7 +475,7 @@ class BackendBehaviors
|
|||
*/
|
||||
private static function dateToUser(string $date): string
|
||||
{
|
||||
$u = !isset(dcCore::app()->auth) ? 'UTC' : dcCore::app()->auth->getInfo('user_tz');
|
||||
$u = App::auth()->getInfo('user_tz') ?? 'UTC';
|
||||
$d = date_create($date, new DateTimeZone('UTC'));
|
||||
|
||||
return $d ? date_format($d->setTimezone(new DateTimeZone($u)), 'Y-m-d\TH:i') : '';
|
||||
|
|
|
@ -1,22 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use dcCore;
|
||||
use Dotclear\App;
|
||||
use Dotclear\Core\Process;
|
||||
|
||||
/**
|
||||
* @brief postExpired frontend class.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class Frontend extends Process
|
||||
{
|
||||
public static function init(): bool
|
||||
|
@ -35,27 +32,27 @@ class Frontend extends Process
|
|||
__('This entry has no expiration date');
|
||||
|
||||
# launch update only on public home page and feed
|
||||
if (in_array(dcCore::app()->url->type, ['default', 'feed'])) {
|
||||
dcCore::app()->addBehavior(
|
||||
if (in_array(App::url()->type, ['default', 'feed'])) {
|
||||
App::behavior()->addBehavior(
|
||||
'publicBeforeDocumentV2',
|
||||
[FrontendBehaviors::class, 'publicBeforeDocumentV2']
|
||||
FrontendBehaviors::publicBeforeDocumentV2(...)
|
||||
);
|
||||
}
|
||||
dcCore::app()->addBehavior(
|
||||
App::behavior()->addBehavior(
|
||||
'coreBlogGetPosts',
|
||||
[FrontendBehaviors::class, 'coreBlogGetPosts']
|
||||
FrontendBehaviors::coreBlogGetPosts(...)
|
||||
);
|
||||
dcCore::app()->tpl->addBlock(
|
||||
App::frontend()->template()->addBlock(
|
||||
'EntryExpiredIf',
|
||||
[FrontendTemplate::class, 'EntryExpiredIf']
|
||||
FrontendTemplate::EntryExpiredIf(...)
|
||||
);
|
||||
dcCore::app()->tpl->addValue(
|
||||
App::frontend()->template()->addValue(
|
||||
'EntryExpiredDate',
|
||||
[FrontendTemplate::class, 'EntryExpiredDate']
|
||||
FrontendTemplate::EntryExpiredDate(...)
|
||||
);
|
||||
dcCore::app()->tpl->addValue(
|
||||
App::frontend()->template()->addValue(
|
||||
'EntryExpiredTime',
|
||||
[FrontendTemplate::class, 'EntryExpiredTime']
|
||||
FrontendTemplate::EntryExpiredTime(...)
|
||||
);
|
||||
|
||||
return true;
|
||||
|
|
|
@ -1,23 +1,11 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use DateTimeZone;
|
||||
use dcBlog;
|
||||
use dcCore;
|
||||
use dcMeta;
|
||||
use Dotclear\App;
|
||||
use Dotclear\Database\MetaRecord;
|
||||
use Dotclear\Database\Statement\{
|
||||
JoinStatement,
|
||||
|
@ -25,9 +13,11 @@ use Dotclear\Database\Statement\{
|
|||
};
|
||||
|
||||
/**
|
||||
* @ingroup DC_PLUGIN_POSTEXPIRED
|
||||
* @brief Scheduled post change - public methods.
|
||||
* @since 2.6
|
||||
* @brief postExpired frontend behaviors class.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class FrontendBehaviors
|
||||
{
|
||||
|
@ -38,7 +28,7 @@ class FrontendBehaviors
|
|||
{
|
||||
// Get expired dates and post_id
|
||||
$sql = new SelectStatement();
|
||||
$posts = $sql->from($sql->as(dcCore::app()->prefix . dcBlog::POST_TABLE_NAME, 'P'))
|
||||
$posts = $sql->from($sql->as(App::con()->prefix() . App::blog()::POST_TABLE_NAME, 'P'))
|
||||
->columns([
|
||||
'P.post_id',
|
||||
'P.post_tz',
|
||||
|
@ -47,11 +37,11 @@ class FrontendBehaviors
|
|||
->join(
|
||||
(new JoinStatement())
|
||||
->inner()
|
||||
->from($sql->as(dcCore::app()->prefix . dcMeta::META_TABLE_NAME, 'META'))
|
||||
->from($sql->as(App::con()->prefix() . App::meta()::META_TABLE_NAME, 'META'))
|
||||
->on('META.post_id = P.post_id')
|
||||
->statement()
|
||||
)
|
||||
->where('blog_id = ' . $sql->quote((string) dcCore::app()->blog->id))
|
||||
->where('blog_id = ' . $sql->quote(App::blog()->id()))
|
||||
->and('META.meta_type = ' . $sql->quote(My::META_TYPE))
|
||||
->select();
|
||||
|
||||
|
@ -65,7 +55,7 @@ class FrontendBehaviors
|
|||
$now_tz = (int) date_format(date_create('now', $utc), 'U');
|
||||
|
||||
// Prepared post Cursor
|
||||
$post_cur = dcCore::app()->con->openCursor(dcCore::app()->prefix . dcBlog::POST_TABLE_NAME);
|
||||
$post_cur = App::blog()->openPostCursor();
|
||||
|
||||
// Loop through marked posts
|
||||
$updated = false;
|
||||
|
@ -79,8 +69,8 @@ class FrontendBehaviors
|
|||
|
||||
if ($now_tz > $meta_tz) {
|
||||
// Delete meta for expired date
|
||||
dcCore::app()->auth->sudo(
|
||||
[dcCore::app()->meta, 'delPostMeta'],
|
||||
App::auth()->sudo(
|
||||
App::meta()->delPostMeta(...),
|
||||
$posts->f('post_id'),
|
||||
My::META_TYPE
|
||||
);
|
||||
|
@ -135,7 +125,7 @@ class FrontendBehaviors
|
|||
// Update post
|
||||
$post_cur->update(
|
||||
'WHERE post_id = ' . $posts->f('post_id') . ' ' .
|
||||
"AND blog_id = '" . dcCore::app()->con->escapeStr((string) dcCore::app()->blog->id) . "' "
|
||||
"AND blog_id = '" . App::con()->escapeStr(App::blog()->id()) . "' "
|
||||
);
|
||||
|
||||
$updated = true;
|
||||
|
@ -144,7 +134,7 @@ class FrontendBehaviors
|
|||
|
||||
// Say blog is updated
|
||||
if ($updated) {
|
||||
dcCore::app()->blog->triggerBlog();
|
||||
App::blog()->triggerBlog();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -155,6 +145,6 @@ class FrontendBehaviors
|
|||
*/
|
||||
public static function coreBlogGetPosts(MetaRecord $rs): void
|
||||
{
|
||||
$rs->extend('rsExtPostExpired');
|
||||
$rs->extend(rsExtPostExpired::class);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use ArrayObject;
|
||||
use dcCore;
|
||||
use dcTemplate;
|
||||
use Dotclear\App;
|
||||
use Dotclear\Helper\Date;
|
||||
|
||||
/**
|
||||
* @ingroup DC_PLUGIN_POSTEXPIRED
|
||||
* @brief Scheduled post change - template methods.
|
||||
* @since 2.6
|
||||
* @brief postExpired frontend template class.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class FrontendTemplate
|
||||
{
|
||||
/**
|
||||
* Template condition to check if there is an expired date.
|
||||
*
|
||||
* @param ArrayObject $attr Block attributes
|
||||
* @param string $content Block content
|
||||
* @param ArrayObject<string, mixed> $attr Block attributes
|
||||
* @param string $content Block content
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
@ -38,13 +29,13 @@ class FrontendTemplate
|
|||
{
|
||||
$if = [];
|
||||
$operator = isset($attr['operator']) ?
|
||||
dcTemplate::getOperator($attr['operator']) : '&&';
|
||||
App::frontend()->template()->getOperator($attr['operator']) : '&&';
|
||||
|
||||
if (isset($attr['has_date'])) {
|
||||
$sign = (bool) $attr['has_date'] ? '!' : '=';
|
||||
$if[] = '(null ' . $sign . '== dcCore::app()->ctx->posts->postExpiredDate())';
|
||||
$if[] = '(null ' . $sign . '== App::frontend()->context()->posts->postExpiredDate())';
|
||||
} else {
|
||||
$if[] = '(null !== dcCore::app()->ctx->posts->postExpiredDate())';
|
||||
$if[] = '(null !== App::frontend()->context()->posts->postExpiredDate())';
|
||||
}
|
||||
|
||||
return
|
||||
|
@ -56,7 +47,7 @@ class FrontendTemplate
|
|||
/**
|
||||
* Template for expired date.
|
||||
*
|
||||
* @param ArrayObject $attr Value attributes
|
||||
* @param ArrayObject<string, mixed> $attr Value attributes
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
@ -64,38 +55,38 @@ class FrontendTemplate
|
|||
{
|
||||
$format = !empty($attr['format']) ?
|
||||
addslashes($attr['format']) : '';
|
||||
$f = dcCore::app()->tpl->getFilters($attr);
|
||||
$f = App::frontend()->template()->getFilters($attr);
|
||||
|
||||
if (!empty($attr['rfc822'])) {
|
||||
$res = sprintf($f, Date::class . '::rfc822(strtotime(dcCore::app()->ctx->posts->postExpiredDate()),dcCore::app()->ctx->posts->post_tz)');
|
||||
$res = sprintf($f, Date::class . '::rfc822(strtotime(App::frontend()->context()->posts->postExpiredDate()),App::frontend()->context()->posts->post_tz)');
|
||||
} elseif (!empty($attr['iso8601'])) {
|
||||
$res = sprintf($f, Date::class . '::iso8601(strtotime(dcCore::app()->ctx->posts->postExpiredDate(),dcCore::app()->ctx->posts->post_tz)');
|
||||
$res = sprintf($f, Date::class . '::iso8601(strtotime(App::frontend()->context()->posts->postExpiredDate(),App::frontend()->context()->posts->post_tz)');
|
||||
} elseif ($format) {
|
||||
$res = sprintf($f, Date::class . "::dt2str('" . $format . "',dcCore::app()->ctx->posts->postExpiredDate())");
|
||||
$res = sprintf($f, Date::class . "::dt2str('" . $format . "',App::frontend()->context()->posts->postExpiredDate())");
|
||||
} else {
|
||||
$res = sprintf($f, Date::class . '::dt2str(dcCore::app()->blog->settings->system->date_format,dcCore::app()->ctx->posts->postExpiredDate())');
|
||||
$res = sprintf($f, Date::class . '::dt2str(App::blog()->settings()->system->date_format,App::frontend()->context()->posts->postExpiredDate())');
|
||||
}
|
||||
|
||||
return '<?php if (null !== dcCore::app()->ctx->posts->postExpiredDate()) { echo ' . $res . '; } ?>';
|
||||
return '<?php if (null !== App::frontend()->context()->posts->postExpiredDate()) { echo ' . $res . '; } ?>';
|
||||
}
|
||||
|
||||
/**
|
||||
* Template for expired time.
|
||||
*
|
||||
* @param ArrayObject $attr Value attributes
|
||||
* @param ArrayObject<string, mixed> $attr Value attributes
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function EntryExpiredTime(ArrayObject $attr): string
|
||||
{
|
||||
return
|
||||
'<?php if (null !== dcCore::app()->ctx->posts->postExpiredDate()) { echo ' . sprintf(
|
||||
dcCore::app()->tpl->getFilters($attr),
|
||||
'<?php if (null !== App::frontend()->context()->posts->postExpiredDate()) { echo ' . sprintf(
|
||||
App::frontend()->template()->getFilters($attr),
|
||||
Date::class . '::dt2str(' .
|
||||
(
|
||||
!empty($attr['format']) ?
|
||||
"'" . addslashes($attr['format']) . "'" : 'dcCore::app()->blog->settings->system->time_format'
|
||||
) . ',dcCore::app()->ctx->posts->postExpiredDate())'
|
||||
"'" . addslashes($attr['format']) . "'" : 'App::blog()->settings()->system->time_format'
|
||||
) . ',App::frontend()->context()->posts->postExpiredDate())'
|
||||
) . '; } ?>';
|
||||
}
|
||||
}
|
||||
|
|
38
src/My.php
38
src/My.php
|
@ -1,46 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use dcCore;
|
||||
use Dotclear\Module\MyPlugin;
|
||||
|
||||
/**
|
||||
* This module definiton.
|
||||
* @brief postExpired My helper.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class My extends MyPlugin
|
||||
{
|
||||
/** @var string This module meta type */
|
||||
public const META_TYPE = 'post_expired';
|
||||
|
||||
public static function checkCustomContext(int $context): ?bool
|
||||
{
|
||||
return $context !== My::BACKEND ? null :
|
||||
defined('DC_CONTEXT_ADMIN')
|
||||
&& dcCore::app()->auth->check(dcCore::app()->auth->makePermissions([
|
||||
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
|
||||
]), dcCore::app()->blog->id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Encode Expired Date settings.
|
||||
*
|
||||
* This is saved into post_meta as meta_id value,
|
||||
* so this must be less than 255 caracters.
|
||||
*
|
||||
* @param array $in Array of options
|
||||
* @param array<string, string> $in Array of options
|
||||
*
|
||||
* @return string "Serialized" options
|
||||
*/
|
||||
|
@ -59,16 +43,18 @@ class My extends MyPlugin
|
|||
*
|
||||
* @param string $in "Serialized" options
|
||||
*
|
||||
* @return array Array of options
|
||||
* @return array<string, string> Array of options
|
||||
*/
|
||||
public static function decode(string $in): array
|
||||
{
|
||||
$out = [];
|
||||
foreach (explode(';', $in) as $v) {
|
||||
$v = explode('|', $v);
|
||||
$out[$v[0]] = $v[1];
|
||||
$v = explode('|', $v);
|
||||
$out[(string) $v[0]] = (string) $v[1];
|
||||
}
|
||||
|
||||
return $out;
|
||||
}
|
||||
|
||||
// Use default permissions
|
||||
}
|
||||
|
|
|
@ -1,31 +1,27 @@
|
|||
<?php
|
||||
/**
|
||||
* @brief postExpired, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis and Contributors
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Dotclear\Plugin\postExpired;
|
||||
|
||||
use dcCore;
|
||||
use Dotclear\App;
|
||||
use Dotclear\Database\MetaRecord;
|
||||
use rsExtPost;
|
||||
use Dotclear\Schema\Extension\Post;
|
||||
|
||||
/**
|
||||
* @ingroup DC_PLUGIN_POSTEXPIRED
|
||||
* @brief Scheduled post change - extends recordset.
|
||||
* @since 2.6
|
||||
* @brief postExpired record extension class.
|
||||
* @ingroup postExpired
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
class rsExtPostExpired extends rsExtPost
|
||||
class rsExtPostExpired extends Post
|
||||
{
|
||||
/** @var array $memory Memory to prevent redondant call */
|
||||
/**
|
||||
* Memory to prevent redondant call.
|
||||
*
|
||||
* @var array<string, string> $memory
|
||||
*/
|
||||
protected static array $memory = [];
|
||||
|
||||
/**
|
||||
|
@ -38,7 +34,7 @@ class rsExtPostExpired extends rsExtPost
|
|||
public static function postExpiredDate(MetaRecord $rs): string
|
||||
{
|
||||
if (!static::$memory[$rs->f('post_id')]) {
|
||||
$rs_date = dcCore::app()->meta->getMetadata([
|
||||
$rs_date = App::meta()->getMetadata([
|
||||
'meta_type' => My::META_TYPE,
|
||||
'post_id' => $rs->f('post_id'),
|
||||
'limit' => 1,
|
||||
|
@ -48,8 +44,8 @@ class rsExtPostExpired extends rsExtPost
|
|||
return '';
|
||||
}
|
||||
|
||||
$v = My::decode($rs_date->f('meta_id'));
|
||||
static::$memory[$rs->f('post_id')] = $v['date'];
|
||||
$v = My::decode($rs_date->f('meta_id'));
|
||||
static::$memory[(string) $rs->f('post_id')] = (string) $v['date'];
|
||||
}
|
||||
|
||||
return static::$memory[$rs->f('post_id')];
|
||||
|
|
Loading…
Reference in New Issue