mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
934afa036f
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions. You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started. [1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer [2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
147 lines
3.5 KiB
PHP
147 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Auth;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Services\Saml;
|
|
use Illuminate\Http\Request;
|
|
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, [], 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);
|
|
}
|
|
}
|