mirror of
https://github.com/silverstripe/silverstripe-spamprotection.git
synced 2024-10-22 14:05:59 +02:00
fix: if no spam protector set, fail sliently
This commit is contained in:
parent
2d59501ef3
commit
17106d8f30
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,5 @@
|
|||||||
.DS_Store
|
.DS_Store
|
||||||
|
/vendor
|
||||||
|
/composer.lock
|
||||||
|
/public
|
||||||
|
.phpunit.result.cache
|
||||||
|
15
README.md
15
README.md
@ -9,14 +9,6 @@
|
|||||||
composer require silverstripe/spamprotection
|
composer require silverstripe/spamprotection
|
||||||
```
|
```
|
||||||
|
|
||||||
## Maintainer Contact
|
|
||||||
|
|
||||||
* Saophalkun Ponlu
|
|
||||||
<phalkunz (at) silverstripe (dot) com>
|
|
||||||
|
|
||||||
* Will Rossiter
|
|
||||||
<will (at) fullscreen (dot) io>
|
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
This module provides a generic, consistent API for adding spam protection to
|
This module provides a generic, consistent API for adding spam protection to
|
||||||
@ -40,7 +32,7 @@ need to rebuild your database through `dev/build` and set the default protector
|
|||||||
via SilverStripe's config system. This will update any Form instances that have
|
via SilverStripe's config system. This will update any Form instances that have
|
||||||
spam protection hooks with that protector.
|
spam protection hooks with that protector.
|
||||||
|
|
||||||
*mysite/_config/spamprotection.yml*
|
*app/_config/spamprotection.yml*
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
---
|
---
|
||||||
@ -67,10 +59,10 @@ implementation client side or server side.
|
|||||||
`enableSpamProtection` takes a hash of optional configuration values.
|
`enableSpamProtection` takes a hash of optional configuration values.
|
||||||
|
|
||||||
```php
|
```php
|
||||||
$form->enableSpamProtection(array(
|
$form->enableSpamProtection([
|
||||||
'protector' => MathSpamProtector::class,
|
'protector' => MathSpamProtector::class,
|
||||||
'name' => 'Captcha'
|
'name' => 'Captcha'
|
||||||
));
|
]);
|
||||||
```
|
```
|
||||||
|
|
||||||
Options to configure are:
|
Options to configure are:
|
||||||
@ -121,6 +113,7 @@ class CustomSpamProtector implements SpamProtector
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Using Spam Protection with User Forms
|
## Using Spam Protection with User Forms
|
||||||
|
|
||||||
This module provides an `EditableSpamProtectionField` wrapper which you can add
|
This module provides an `EditableSpamProtectionField` wrapper which you can add
|
||||||
|
@ -6,16 +6,6 @@
|
|||||||
"silverstripe",
|
"silverstripe",
|
||||||
"spamprotection"
|
"spamprotection"
|
||||||
],
|
],
|
||||||
"authors": [
|
|
||||||
{
|
|
||||||
"name": "Saophalkun Ponlu",
|
|
||||||
"email": "phalkunz@silverstripe.com"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Will Rossiter",
|
|
||||||
"email": "will@fullscreen.io"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.1",
|
"php": "^8.1",
|
||||||
"silverstripe/framework": "^5"
|
"silverstripe/framework": "^5"
|
||||||
@ -33,11 +23,17 @@
|
|||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"SilverStripe\\SpamProtection\\": "code/",
|
"SilverStripe\\SpamProtection\\": "src/",
|
||||||
"SilverStripe\\SpamProtection\\Tests\\": "tests/"
|
"SilverStripe\\SpamProtection\\Tests\\": "tests/"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license": "BSD-3-Clause",
|
"license": "BSD-3-Clause",
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"prefer-stable": true
|
"prefer-stable": true,
|
||||||
|
"config": {
|
||||||
|
"allow-plugins": {
|
||||||
|
"composer/installers": true,
|
||||||
|
"silverstripe/vendor-plugin": true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<ruleset name="SilverStripe">
|
<ruleset name="SilverStripe">
|
||||||
<description>CodeSniffer ruleset for SilverStripe coding conventions.</description>
|
<description>CodeSniffer ruleset for SilverStripe coding conventions.</description>
|
||||||
|
|
||||||
<file>code</file>
|
<file>src</file>
|
||||||
<file>tests</file>
|
<file>tests</file>
|
||||||
|
|
||||||
<rule ref="PSR2" >
|
<rule ref="PSR2" >
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<filter>
|
<filter>
|
||||||
<whitelist addUncoveredFilesFromWhitelist="true">
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
||||||
<directory suffix=".php">code/</directory>
|
<directory suffix=".php">src/</directory>
|
||||||
<exclude>
|
<exclude>
|
||||||
<directory suffix=".php">tests/</directory>
|
<directory suffix=".php">tests/</directory>
|
||||||
</exclude>
|
</exclude>
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
namespace SilverStripe\SpamProtection;
|
namespace SilverStripe\SpamProtection;
|
||||||
|
|
||||||
use SilverStripe\Core\ClassInfo;
|
use SilverStripe\Core\ClassInfo;
|
||||||
use SilverStripe\Core\Convert;
|
|
||||||
use SilverStripe\Core\Manifest\ModuleLoader;
|
use SilverStripe\Core\Manifest\ModuleLoader;
|
||||||
use SilverStripe\Forms\DropdownField;
|
use SilverStripe\Forms\DropdownField;
|
||||||
use SilverStripe\Forms\FieldGroup;
|
use SilverStripe\Forms\FieldGroup;
|
||||||
@ -41,15 +40,15 @@ class EditableSpamProtectionField extends EditableFormField
|
|||||||
* @var array
|
* @var array
|
||||||
* @config
|
* @config
|
||||||
*/
|
*/
|
||||||
private static $check_fields = array(
|
private static $check_fields = [
|
||||||
EditableEmailField::class,
|
EditableEmailField::class,
|
||||||
EditableTextField::class,
|
EditableTextField::class,
|
||||||
EditableNumericField::class
|
EditableNumericField::class
|
||||||
);
|
];
|
||||||
|
|
||||||
private static $db = array(
|
private static $db = [
|
||||||
'SpamFieldSettings' => 'Text'
|
'SpamFieldSettings' => 'Text'
|
||||||
);
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var FormField
|
* @var FormField
|
||||||
@ -69,12 +68,14 @@ class EditableSpamProtectionField extends EditableFormField
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Extract saved field mappings and update this field.
|
// Extract saved field mappings and update this field.
|
||||||
$fieldMapping = array();
|
$fieldMapping = [];
|
||||||
|
|
||||||
foreach ($this->getCandidateFields() as $otherField) {
|
foreach ($this->getCandidateFields() as $otherField) {
|
||||||
$mapSetting = "Map-{$otherField->Name}";
|
$mapSetting = "Map-{$otherField->Name}";
|
||||||
$spamField = $this->spamMapValue($mapSetting);
|
$spamField = $this->spamMapValue($mapSetting);
|
||||||
$fieldMapping[$otherField->Name] = $spamField;
|
$fieldMapping[$otherField->Name] = $spamField;
|
||||||
}
|
}
|
||||||
|
|
||||||
$protector->setFieldMapping($fieldMapping);
|
$protector->setFieldMapping($fieldMapping);
|
||||||
|
|
||||||
// Generate field
|
// Generate field
|
||||||
@ -106,7 +107,8 @@ class EditableSpamProtectionField extends EditableFormField
|
|||||||
|
|
||||||
// Get list of all configured classes available for spam detection
|
// Get list of all configured classes available for spam detection
|
||||||
$types = $this->config()->get('check_fields');
|
$types = $this->config()->get('check_fields');
|
||||||
$typesInherit = array();
|
$typesInherit = [];
|
||||||
|
|
||||||
foreach ($types as $type) {
|
foreach ($types as $type) {
|
||||||
$subTypes = ClassInfo::subclassesFor($type);
|
$subTypes = ClassInfo::subclassesFor($type);
|
||||||
$typesInherit = array_merge($typesInherit, $subTypes);
|
$typesInherit = array_merge($typesInherit, $subTypes);
|
||||||
@ -131,8 +133,9 @@ class EditableSpamProtectionField extends EditableFormField
|
|||||||
public function onBeforeWrite()
|
public function onBeforeWrite()
|
||||||
{
|
{
|
||||||
$fieldMap = json_decode($this->SpamFieldSettings ?? '', true);
|
$fieldMap = json_decode($this->SpamFieldSettings ?? '', true);
|
||||||
|
|
||||||
if (empty($fieldMap)) {
|
if (empty($fieldMap)) {
|
||||||
$fieldMap = array();
|
$fieldMap = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->record as $key => $value) {
|
foreach ($this->record as $key => $value) {
|
||||||
@ -202,7 +205,7 @@ class EditableSpamProtectionField extends EditableFormField
|
|||||||
{
|
{
|
||||||
$map = json_decode($this->SpamFieldSettings ?? '', true);
|
$map = json_decode($this->SpamFieldSettings ?? '', true);
|
||||||
if (empty($map)) {
|
if (empty($map)) {
|
||||||
$map = array();
|
$map = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (array_key_exists($mapSetting, $map ?? [])) {
|
if (array_key_exists($mapSetting, $map ?? [])) {
|
||||||
@ -255,16 +258,19 @@ class EditableSpamProtectionField extends EditableFormField
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function getFieldValidationOptions()
|
public function getFieldValidationOptions()
|
||||||
{
|
{
|
||||||
return FieldList::create();
|
return FieldList::create();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function getRequired()
|
public function getRequired()
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public function getIcon()
|
public function getIcon()
|
||||||
{
|
{
|
||||||
$resource = ModuleLoader::getModule('silverstripe/spamprotection')
|
$resource = ModuleLoader::getModule('silverstripe/spamprotection')
|
@ -14,19 +14,19 @@ class CommentSpamProtection extends Extension
|
|||||||
{
|
{
|
||||||
public function alterCommentForm(&$form)
|
public function alterCommentForm(&$form)
|
||||||
{
|
{
|
||||||
$form->enableSpamProtection(array(
|
$form->enableSpamProtection([
|
||||||
'name' => 'IsSpam',
|
'name' => 'IsSpam',
|
||||||
'mapping' => array(
|
'mapping' => [
|
||||||
'Name' => 'authorName',
|
'Name' => 'authorName',
|
||||||
'Email' => 'authorEmail',
|
'Email' => 'authorEmail',
|
||||||
'URL' => 'authorUrl',
|
'URL' => 'authorUrl',
|
||||||
'Comment' => 'body',
|
'Comment' => 'body',
|
||||||
'ReturnURL' => 'contextUrl'
|
'ReturnURL' => 'contextUrl'
|
||||||
),
|
],
|
||||||
'checks' => array(
|
'checks' => [
|
||||||
'spam',
|
'spam',
|
||||||
'profanity'
|
'profanity'
|
||||||
)
|
]
|
||||||
));
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -6,6 +6,7 @@ use LogicException;
|
|||||||
use SilverStripe\Core\Config\Configurable;
|
use SilverStripe\Core\Config\Configurable;
|
||||||
use SilverStripe\Core\Extension;
|
use SilverStripe\Core\Extension;
|
||||||
use SilverStripe\Core\Injector\Injector;
|
use SilverStripe\Core\Injector\Injector;
|
||||||
|
use SilverStripe\View\Requirements;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An extension to the {@link Form} class which provides the method
|
* An extension to the {@link Form} class which provides the method
|
||||||
@ -37,7 +38,7 @@ class FormSpamProtectionExtension extends Extension
|
|||||||
*
|
*
|
||||||
* @var array $mappable_fields
|
* @var array $mappable_fields
|
||||||
*/
|
*/
|
||||||
private static $mappable_fields = array(
|
private static $mappable_fields = [
|
||||||
'id',
|
'id',
|
||||||
'title',
|
'title',
|
||||||
'body',
|
'body',
|
||||||
@ -48,7 +49,7 @@ class FormSpamProtectionExtension extends Extension
|
|||||||
'authorUrl',
|
'authorUrl',
|
||||||
'authorIp',
|
'authorIp',
|
||||||
'authorId'
|
'authorId'
|
||||||
);
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @config
|
* @config
|
||||||
@ -88,7 +89,7 @@ class FormSpamProtectionExtension extends Extension
|
|||||||
* @throws LogicException when get_protector method returns NULL.
|
* @throws LogicException when get_protector method returns NULL.
|
||||||
* @return Object
|
* @return Object
|
||||||
*/
|
*/
|
||||||
public function enableSpamProtection($options = array())
|
public function enableSpamProtection($options = [])
|
||||||
{
|
{
|
||||||
|
|
||||||
// captcha form field name (must be unique)
|
// captcha form field name (must be unique)
|
||||||
@ -109,7 +110,8 @@ class FormSpamProtectionExtension extends Extension
|
|||||||
$protector = self::get_protector($options);
|
$protector = self::get_protector($options);
|
||||||
|
|
||||||
if ($protector === null) {
|
if ($protector === null) {
|
||||||
throw new LogicException('No spam protector has been set. Null is not valid value.');
|
Requirements::customScript('console.error("No spam protector has been set on this form.")');
|
||||||
|
return $this->owner;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($protector && isset($options['mapping'])) {
|
if ($protector && isset($options['mapping'])) {
|
Loading…
Reference in New Issue
Block a user