1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/rainloop_ynh.git synced 2024-09-03 20:16:18 +02:00
rainloop_ynh/conf/sso.php
scith c5ed66ad19 SSO first try
SSO with a workaround until someone can write an appropriate NGINX file.
The workaround is to put Rainloop in a subfolder, and let the index.php
be the file doing the SSO
2015-10-07 21:23:28 +02:00

18 lines
552 B
PHP

<?php
// Enable RainLoop Api and include index file
$_ENV['RAINLOOP_INCLUDE_AS_API'] = true;
include '/var/www/rainloop/index.php';
// Retrieve email and password
if (isset($_SERVER['HTTP_EMAIL']) && isset($_SERVER['PHP_AUTH_PW'])) {
$email = $_SERVER['HTTP_EMAIL'];
$password = $_SERVER['PHP_AUTH_PW'];
$ssoHash = \RainLoop\Api::GetUserSsoHash($email, $password);
// redirect to webmail sso url
\header('Location: https://test.com/rainloop/index.php?sso&hash='.$ssoHash);
}
else {
\header('Location: https://test.com/rainloop/index.php');
}