2015-11-05 21:26:48 +01:00
|
|
|
<?php
|
|
|
|
class HTMLUtils {
|
|
|
|
|
|
|
|
public static function getHelperButtonFormat($value, $name){
|
|
|
|
return '<button type="submit" name="format" value="' . $value . '">' . $name . '</button>';
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function getHelperButtonsFormat($formats){
|
|
|
|
$buttons = '';
|
|
|
|
foreach( $formats as $name => $infos )
|
|
|
|
{
|
|
|
|
if ( isset($infos['name']) )
|
|
|
|
{
|
|
|
|
$buttons .= HTMLUtils::getHelperButtonFormat($name, $infos['name']) . PHP_EOL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $buttons;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function displayBridgeCard($bridgeName, $formats, $isActive = true)
|
|
|
|
{
|
|
|
|
|
|
|
|
$bridgeElement = Bridge::create($bridgeName);
|
|
|
|
if($bridgeElement == false) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
$bridgeElement->loadMetadatas();
|
|
|
|
|
|
|
|
$name = '<a href="'.$bridgeElement->uri.'">'.$bridgeElement->name.'</a>';
|
|
|
|
$description = $bridgeElement->description;
|
|
|
|
|
|
|
|
$card = <<<CARD
|
|
|
|
<section id="bridge-{$bridgeName}" data-ref="{$bridgeName}">
|
|
|
|
<h2>{$name}</h2>
|
|
|
|
<p class="description">
|
|
|
|
{$description}
|
|
|
|
</p>
|
2016-08-02 22:16:43 +02:00
|
|
|
<input type="checkbox" class="showmore-box" id="showmore-{$bridgeName}" />
|
|
|
|
<label class="showmore" for="showmore-{$bridgeName}">Show more</label>
|
2015-11-05 21:26:48 +01:00
|
|
|
CARD;
|
|
|
|
|
|
|
|
// If we don't have any parameter for the bridge, we print a generic form to load it.
|
|
|
|
if(count($bridgeElement->parameters) == 0) {
|
|
|
|
|
2015-11-11 22:45:24 +01:00
|
|
|
$card .= '<form method="GET" action="?">
|
2015-11-05 21:26:48 +01:00
|
|
|
<input type="hidden" name="action" value="display" />
|
|
|
|
<input type="hidden" name="bridge" value="' . $bridgeName . '" />' . PHP_EOL;
|
|
|
|
|
|
|
|
if ($isActive)
|
|
|
|
{
|
|
|
|
$card .= HTMLUtils::getHelperButtonsFormat($formats);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$card .= '<span style="font-weight: bold;">Inactive</span>';
|
|
|
|
}
|
|
|
|
$card .= '</form>' . PHP_EOL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-02-11 16:24:40 +01:00
|
|
|
$hasGlobalParameter = array_key_exists("global", $bridgeElement->parameters);
|
|
|
|
if($hasGlobalParameter) {
|
|
|
|
$globalParameters = json_decode($bridgeElement->parameters['global'], true);
|
|
|
|
}
|
|
|
|
|
2015-11-05 21:26:48 +01:00
|
|
|
foreach($bridgeElement->parameters as $parameterName => $parameter)
|
|
|
|
{
|
2016-02-11 16:24:40 +01:00
|
|
|
|
|
|
|
$parameter = json_decode($parameter, true);
|
|
|
|
|
|
|
|
if(!is_numeric($parameterName) && $parameterName == "global") {
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if($hasGlobalParameter) {
|
|
|
|
|
|
|
|
$parameter = array_merge($parameter, $globalParameters);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-11-05 21:26:48 +01:00
|
|
|
if(!is_numeric($parameterName)) {
|
|
|
|
$card .= '<h5>'.$parameterName.'</h5>' . PHP_EOL;
|
|
|
|
}
|
2015-11-11 22:45:24 +01:00
|
|
|
$card .= '<form method="GET" action="?">
|
2015-11-05 21:26:48 +01:00
|
|
|
<input type="hidden" name="action" value="display" />
|
|
|
|
<input type="hidden" name="bridge" value="' . $bridgeName . '" />' . PHP_EOL;
|
|
|
|
|
|
|
|
|
|
|
|
foreach($parameter as $inputEntry) {
|
|
|
|
|
2015-11-11 22:45:24 +01:00
|
|
|
$additionalInfoString = "";
|
|
|
|
if(isset($inputEntry['required'])) {
|
|
|
|
|
|
|
|
$additionalInfoString .= " required=\"required\"";
|
|
|
|
|
|
|
|
}
|
|
|
|
if(isset($inputEntry['pattern'])) {
|
|
|
|
|
|
|
|
$additionalInfoString .= " pattern=\"".$inputEntry['pattern']."\"";
|
|
|
|
|
|
|
|
}
|
2016-01-19 21:57:24 +01:00
|
|
|
if(isset($inputEntry['title'])) {
|
|
|
|
|
|
|
|
$additionalInfoString .= " title=\"" .$inputEntry['title']."\"";
|
|
|
|
|
|
|
|
}
|
2015-11-05 21:26:48 +01:00
|
|
|
if(!isset($inputEntry['exampleValue'])) $inputEntry['exampleValue'] = "";
|
|
|
|
|
2015-11-11 22:45:24 +01:00
|
|
|
$idArg = 'arg-' . urlencode($bridgeName) . '-' . urlencode($parameterName) . '-' . urlencode($inputEntry['identifier']);
|
2015-11-05 21:26:48 +01:00
|
|
|
|
|
|
|
$card .= '<label for="' .$idArg. '">' .$inputEntry['name']. ' : </label>' . PHP_EOL;
|
|
|
|
|
|
|
|
if(!isset($inputEntry['type']) || $inputEntry['type'] == 'text') {
|
2015-11-11 22:45:24 +01:00
|
|
|
$card .= '<input '.$additionalInfoString.' id="' . $idArg . '" type="text" value="" placeholder="' . $inputEntry['exampleValue'] . '" name="' . $inputEntry['identifier'] . '" /><br />' . PHP_EOL;
|
2015-11-05 21:26:48 +01:00
|
|
|
} else if($inputEntry['type'] == 'number') {
|
2015-11-11 22:45:24 +01:00
|
|
|
$card .= '<input '.$additionalInfoString.' id="' . $idArg . '" type="number" value="" placeholder="' . $inputEntry['exampleValue'] . '" name="' . $inputEntry['identifier'] . '" /><br />' . PHP_EOL;
|
2015-11-05 21:26:48 +01:00
|
|
|
} else if($inputEntry['type'] == 'list') {
|
2015-11-27 15:20:33 +01:00
|
|
|
$card .= '<select '.$additionalInfoString.' id="' . $idArg . '" name="' . $inputEntry['identifier'] . '" >';
|
2015-11-05 21:26:48 +01:00
|
|
|
foreach($inputEntry['values'] as $listValues) {
|
|
|
|
|
2015-11-11 22:45:24 +01:00
|
|
|
$card .= "<option $additionalInfoString value='" . $listValues['value'] . "'>" . $listValues['name'] . "</option>";
|
2015-11-05 21:26:48 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
$card .= '</select><br >';
|
|
|
|
} else if($inputEntry['type'] == 'checkbox') {
|
|
|
|
|
|
|
|
$card .= '<input id="' . $idArg . '" type="checkbox" name="' . $inputEntry['identifier'] . '" /><br />' . PHP_EOL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
if ($isActive)
|
|
|
|
{
|
|
|
|
$card .= HTMLUtils::getHelperButtonsFormat($formats);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$card .= '<span style="font-weight: bold;">Inactive</span>';
|
|
|
|
}
|
|
|
|
$card .= '</form>' . PHP_EOL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-02 22:16:43 +02:00
|
|
|
$card .= '<label class="showless" for="showmore-' . $bridgeName . '">Show less</label>';
|
2016-08-02 18:56:12 +02:00
|
|
|
$card .= '<p class="maintainer">'.$bridgeElement->maintainer.'</p>';
|
2015-11-05 21:26:48 +01:00
|
|
|
$card .= '</section>';
|
|
|
|
|
|
|
|
return $card;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-11-11 22:45:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class HTMLSanitizer {
|
|
|
|
|
|
|
|
|
|
|
|
var $tagsToRemove;
|
|
|
|
var $keptAttributes;
|
|
|
|
var $onlyKeepText;
|
|
|
|
|
2015-12-06 18:49:41 +01:00
|
|
|
|
2016-02-26 19:17:48 +01:00
|
|
|
public static $DEFAULT_CLEAR_TAGS = ["script", "iframe", "input", "form"];
|
2015-12-06 18:47:20 +01:00
|
|
|
public static $KEPT_ATTRIBUTES = ["title", "href", "src"];
|
2015-11-11 22:45:24 +01:00
|
|
|
|
2016-02-26 19:17:48 +01:00
|
|
|
public static $ONLY_TEXT = [];
|
2015-11-11 22:45:24 +01:00
|
|
|
|
2016-02-26 19:17:48 +01:00
|
|
|
function __construct($tags_to_remove = null, $kept_attributes = null, $only_keep_text = null) {
|
2015-11-11 22:45:24 +01:00
|
|
|
|
2016-02-26 19:17:48 +01:00
|
|
|
$this->tagsToRemove = $tags_to_remove == null ? HTMLSanitizer::$DEFAULT_CLEAR_TAGS : $tags_to_remove;
|
|
|
|
$this->keptAttributes = $kept_attributes == null ? HTMLSanitizer::$KEPT_ATTRIBUTES : $kept_attributes;
|
|
|
|
$this->onlyKeepText = $only_keep_text == null ? HTMLSanitizer::$ONLY_TEXT : $only_keep_text;
|
2015-11-11 22:45:24 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function sanitize($textToSanitize) {
|
|
|
|
|
|
|
|
$htmlContent = str_get_html($textToSanitize);
|
|
|
|
|
2016-02-26 19:31:53 +01:00
|
|
|
foreach($htmlContent->find('*[!b38fd2b1fe7f4747d6b1c1254ccd055e]') as $element) {
|
2015-11-11 22:45:24 +01:00
|
|
|
if(in_array($element->tag, $this->onlyKeepText)) {
|
|
|
|
$element->outertext = $element->plaintext;
|
|
|
|
} else if(in_array($element->tag, $this->tagsToRemove)) {
|
|
|
|
$element->outertext = '';
|
|
|
|
} else {
|
|
|
|
foreach($element->getAllAttributes() as $attributeName => $attribute) {
|
|
|
|
if(!in_array($attributeName, $this->keptAttributes)) $element->removeAttribute($attributeName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $htmlContent;
|
|
|
|
|
|
|
|
}
|
2015-11-27 15:20:33 +01:00
|
|
|
public static function defaultImageSrcTo($content, $server) {
|
|
|
|
foreach($content->find('img') as $image) {
|
2016-02-26 19:17:48 +01:00
|
|
|
|
|
|
|
if(strpos($image->src, "http") == NULL && strpos($image->src, "//") == NULL && strpos($image->src, "data:") == NULL) {
|
2015-11-27 15:20:33 +01:00
|
|
|
$image->src = $server.$image->src;
|
2016-02-26 19:17:48 +01:00
|
|
|
}
|
2015-11-27 15:20:33 +01:00
|
|
|
}
|
2016-02-26 19:17:48 +01:00
|
|
|
return $content;
|
2015-11-27 15:20:33 +01:00
|
|
|
}
|
2015-11-11 22:45:24 +01:00
|
|
|
|
2015-11-05 21:26:48 +01:00
|
|
|
}
|
|
|
|
?>
|