mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
feat: [FilterBridge] Add URI/URL filter option to FilterBridge (#3212)
This commit is contained in:
parent
57e79e7f1b
commit
69290c8e55
@ -39,19 +39,24 @@ class FilterBridge extends FeedExpander
|
|||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
],
|
],
|
||||||
'target_title' => [
|
'target_author' => [
|
||||||
'name' => 'Apply filter on title',
|
'name' => 'Apply filter on author',
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'defaultValue' => 'checked'
|
|
||||||
],
|
],
|
||||||
'target_content' => [
|
'target_content' => [
|
||||||
'name' => 'Apply filter on content',
|
'name' => 'Apply filter on content',
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
],
|
],
|
||||||
'target_author' => [
|
'target_title' => [
|
||||||
'name' => 'Apply filter on author',
|
'name' => 'Apply filter on title',
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'required' => false,
|
||||||
|
'defaultValue' => 'checked'
|
||||||
|
],
|
||||||
|
'target_uri' => [
|
||||||
|
'name' => 'Apply filter on URI/URL',
|
||||||
'type' => 'checkbox',
|
'type' => 'checkbox',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
],
|
],
|
||||||
@ -90,14 +95,17 @@ class FilterBridge extends FeedExpander
|
|||||||
|
|
||||||
// Retrieve fields to check
|
// Retrieve fields to check
|
||||||
$filter_fields = [];
|
$filter_fields = [];
|
||||||
if ($this->getInput('target_title')) {
|
if ($this->getInput('target_author')) {
|
||||||
$filter_fields[] = $item['title'] ?? null;
|
$filter_fields[] = $item['author'] ?? null;
|
||||||
}
|
}
|
||||||
if ($this->getInput('target_content')) {
|
if ($this->getInput('target_content')) {
|
||||||
$filter_fields[] = $item['content'] ?? null;
|
$filter_fields[] = $item['content'] ?? null;
|
||||||
}
|
}
|
||||||
if ($this->getInput('target_author')) {
|
if ($this->getInput('target_title')) {
|
||||||
$filter_fields[] = $item['author'] ?? null;
|
$filter_fields[] = $item['title'] ?? null;
|
||||||
|
}
|
||||||
|
if ($this->getInput('target_uri')) {
|
||||||
|
$filter_fields[] = $item['uri'] ?? null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Apply filter on item
|
// Apply filter on item
|
||||||
|
Loading…
Reference in New Issue
Block a user