Pony.fm/app/Providers/RouteServiceProvider.php

88 lines
2.6 KiB
PHP
Raw Normal View History

2015-08-30 13:22:00 +02:00
<?php
/**
* Pony.fm - A community for pony fan music.
* Copyright (C) 2015 Feld0.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2021-02-14 03:34:58 +01:00
namespace App\Providers;
2015-08-30 13:22:00 +02:00
use App\Models\User;
2021-02-14 20:34:53 +01:00
use Illuminate\Cache\RateLimiting\Limit;
2015-08-30 13:22:00 +02:00
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
2021-02-14 20:34:53 +01:00
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
2015-08-30 13:22:00 +02:00
class RouteServiceProvider extends ServiceProvider
{
/**
2021-02-14 20:34:53 +01:00
* The path to the "home" route for your application.
2015-08-30 13:22:00 +02:00
*
2021-02-14 20:34:53 +01:00
* This is used by Laravel authentication to redirect users after login.
2015-08-30 13:22:00 +02:00
*
* @var string
*/
2021-02-14 20:34:53 +01:00
public const HOME = '/home';
2015-08-30 13:22:00 +02:00
2021-02-14 19:21:25 +01:00
/**
2021-02-14 20:34:53 +01:00
* The controller namespace for the application.
2021-02-14 19:21:25 +01:00
*
2021-02-14 20:34:53 +01:00
* When present, controller route declarations will automatically be prefixed with this namespace.
*
* @var string|null
2021-02-14 19:21:25 +01:00
*/
2021-02-14 20:34:53 +01:00
// protected $namespace = 'App\\Http\\Controllers';
2021-02-14 19:21:25 +01:00
2015-08-30 13:22:00 +02:00
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
2015-08-30 13:22:00 +02:00
{
2021-02-14 20:34:53 +01:00
$this->configureRateLimiting();
$this->routes(function () {
Route::model('userId', User::class);
Route::bind('userSlug', function ($value) {
return User::where('slug', $value)->first();
});
Route::prefix('api')
->middleware('api')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
2021-02-14 20:34:53 +01:00
Route::middleware('web')
->namespace($this->namespace)
->group(base_path('routes/web.php'));
});
2015-08-30 13:22:00 +02:00
}
/**
2021-02-14 20:34:53 +01:00
* Configure the rate limiters for the application.
2015-08-30 13:22:00 +02:00
*
* @return void
*/
2021-02-14 20:34:53 +01:00
protected function configureRateLimiting()
2015-08-30 13:22:00 +02:00
{
2021-02-14 20:34:53 +01:00
RateLimiter::for('api', function (Request $request) {
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip());
2015-08-30 13:22:00 +02:00
});
}
}