PHP Classes

File: web/SSO/modules/core/www/short_sso_interval.php

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

Contents

Class file image Download
<?php
/**
 * Show a warning to an user about the SP requesting SSO a short time after
 * doing it previously.
 *
 * @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, 'core:short_sso_interval');

if (
array_key_exists('continue', $_REQUEST)) {
   
/* The user has pressed the continue/retry-button. */
   
SimpleSAML_Auth_ProcessingChain::resumeProcessing($state);
}

$globalConfig = SimpleSAML_Configuration::getInstance();
$t = new SimpleSAML_XHTML_Template($globalConfig, 'core:short_sso_interval.php');
$t->data['target'] = SimpleSAML_Module::getModuleURL('core/short_sso_interval.php');
$t->data['params'] = array('StateId' => $id);
$t->show();


?>