PHP Classes

File: web/SSO/modules/consent/www/logout.php

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

Contents

Class file image Download
<?php
/**
 * This is the handler for logout started from the consent page.
 *
 * @package simpleSAMLphp
 */

if (!array_key_exists('StateId', $_GET)) {
    throw new
SimpleSAML_Error_BadRequest('Missing required StateId query parameter.');
}
$id = (string)$_GET['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, 'consent:request');

$state['Responder'] = array('sspmod_consent_Logout', 'postLogout');

$idp = SimpleSAML_IdP::getByState($state);
$idp->handleLogoutRequest($state, NULL);
assert('FALSE');