当前位置: 首页>>代码示例>>PHP>>正文


PHP SimpleSAML_Utilities::formatDOMElement方法代码示例

本文整理汇总了PHP中SimpleSAML_Utilities::formatDOMElement方法的典型用法代码示例。如果您正苦于以下问题:PHP SimpleSAML_Utilities::formatDOMElement方法的具体用法?PHP SimpleSAML_Utilities::formatDOMElement怎么用?PHP SimpleSAML_Utilities::formatDOMElement使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SimpleSAML_Utilities的用法示例。


在下文中一共展示了SimpleSAML_Utilities::formatDOMElement方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getEntityDescriptorText

 /**
  * Retrieve the EntityDescriptor as text.
  *
  * This function serializes this EntityDescriptor, and returns it as text.
  *
  * @param bool $formatted  Whether the returned EntityDescriptor should be
  *                         formatted first.
  * @return string  The serialized EntityDescriptor.
  */
 public function getEntityDescriptorText($formatted = TRUE)
 {
     assert('is_bool($formatted)');
     if ($formatted) {
         SimpleSAML_Utilities::formatDOMElement($this->entityDescriptor);
     }
     return $this->document->saveXML();
 }
开发者ID:hukumonline,项目名称:yii,代码行数:17,代码来源:SAMLBuilder.php

示例2: SimpleSAML_Error_BadRequest

if ($_SERVER['REQUEST_METHOD'] === 'GET') {
    $message = @gzinflate($message);
    if ($message === FALSE) {
        throw new SimpleSAML_Error_BadRequest('Unable to gzinflate message.');
    }
}
$document = new DOMDocument();
if (!$document->loadXML($message)) {
    throw new SimpleSAML_Error_BadRequest('Unable to parse XML.');
}
$root = $document->firstChild;
if (!$root->hasAttribute('Destination')) {
    throw new SimpleSAML_Error_BadRequest('Missing Destination-attribute on root element.');
}
$realDestination = $root->getAttribute('Destination');
SimpleSAML_Utilities::formatDOMElement($root);
$message = $document->saveXML($root);
switch ($_SERVER['REQUEST_METHOD']) {
    case 'GET':
        $queryString = $_SERVER['QUERY_STRING'];
        if (strpos($realDestination, '?') === FALSE) {
            $url = $realDestination . '?' . $queryString;
        } else {
            $url = $realDestination . '&' . $queryString;
        }
        $t = new SimpleSAML_XHTML_Template($globalConfig, 'httpredirect-debug.php');
        $t->data['url'] = $url;
        $t->data['message'] = htmlspecialchars($message);
        $t->show();
        exit;
    case 'POST':
开发者ID:hukumonline,项目名称:yii,代码行数:31,代码来源:debug.php

示例3: SimpleSAML_XHTML_Template

if (!array_key_exists('id', $_GET)) {
    $t = new SimpleSAML_XHTML_Template($config, 'aggregator:list.php');
    $t->data['sources'] = $aggregators->getOptions();
    $t->show();
    exit;
}
$id = $_GET['id'];
if (!in_array($id, $aggregators->getOptions())) {
    throw new SimpleSAML_Error_NotFound('No aggregator with id ' . var_export($id, TRUE) . ' found.');
}
$aConfig = $aggregators->getConfigItem($id);
$aggregator = new sspmod_aggregator_Aggregator($gConfig, $aConfig, $id);
if (isset($_REQUEST['set'])) {
    $aggregator->limitSets($_REQUEST['set']);
}
if (isset($_REQUEST['exclude'])) {
    $aggregator->exclude($_REQUEST['exclude']);
}
$xml = $aggregator->getMetadataDocument();
$mimetype = 'application/samlmetadata+xml';
$allowedmimetypes = array('text/plain', 'application/samlmetadata-xml', 'application/xml');
if (isset($_GET['mimetype']) && in_array($_GET['mimetype'], $allowedmimetypes)) {
    $mimetype = $_GET['mimetype'];
}
if ($mimetype === 'text/plain') {
    SimpleSAML_Utilities::formatDOMElement($xml);
}
$metadata = '<?xml version="1.0"?>' . "\n" . $xml->ownerDocument->saveXML($xml);
header('Content-Type: ' . $mimetype);
header('Content-Length: ' . strlen($metadata));
echo $metadata;
开发者ID:danielkjfrog,项目名称:docker,代码行数:31,代码来源:index.php

示例4: SimpleSAML_Error_BadRequest

}
/* Make sure that the request isn't suspicious (contains references to current
 * directory or parent directory or anything like that. Searching for './' in the
 * URL will detect both '../' and './'. Searching for '\' will detect attempts to
 * use Windows-style paths.
 */
if (strpos($attributemap, '\\') !== FALSE) {
    throw new SimpleSAML_Error_BadRequest('Requested URL contained a backslash.');
} elseif (strpos($attributemap, './') !== FALSE) {
    throw new SimpleSAML_Error_BadRequest('Requested URL contained \'./\'.');
}
$arp = new sspmod_aggregator_ARP($md, $attributemap, $prefix, $suffix);
$arpxml = $arp->getXML();
$xml = new DOMDocument();
$xml->loadXML($arpxml);
$firstelement = $xml->firstChild;
if ($aggregator->shouldSign()) {
    $signinfo = $aggregator->getSigningInfo();
    $signer = new SimpleSAML_XML_Signer($signinfo);
    $signer->sign($firstelement, $firstelement, $firstelement->firstChild);
}
$mimetype = 'application/samlmetadata-xml';
$allowedmimetypes = array('text/plain', 'application/samlmetadata-xml', 'application/xml');
if (isset($_GET['mimetype']) && in_array($_GET['mimetype'], $allowedmimetypes)) {
    $mimetype = $_GET['mimetype'];
}
if ($mimetype === 'text/plain') {
    SimpleSAML_Utilities::formatDOMElement($xml->documentElement);
}
header('Content-Type: ' . $mimetype);
echo $xml->saveXML();
开发者ID:danielkjfrog,项目名称:docker,代码行数:31,代码来源:arp.php


注:本文中的SimpleSAML_Utilities::formatDOMElement方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。