' . $name . '' . PHP_EOL; } return $buttons; }; $getFormHeader = function($bridgeName){ return << EOD; }; $bridge = Bridge::create($bridgeName); if($bridge == false) return ""; $name = '' . $bridge->getName() . ''; $description = $bridge->getDescription(); $card = <<

{$name}

{$description}

CARD; // If we don't have any parameter for the bridge, we print a generic form to load it. if(count($bridge->getParameters()) == 0){ $card .= $getFormHeader($bridgeName); if($isActive){ if(defined('PROXY_URL') && PROXY_BYBRIDGE){ $idArg = 'arg-' . urlencode($bridgeName) . '-' . urlencode('proxyoff') . '-' . urlencode('_noproxy'); $card .= '' . PHP_EOL; $card .= '
' . PHP_EOL; } $card .= $getHelperButtonsFormat($formats); } else { $card .= 'Inactive'; } $card .= '' . PHP_EOL; } $hasGlobalParameter = array_key_exists('global', $bridge->getParameters()); if($hasGlobalParameter){ $globalParameters = $bridge->getParameters()['global']; } foreach($bridge->getParameters() as $parameterName => $parameter){ if(!is_numeric($parameterName) && $parameterName == 'global') continue; if($hasGlobalParameter) $parameter = array_merge($parameter, $globalParameters); if(!is_numeric($parameterName)) $card .= '
' . $parameterName . '
' . PHP_EOL; $card .= $getFormHeader($bridgeName); foreach($parameter as $id => $inputEntry){ $additionalInfoString = ''; if(isset($inputEntry['required']) && $inputEntry['required'] === true) $additionalInfoString .= ' required'; if(isset($inputEntry['pattern'])) $additionalInfoString .= ' pattern="' . $inputEntry['pattern'] . '"'; if(isset($inputEntry['title'])) $additionalInfoString .= ' title="' . $inputEntry['title'] . '"'; if(!isset($inputEntry['exampleValue'])) $inputEntry['exampleValue'] = ''; if(!isset($inputEntry['defaultValue'])) $inputEntry['defaultValue'] = ''; $idArg = 'arg-' . urlencode($bridgeName) . '-' . urlencode($parameterName) . '-' . urlencode($id); $card .= '' . PHP_EOL; if(!isset($inputEntry['type']) || $inputEntry['type'] == 'text'){ $card .= '
' . PHP_EOL; } elseif($inputEntry['type'] == 'number'){ $card .= '
' . PHP_EOL; } else if($inputEntry['type'] == 'list'){ $card .= '
'; } elseif($inputEntry['type'] == 'checkbox'){ if($inputEntry['defaultValue'] === 'checked') $card .= '
' . PHP_EOL; else $card .= '
' . PHP_EOL; } } if($isActive){ if(defined('PROXY_URL') && PROXY_BYBRIDGE){ $idArg = 'arg-' . urlencode($bridgeName) . '-' . urlencode('proxyoff') . '-' . urlencode('_noproxy'); $card .= '' . PHP_EOL; $card .= '
' . PHP_EOL; } $card .= $getHelperButtonsFormat($formats); } else { $card .= 'Inactive'; } $card .= '' . PHP_EOL; } $card .= ''; $card .= '

' . $bridge->getMaintainer() . '

'; $card .= ''; return $card; } function sanitize($textToSanitize, $removedTags = array('script', 'iframe', 'input', 'form'), $keptAttributes = array('title', 'href', 'src'), $keptText = array()){ $htmlContent = str_get_html($textToSanitize); foreach($htmlContent->find('*[!b38fd2b1fe7f4747d6b1c1254ccd055e]') as $element){ if(in_array($element->tag, $keptText)){ $element->outertext = $element->plaintext; } elseif(in_array($element->tag, $removedTags)){ $element->outertext = ''; } else { foreach($element->getAllAttributes() as $attributeName => $attribute){ if(!in_array($attributeName, $keptAttributes)) $element->removeAttribute($attributeName); } } } return $htmlContent; } function defaultLinkTo($content, $server){ foreach($content->find('img') as $image){ if(strpos($image->src, 'http') === false && strpos($image->src, '//') === false && strpos($image->src, 'data:') === false) $image->src = $server . $image->src; } foreach($content->find('a') as $anchor){ if(strpos($anchor->href, 'http') === false && strpos($anchor->href, '//') === false && strpos($anchor->href, '#') !== 0 && strpos($anchor->href, '?') !== 0) $anchor->href = $server . $anchor->href; } return $content; }