PHP Classes

File: web/SSO/modules/aggregator2/www/get.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/aggregator2/www/get.php   Download  
File: web/SSO/modules/aggregator2/www/get.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 543 bytes
 

Contents

Class file image Download
<?php

if (!isset($_REQUEST['id'])) {
    throw new
SimpleSAML_Error_BadRequest('Missing required id-parameter.');
}
$id = (string)$_REQUEST['id'];

$aggregator = sspmod_aggregator2_Aggregator::getAggregator($id);
$xml = $aggregator->getMetadata();

header('Content-Type: application/samlmetadata+xml');
header('Content-Length: ' . strlen($xml));

/*
 * At this point, if the ID was forged, getMetadata() would
 * have failed to find a valid metadata set, so we can trust it.
 */
header('Content-Disposition: filename='.$id.'.xml');

echo(
$xml);