mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
f5dda06c55
* Added saml custom setting retrieveParametersFromServer to enable fixing SLO issues with Azure AD (#9187) * [FIX] Lite test email won't use the mail component (#9092) * [FIX] Lite test email won't use the mail component * Revert "[FIX] Lite test email won't use the mail component" This reverts commit6dab9aa1a8
. * Fix check for snipeSettings * Remove random text from message template * Revert "Fix check for snipeSettings" This reverts commit887dcc7bbc
. * Fix test notification with setupCompleted Co-authored-by: johnson-yi <63399474+johnson-yi@users.noreply.github.com> Co-authored-by: Oliver Walerys <owalerys@users.noreply.github.com>
144 lines
3.6 KiB
PHP
144 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Services\Saml;
|
|
use Log;
|
|
|
|
/**
|
|
* This controller provides the endpoint for SAML communication and metadata.
|
|
*
|
|
* @author Johnson Yi <jyi.dev@outlook.com>
|
|
*
|
|
* @since 5.0.0
|
|
*/
|
|
class SamlController extends Controller
|
|
{
|
|
/**
|
|
* @var Saml
|
|
*/
|
|
protected $saml;
|
|
|
|
/**
|
|
* Create a new authentication controller instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Saml $saml)
|
|
{
|
|
$this->saml = $saml;
|
|
|
|
$this->middleware('guest', ['except' => ['metadata','sls']]);
|
|
}
|
|
|
|
/**
|
|
* Return SAML SP metadata for Snipe-IT
|
|
*
|
|
* /saml/metadata
|
|
*
|
|
* @author Johnson Yi <jyi.dev@outlook.com>
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function metadata(Request $request)
|
|
{
|
|
$metadata = $this->saml->getSPMetadata();
|
|
|
|
if (empty($metadata)) {
|
|
return response()->view('errors.403', [], 403);
|
|
}
|
|
|
|
return response()->streamDownload(function () use ($metadata) {
|
|
echo $metadata;
|
|
}, 'snipe-it-metadata.xml', ['Content-Type' => 'text/xml']);
|
|
}
|
|
|
|
/**
|
|
* Begin the SP-Initiated SSO by sending AuthN to the IdP.
|
|
*
|
|
* /login/saml
|
|
*
|
|
* @author Johnson Yi <jyi.dev@outlook.com>
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Redirect
|
|
*/
|
|
public function login(Request $request)
|
|
{
|
|
$auth = $this->saml->getAuth();
|
|
$ssoUrl = $auth->login(null, array(), false, false, false, false);
|
|
return redirect()->away($ssoUrl);
|
|
}
|
|
|
|
/**
|
|
* Receives, parses the assertion from IdP and flashes SAML data
|
|
* back to the LoginController for authentication.
|
|
*
|
|
* /saml/acs
|
|
*
|
|
* @author Johnson Yi <jyi.dev@outlook.com>
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Redirect
|
|
*/
|
|
public function acs(Request $request)
|
|
{
|
|
$saml = $this->saml;
|
|
$auth = $saml->getAuth();
|
|
$auth->processResponse();
|
|
$errors = $auth->getErrors();
|
|
|
|
if (!empty($errors)) {
|
|
Log::error("There was an error with SAML ACS: " . implode(', ', $errors));
|
|
Log::error("Reason: " . $auth->getLastErrorReason());
|
|
return redirect()->route('login')->with('error', trans('auth/message.signin.error'));
|
|
}
|
|
|
|
$samlData = $saml->extractData();
|
|
|
|
return redirect()->route('login')->with('saml_login', $samlData);
|
|
}
|
|
|
|
/**
|
|
* Receives LogoutRequest/LogoutResponse from IdP and flashes
|
|
* back to the LoginController for logging out.
|
|
*
|
|
* /saml/sls
|
|
*
|
|
* @author Johnson Yi <jyi.dev@outlook.com>
|
|
*
|
|
* @since 5.0.0
|
|
*
|
|
* @param Request $request
|
|
*
|
|
* @return Redirect
|
|
*/
|
|
public function sls(Request $request)
|
|
{
|
|
$auth = $this->saml->getAuth();
|
|
$retrieveParametersFromServer = $this->saml->getSetting('retrieveParametersFromServer', false);
|
|
$sloUrl = $auth->processSLO(true, null, $retrieveParametersFromServer, null, true);
|
|
$errors = $auth->getErrors();
|
|
|
|
if (!empty($errors)) {
|
|
Log::error("There was an error with SAML SLS: " . implode(', ', $errors));
|
|
Log::error("Reason: " . $auth->getLastErrorReason());
|
|
return view('errors.403');
|
|
}
|
|
|
|
return redirect()->route('logout')->with('saml_slo_redirect_url', $sloUrl);
|
|
}
|
|
}
|