rename files and class
This commit is contained in:
parent
88e2d6c3b2
commit
9924e82e51
5 changed files with 137 additions and 64 deletions
49
_prepend.php
49
_prepend.php
|
@ -1,46 +1,11 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
declare(strict_types=1);
|
||||||
* @brief whiteListCom, 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
|
|
||||||
*/
|
|
||||||
if (!defined('DC_RC_PATH')) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
Clearbricks::lib()->autoload([
|
$prepend = implode('\\', ['Dotclear', 'Plugin', basename(__DIR__), 'Prepend']);
|
||||||
'whiteListCom' => __DIR__ . '/inc/Core.php',
|
if (!class_exists($prepend)) {
|
||||||
'whiteListComReservedFilter' => __DIR__ . '/inc/ReservedFilter.php',
|
require implode(DIRECTORY_SEPARATOR, [__DIR__, 'inc', 'Prepend.php']);
|
||||||
'whiteListComModeratedFilter' => __DIR__ . '/inc/ModeratedFilter.php',
|
|
||||||
]);
|
|
||||||
|
|
||||||
dcCore::app()->spamfilters[] = 'whiteListComModeratedFilter';
|
if ($prepend::init()) {
|
||||||
dcCore::app()->spamfilters[] = 'whiteListComReservedFilter';
|
$prepend::process();
|
||||||
|
|
||||||
dcCore::app()->addBehavior('publicAfterCommentCreate', function ($cur, $id) {
|
|
||||||
if (dcCore::app()->blog === null
|
|
||||||
|| dcCore::app()->blog->settings->get('system')->get('comments_pub')) {
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if ($cur->__get('comment_spam_filter') == 'whiteListComModeratedFilter'
|
|
||||||
&& $cur->__get('comment_spam_status') == 'unmoderated') {
|
|
||||||
dcCore::app()->con->writeLock(dcCore::app()->prefix . dcBlog::COMMENT_TABLE_NAME);
|
|
||||||
|
|
||||||
$cur->__set('comment_status', 1);
|
|
||||||
$cur->__set('comment_spam_status', 0);
|
|
||||||
$cur->__set('comment_spam_filter', 0);
|
|
||||||
$cur->update('WHERE comment_id = ' . $id . ' ');
|
|
||||||
|
|
||||||
dcCore::app()->con->unlock();
|
|
||||||
|
|
||||||
dcCore::app()->blog->triggerComment($id);
|
|
||||||
dcCore::app()->blog->triggerBlog();
|
|
||||||
}
|
|
||||||
});
|
|
27
inc/Core.php
27
inc/Core.php
|
@ -10,16 +10,21 @@
|
||||||
* @copyright Jean-Christian Denis
|
* @copyright Jean-Christian Denis
|
||||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
*/
|
*/
|
||||||
if (!defined('DC_RC_PATH')) {
|
declare(strict_types=1);
|
||||||
return null;
|
|
||||||
}
|
namespace Dotclear\Plugin\whiteListCom;
|
||||||
|
|
||||||
|
/* dotclear ns */
|
||||||
|
use dcCore;
|
||||||
|
use dcUtils;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup DC_PLUGIN_WHITELISTCOM
|
* @ingroup DC_PLUGIN_WHITELISTCOM
|
||||||
* @brief White list filters methods
|
* @brief White list filters methods
|
||||||
* @since 2.6
|
* @since 2.6
|
||||||
*/
|
*/
|
||||||
class whiteListCom
|
class Core
|
||||||
{
|
{
|
||||||
public $con;
|
public $con;
|
||||||
public $blog;
|
public $blog;
|
||||||
|
@ -32,17 +37,17 @@ class whiteListCom
|
||||||
{
|
{
|
||||||
$this->con = dcCore::app()->con;
|
$this->con = dcCore::app()->con;
|
||||||
$this->blog = dcCore::app()->con->escape(dcCore::app()->blog->id);
|
$this->blog = dcCore::app()->con->escape(dcCore::app()->blog->id);
|
||||||
$this->settings = dcCore::app()->blog->settings->whiteListCom;
|
$this->settings = dcCore::app()->blog->settings->get(basename(dirname(__DIR__)));
|
||||||
$unmoderated = $this->settings->whiteListCom_unmoderated;
|
$unmoderated = $this->settings->get('unmoderated');
|
||||||
$this->unmoderated = self::decode($unmoderated);
|
$this->unmoderated = self::decode($unmoderated);
|
||||||
$reserved = $this->settings->whiteListCom_reserved;
|
$reserved = $this->settings->get('reserved');
|
||||||
$this->reserved = self::decode($reserved);
|
$this->reserved = self::decode($reserved);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function commit()
|
public function commit()
|
||||||
{
|
{
|
||||||
$this->settings->put(
|
$this->settings->put(
|
||||||
'whiteListCom_unmoderated',
|
'unmoderated',
|
||||||
self::encode($this->unmoderated),
|
self::encode($this->unmoderated),
|
||||||
'string',
|
'string',
|
||||||
'Whitelist of unmoderated users on comments',
|
'Whitelist of unmoderated users on comments',
|
||||||
|
@ -51,7 +56,7 @@ class whiteListCom
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->settings->put(
|
$this->settings->put(
|
||||||
'whiteListCom_reserved',
|
'reserved',
|
||||||
self::encode($this->reserved),
|
self::encode($this->reserved),
|
||||||
'string',
|
'string',
|
||||||
'Whitelist of reserved names on comments',
|
'Whitelist of reserved names on comments',
|
||||||
|
@ -158,12 +163,12 @@ class whiteListCom
|
||||||
{
|
{
|
||||||
$y = is_array($x) ? $x : [];
|
$y = is_array($x) ? $x : [];
|
||||||
|
|
||||||
return base64_encode(serialize($y));
|
return json_encode($y);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function decode($x)
|
public static function decode($x)
|
||||||
{
|
{
|
||||||
$y = @unserialize(@base64_decode($x));
|
$y = json_decode($x);
|
||||||
|
|
||||||
return is_array($y) ? $y : [];
|
return is_array($y) ? $y : [];
|
||||||
}
|
}
|
||||||
|
|
80
inc/Prepend.php
Normal file
80
inc/Prepend.php
Normal file
|
@ -0,0 +1,80 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* @brief whiteListCom, 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\whiteListCom;
|
||||||
|
|
||||||
|
/* dotclear ns */
|
||||||
|
use dcCore;
|
||||||
|
|
||||||
|
/* clearbricks ns */
|
||||||
|
use Clearbricks;
|
||||||
|
|
||||||
|
class Prepend
|
||||||
|
{
|
||||||
|
private const LIBS = [
|
||||||
|
'Core',
|
||||||
|
'UnmoderatedWhiteList',
|
||||||
|
'ReservedWhiteList',
|
||||||
|
'Prepend',
|
||||||
|
];
|
||||||
|
protected static $init = false;
|
||||||
|
|
||||||
|
public static function init(): bool
|
||||||
|
{
|
||||||
|
self::$init = defined('DC_RC_PATH');
|
||||||
|
|
||||||
|
return self::$init;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static function process(): ?bool
|
||||||
|
{
|
||||||
|
if (!self::$init) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (self::LIBS as $lib) {
|
||||||
|
Clearbricks::lib()->autoload([
|
||||||
|
__NAMESPACE__ . '\\' . $lib => __DIR__ . DIRECTORY_SEPARATOR . $lib . '.php',
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
dcCore::app()->spamfilters[] = 'UnmoderatedWhiteList';
|
||||||
|
dcCore::app()->spamfilters[] = 'ReservedWhiteList';
|
||||||
|
|
||||||
|
dcCore::app()->addBehavior('publicAfterCommentCreate', function ($cur, $id) {
|
||||||
|
if (dcCore::app()->blog === null
|
||||||
|
|| dcCore::app()->blog->settings->get('system')->get('comments_pub')) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($cur->__get('comment_spam_filter') == 'UnmoderatedWhiteList'
|
||||||
|
&& $cur->__get('comment_spam_status') == 'unmoderated') {
|
||||||
|
dcCore::app()->con->writeLock(dcCore::app()->prefix . dcBlog::COMMENT_TABLE_NAME);
|
||||||
|
|
||||||
|
$cur->__set('comment_status', 1);
|
||||||
|
$cur->__set('comment_spam_status', 0);
|
||||||
|
$cur->__set('comment_spam_filter', 0);
|
||||||
|
$cur->update('WHERE comment_id = ' . $id . ' ');
|
||||||
|
|
||||||
|
dcCore::app()->con->unlock();
|
||||||
|
|
||||||
|
dcCore::app()->blog->triggerComment($id);
|
||||||
|
dcCore::app()->blog->triggerBlog();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
* @copyright Jean-Christian Denis
|
* @copyright Jean-Christian Denis
|
||||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
*/
|
*/
|
||||||
if (!defined('DC_RC_PATH')) {
|
declare(strict_types=1);
|
||||||
return null;
|
|
||||||
}
|
namespace Dotclear\Plugin\whiteListCom;
|
||||||
|
|
||||||
|
/* dotclear ns */
|
||||||
|
use dcCore;
|
||||||
|
use dcSpamFilter;
|
||||||
|
|
||||||
|
/* clearbricks ns */
|
||||||
|
use form;
|
||||||
|
use html;
|
||||||
|
|
||||||
|
/* php ns */
|
||||||
|
use Exception;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup DC_PLUGIN_WHITELISTCOM
|
* @ingroup DC_PLUGIN_WHITELISTCOM
|
||||||
|
@ -39,7 +51,7 @@ class whiteListComReservedFilter extends dcSpamFilter
|
||||||
$throw = false;
|
$throw = false;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$wlc = new whiteListCom();
|
$wlc = new Core();
|
||||||
|
|
||||||
if (true === $wlc->isReserved($author, $email)) {
|
if (true === $wlc->isReserved($author, $email)) {
|
||||||
$status = 'reserved name';
|
$status = 'reserved name';
|
||||||
|
@ -64,7 +76,7 @@ class whiteListComReservedFilter extends dcSpamFilter
|
||||||
|
|
||||||
public function gui(string $url): string
|
public function gui(string $url): string
|
||||||
{
|
{
|
||||||
$wlc = new whiteListCom();
|
$wlc = new Core();
|
||||||
$comments = [];
|
$comments = [];
|
||||||
|
|
||||||
try {
|
try {
|
|
@ -10,9 +10,20 @@
|
||||||
* @copyright Jean-Christian Denis
|
* @copyright Jean-Christian Denis
|
||||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||||
*/
|
*/
|
||||||
if (!defined('DC_RC_PATH')) {
|
declare(strict_types=1);
|
||||||
return null;
|
|
||||||
}
|
namespace Dotclear\Plugin\whiteListCom;
|
||||||
|
|
||||||
|
/* dotclear ns */
|
||||||
|
use dcCore;
|
||||||
|
use dcSpamFilter;
|
||||||
|
|
||||||
|
/* clearbricks ns */
|
||||||
|
use form;
|
||||||
|
use html;
|
||||||
|
|
||||||
|
/* php ns */
|
||||||
|
use Exception;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ingroup DC_PLUGIN_WHITELISTCOM
|
* @ingroup DC_PLUGIN_WHITELISTCOM
|
||||||
|
@ -21,7 +32,7 @@ if (!defined('DC_RC_PATH')) {
|
||||||
*
|
*
|
||||||
* This filter is used only if comments are moderates
|
* This filter is used only if comments are moderates
|
||||||
*/
|
*/
|
||||||
class whiteListComModeratedFilter extends dcSpamFilter
|
class UnmoderatedWhiteList extends dcSpamFilter
|
||||||
{
|
{
|
||||||
public $name = 'Unmoderated authors';
|
public $name = 'Unmoderated authors';
|
||||||
public $has_gui = true;
|
public $has_gui = true;
|
||||||
|
@ -41,7 +52,7 @@ class whiteListComModeratedFilter extends dcSpamFilter
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$wlc = new whiteListCom();
|
$wlc = new Core();
|
||||||
if ($wlc->isUnmoderated($email)) {
|
if ($wlc->isUnmoderated($email)) {
|
||||||
$status = 'unmoderated';
|
$status = 'unmoderated';
|
||||||
|
|
||||||
|
@ -56,7 +67,7 @@ class whiteListComModeratedFilter extends dcSpamFilter
|
||||||
|
|
||||||
public function gui(string $url): string
|
public function gui(string $url): string
|
||||||
{
|
{
|
||||||
$wlc = new whiteListCom();
|
$wlc = new Core();
|
||||||
$posts = $comments = [];
|
$posts = $comments = [];
|
||||||
|
|
||||||
try {
|
try {
|
Loading…
Reference in a new issue