' . $name . ''; } 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 = ''.$bridgeElement->name.''; $description = $bridgeElement->description; $card = <<

{$name}

{$description}

CARD; // If we don't have any parameter for the bridge, we print a generic form to load it. if(count($bridgeElement->parameters) == 0) { $card .= '
' . PHP_EOL; if ($isActive) { $card .= HTMLUtils::getHelperButtonsFormat($formats); } else { $card .= 'Inactive'; } $card .= '
' . PHP_EOL; } $hasGlobalParameter = array_key_exists("global", $bridgeElement->parameters); if($hasGlobalParameter) { $globalParameters = json_decode($bridgeElement->parameters['global'], true); } foreach($bridgeElement->parameters as $parameterName => $parameter) { $parameter = json_decode($parameter, true); if(!is_numeric($parameterName) && $parameterName == "global") { continue; } if($hasGlobalParameter) { $parameter = array_merge($parameter, $globalParameters); } if(!is_numeric($parameterName)) { $card .= '
'.$parameterName.'
' . PHP_EOL; } $card .= '
' . PHP_EOL; foreach($parameter as $inputEntry) { $additionalInfoString = ""; if(isset($inputEntry['required'])) { $additionalInfoString .= " required=\"required\""; } if(isset($inputEntry['pattern'])) { $additionalInfoString .= " pattern=\"".$inputEntry['pattern']."\""; } if(isset($inputEntry['title'])) { $additionalInfoString .= " title=\"" .$inputEntry['title']."\""; } if(!isset($inputEntry['exampleValue'])) $inputEntry['exampleValue'] = ""; $idArg = 'arg-' . urlencode($bridgeName) . '-' . urlencode($parameterName) . '-' . urlencode($inputEntry['identifier']); $card .= '' . PHP_EOL; if(!isset($inputEntry['type']) || $inputEntry['type'] == 'text') { $card .= '
' . PHP_EOL; } else if($inputEntry['type'] == 'number') { $card .= '
' . PHP_EOL; } else if($inputEntry['type'] == 'list') { $card .= '
'; } else if($inputEntry['type'] == 'checkbox') { $card .= '
' . PHP_EOL; } } if ($isActive) { $card .= HTMLUtils::getHelperButtonsFormat($formats); } else { $card .= 'Inactive'; } $card .= '
' . PHP_EOL; } $card .= ''.$bridgeElement->maintainer.''; $card .= ''; return $card; } } class HTMLSanitizer { var $tagsToRemove; var $keptAttributes; var $onlyKeepText; public static $DEFAULT_CLEAR_TAGS = ["script", "iframe"]; public static $KEPT_ATTRIBUTES = ["title", "href", "src"]; const ONLY_TEXT = null; function __construct($tags_to_remove = HTMLSanitizer::DEFAULT_CLEAR_TAGS, $kept_attributes = HTMLSanitizer::KEPT_ATTRIBUTES, $only_keep_text = HTMLSanitizer::ONLY_TEXT) { $this->tagsToRemove = $tags_to_remove; $this->keptAttributes = $kept_attributes; $this->onlyKeepText = $only_keep_text; } function sanitize($textToSanitize) { $htmlContent = str_get_html($textToSanitize); foreach($htmlContent->find('*[!j_ai_pas_trouve_comment_tout_demander]') as $element) { 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; } public static function defaultImageSrcTo($content, $server) { foreach($content->find('img') as $image) { if(strpos($image->src, '/')==0) { $image->src = $server.$image->src; } } } } ?>