Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/vendor/onelogin/php-saml/endpoints/acs.php')
-rw-r--r--3rdparty/vendor/onelogin/php-saml/endpoints/acs.php51
1 files changed, 0 insertions, 51 deletions
diff --git a/3rdparty/vendor/onelogin/php-saml/endpoints/acs.php b/3rdparty/vendor/onelogin/php-saml/endpoints/acs.php
deleted file mode 100644
index 4b1ac242..00000000
--- a/3rdparty/vendor/onelogin/php-saml/endpoints/acs.php
+++ /dev/null
@@ -1,51 +0,0 @@
-<?php
-
-/**
- * SP Assertion Consumer Service Endpoint
- */
-
-session_start();
-
-require_once dirname(dirname(__FILE__)).'/_toolkit_loader.php';
-
-$auth = new OneLogin_Saml2_Auth();
-
-$auth->processResponse();
-
-$errors = $auth->getErrors();
-
-if (!empty($errors)) {
- print_r('<p>'.implode(', ', $errors).'</p>');
- exit();
-}
-
-if (!$auth->isAuthenticated()) {
- echo "<p>Not authenticated</p>";
- exit();
-}
-
-$_SESSION['samlUserdata'] = $auth->getAttributes();
-$_SESSION['IdPSessionIndex'] = $auth->getSessionIndex();
-if (isset($_POST['RelayState']) && OneLogin_Saml2_Utils::getSelfURL() != $_POST['RelayState']) {
- $auth->redirectTo($_POST['RelayState']);
-}
-
-$attributes = $_SESSION['samlUserdata'];
-
-if (!empty($attributes)) {
- echo '<h1>'._('User attributes:').'</h1>';
- echo '<table><thead><th>'._('Name').'</th><th>'._('Values').'</th></thead><tbody>';
- foreach ($attributes as $attributeName => $attributeValues) {
- echo '<tr><td>'.htmlentities($attributeName).'</td><td><ul>';
- foreach ($attributeValues as $attributeValue) {
- echo '<li>'.htmlentities($attributeValue).'</li>';
- }
- echo '</ul></td></tr>';
- }
- echo '</tbody></table>';
- if (!empty($_SESSION['IdPSessionIndex'])) {
- echo '<p>The SessionIndex of the IdP is: '.$_SESSION['IdPSessionIndex'].'</p>';
- }
-} else {
- echo _('Attributes not found');
-}