mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
df1cef59d5
Signed-off-by: snipe <snipe@snipe.net>
148 lines
3.7 KiB
PHP
148 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Services\Saml;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\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)) {
|
|
Log::debug('SAML metadata is empty - return a 403');
|
|
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 \Illuminate\Http\RedirectResponse
|
|
*/
|
|
public function login(Request $request)
|
|
{
|
|
$auth = $this->saml->getAuth();
|
|
$ssoUrl = $auth->login(null, [], 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 \Illuminate\Http\RedirectResponse
|
|
*/
|
|
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 \Illuminate\Http\RedirectResponse
|
|
*/
|
|
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.get')->with(['saml_logout' => true,'saml_slo_redirect_url' => $sloUrl]);
|
|
}
|
|
}
|