2016-01-21 04:39:02 +01:00
|
|
|
<?php
|
|
|
|
|
2017-11-18 22:09:58 +01:00
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Authentication Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Endpoint: /auth
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
Route::group(['middleware' => 'guest'], function () {
|
2018-04-08 22:46:32 +02:00
|
|
|
// These routes are defined so that we can continue to reference them programatically.
|
|
|
|
// They all route to the same controller function which passes off to Vuejs.
|
|
|
|
Route::get('/login', 'LoginController@index')->name('auth.login');
|
|
|
|
Route::get('/password', 'LoginController@index')->name('auth.forgot-password');
|
|
|
|
Route::get('/password/reset/{token}', 'LoginController@index')->name('auth.reset');
|
|
|
|
|
2021-10-23 21:17:16 +02:00
|
|
|
// Apply a throttle to authentication action endpoints, in addition to the
|
|
|
|
// recaptcha endpoints to slow down manual attack spammers even more. 🤷
|
|
|
|
//
|
|
|
|
// @see \Pterodactyl\Providers\RouteServiceProvider
|
|
|
|
Route::middleware(['throttle:authentication'])->group(function () {
|
|
|
|
// Login endpoints.
|
|
|
|
Route::post('/login', 'LoginController@login')->middleware('recaptcha');
|
|
|
|
Route::post('/login/checkpoint', 'LoginCheckpointController')->name('auth.login-checkpoint');
|
2018-04-07 23:17:51 +02:00
|
|
|
|
2021-10-23 21:17:16 +02:00
|
|
|
// Forgot password route. A post to this endpoint will trigger an
|
|
|
|
// email to be sent containing a reset token.
|
|
|
|
Route::post('/password', 'ForgotPasswordController@sendResetLinkEmail')
|
|
|
|
->name('auth.post.forgot-password')
|
|
|
|
->middleware('recaptcha');
|
|
|
|
});
|
2018-04-07 23:17:51 +02:00
|
|
|
|
|
|
|
// Password reset routes. This endpoint is hit after going through
|
|
|
|
// the forgot password routes to acquire a token (or after an account
|
|
|
|
// is created).
|
2020-08-02 06:08:35 +02:00
|
|
|
Route::post('/password/reset', 'ResetPasswordController')->name('auth.reset-password');
|
2018-04-08 23:00:52 +02:00
|
|
|
|
|
|
|
// Catch any other combinations of routes and pass them off to the Vuejs component.
|
|
|
|
Route::fallback('LoginController@index');
|
2017-11-18 22:09:58 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
2018-05-13 17:10:51 +02:00
|
|
|
| Routes Accessible only when logged in
|
2017-11-18 22:09:58 +01:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Endpoint: /auth
|
|
|
|
|
|
|
|
|
*/
|
2021-10-23 22:00:21 +02:00
|
|
|
Route::post('/logout', 'LoginController@logout')->name('auth.logout')->middleware('auth', 'csrf');
|