mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[XPathBridge] add option to skip htmlspecialchars (#3672)
This commit is contained in:
parent
409236e48e
commit
3b91b1d260
@ -59,6 +59,17 @@ EOL, 'type' => 'text',
|
|||||||
'required' => false
|
'required' => false
|
||||||
],
|
],
|
||||||
|
|
||||||
|
'raw_content' => [
|
||||||
|
'name' => 'Use raw item description',
|
||||||
|
'title' => <<<"EOL"
|
||||||
|
Whether to use the raw item description or to replace certain characters with
|
||||||
|
special significance in HTML by HTML entities (using the PHP function htmlspecialchars).
|
||||||
|
EOL,
|
||||||
|
'type' => 'checkbox',
|
||||||
|
'defaultValue' => false,
|
||||||
|
'required' => false
|
||||||
|
],
|
||||||
|
|
||||||
'uri' => [
|
'uri' => [
|
||||||
'name' => 'Item URL selector',
|
'name' => 'Item URL selector',
|
||||||
'title' => <<<"EOL"
|
'title' => <<<"EOL"
|
||||||
@ -178,6 +189,15 @@ EOL, 'type' => 'checkbox',
|
|||||||
return urldecode($this->getInput('content'));
|
return urldecode($this->getInput('content'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use raw item content
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
protected function getSettingUseRawItemContent(): bool
|
||||||
|
{
|
||||||
|
return $this->getInput('raw_content');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* XPath expression for extracting an item link from the item context
|
* XPath expression for extracting an item link from the item context
|
||||||
* @return string
|
* @return string
|
||||||
@ -226,9 +246,9 @@ EOL, 'type' => 'checkbox',
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Fix encoding
|
* Fix encoding
|
||||||
* @return string
|
* @return bool
|
||||||
*/
|
*/
|
||||||
protected function getSettingFixEncoding()
|
protected function getSettingFixEncoding(): bool
|
||||||
{
|
{
|
||||||
return $this->getInput('fix_encoding');
|
return $this->getInput('fix_encoding');
|
||||||
}
|
}
|
||||||
|
@ -68,6 +68,9 @@ Should return the XPath expression for extracting an item title from the item co
|
|||||||
### Method `getExpressionItemContent()`
|
### Method `getExpressionItemContent()`
|
||||||
Should return the XPath expression for extracting an item's content from the item context.
|
Should return the XPath expression for extracting an item's content from the item context.
|
||||||
|
|
||||||
|
### Method `getSettingUseRawItemContent()`
|
||||||
|
Should return the 'Use raw item content' setting value (bool true or false).
|
||||||
|
|
||||||
### Method `getExpressionItemUri()`
|
### Method `getExpressionItemUri()`
|
||||||
Should return the XPath expression for extracting an item link from the item context.
|
Should return the XPath expression for extracting an item link from the item context.
|
||||||
|
|
||||||
|
@ -76,6 +76,15 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
*/
|
*/
|
||||||
const XPATH_EXPRESSION_ITEM_CONTENT = '';
|
const XPATH_EXPRESSION_ITEM_CONTENT = '';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use raw item content
|
||||||
|
* Whether to use the raw item content or to replace certain characters with
|
||||||
|
* special significance in HTML by HTML entities (using the PHP function htmlspecialchars).
|
||||||
|
*
|
||||||
|
* Use {@see XPathAbstract::getSettingUseRawItemContent()} to read this parameter
|
||||||
|
*/
|
||||||
|
const SETTING_USE_RAW_ITEM_CONTENT = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* XPath expression for extracting an item link from the item context
|
* XPath expression for extracting an item link from the item context
|
||||||
* This expression should match a node's attribute containing the article URL
|
* This expression should match a node's attribute containing the article URL
|
||||||
@ -236,6 +245,15 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
return static::XPATH_EXPRESSION_ITEM_CONTENT;
|
return static::XPATH_EXPRESSION_ITEM_CONTENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Use raw item content
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
protected function getSettingUseRawItemContent(): bool
|
||||||
|
{
|
||||||
|
return static::SETTING_USE_RAW_ITEM_CONTENT;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* XPath expression for extracting an item link from the item context
|
* XPath expression for extracting an item link from the item context
|
||||||
* @return string
|
* @return string
|
||||||
@ -284,9 +302,9 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Fix encoding
|
* Fix encoding
|
||||||
* @return string
|
* @return bool
|
||||||
*/
|
*/
|
||||||
protected function getSettingFixEncoding()
|
protected function getSettingFixEncoding(): bool
|
||||||
{
|
{
|
||||||
return static::SETTING_FIX_ENCODING;
|
return static::SETTING_FIX_ENCODING;
|
||||||
}
|
}
|
||||||
@ -313,6 +331,8 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
return $this->getExpressionItemTitle();
|
return $this->getExpressionItemTitle();
|
||||||
case 'content':
|
case 'content':
|
||||||
return $this->getExpressionItemContent();
|
return $this->getExpressionItemContent();
|
||||||
|
case 'raw_content':
|
||||||
|
return $this->getSettingUseRawItemContent();
|
||||||
case 'uri':
|
case 'uri':
|
||||||
return $this->getExpressionItemUri();
|
return $this->getExpressionItemUri();
|
||||||
case 'author':
|
case 'author':
|
||||||
@ -417,7 +437,8 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$value = $this->getItemValueOrNodeValue($typedResult, $param === 'content');
|
$isContent = $param === 'content';
|
||||||
|
$value = $this->getItemValueOrNodeValue($typedResult, $isContent, $isContent && !$this->getSettingUseRawItemContent());
|
||||||
$item->__set($param, $this->formatParamValue($param, $value));
|
$item->__set($param, $this->formatParamValue($param, $value));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -573,7 +594,7 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
* @param $typedResult
|
* @param $typedResult
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
protected function getItemValueOrNodeValue($typedResult, $returnXML = false)
|
protected function getItemValueOrNodeValue($typedResult, $returnXML = false, $escapeHtml = false)
|
||||||
{
|
{
|
||||||
if ($typedResult instanceof \DOMNodeList) {
|
if ($typedResult instanceof \DOMNodeList) {
|
||||||
$item = $typedResult->item(0);
|
$item = $typedResult->item(0);
|
||||||
@ -596,7 +617,7 @@ abstract class XPathAbstract extends BridgeAbstract
|
|||||||
|
|
||||||
$text = trim($text);
|
$text = trim($text);
|
||||||
|
|
||||||
if ($returnXML) {
|
if ($escapeHtml) {
|
||||||
return htmlspecialchars($text);
|
return htmlspecialchars($text);
|
||||||
}
|
}
|
||||||
return $text;
|
return $text;
|
||||||
|
Loading…
Reference in New Issue
Block a user