PHP Classes

File: web/SSO/modules/exampleauth/www/redirecttest.php

Recommend this page to a friend!
  Classes of william amed   Raptor 2   web/SSO/modules/exampleauth/www/redirecttest.php   Download  
File: web/SSO/modules/exampleauth/www/redirecttest.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: 645 bytes
 

Contents

Class file image Download
<?php

/**
 * Request handler for redirect filter test.
 *
 * @author Olav Morken, UNINETT AS.
 * @package simpleSAMLphp
 */

if (!array_key_exists('StateId', $_REQUEST)) {
    throw new
SimpleSAML_Error_BadRequest('Missing required StateId query parameter.');
}

$id = $_REQUEST['StateId'];

// sanitize the input
$sid = SimpleSAML_Utilities::parseStateID($id);
if (!
is_null($sid['url'])) {
   
SimpleSAML_Utilities::checkURLAllowed($sid['url']);
}

$state = SimpleSAML_Auth_State::loadState($id, 'exampleauth:redirectfilter-test');

$state['Attributes']['RedirectTest2'] = array('OK');

SimpleSAML_Auth_ProcessingChain::resumeProcessing($state);

?>