1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Providers/RouteServiceProvider.php

188 lines
4.8 KiB
PHP
Raw Normal View History

2018-10-04 19:10:43 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2018-10-04 19:10:43 +02:00
namespace App\Providers;
2023-10-26 04:57:44 +02:00
use App\Http\Middleware\ThrottleRequestsWithPredis;
2023-03-20 10:17:04 +01:00
use App\Models\Scheduler;
2023-10-26 04:57:44 +02:00
use App\Utils\Ninja;
2019-04-03 03:17:21 +02:00
use App\Utils\Traits\MakesHash;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Database\Eloquent\ModelNotFoundException as ModelNotFoundException;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
2023-10-26 04:57:44 +02:00
use Illuminate\Http\Request;
use Illuminate\Routing\Middleware\ThrottleRequests;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;
2018-10-04 19:10:43 +02:00
class RouteServiceProvider extends ServiceProvider
{
2019-04-03 03:17:21 +02:00
use MakesHash;
2018-10-04 19:10:43 +02:00
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
parent::boot();
2024-01-14 05:05:00 +01:00
2023-10-26 04:57:44 +02:00
if (Ninja::isHosted() && !config('ninja.testvars.travis')) {
2023-03-20 10:24:16 +01:00
app('router')->aliasMiddleware('throttle', ThrottleRequestsWithPredis::class);
2023-03-20 10:17:04 +01:00
} else {
app('router')->aliasMiddleware('throttle', ThrottleRequests::class);
}
2023-01-13 02:43:38 +01:00
Route::bind('task_scheduler', function ($value) {
if (is_numeric($value)) {
throw new ModelNotFoundException("Record with value {$value} not found");
}
return Scheduler::query()
->withTrashed()
->company()
2023-01-13 02:43:38 +01:00
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
});
2023-03-20 10:17:04 +01:00
RateLimiter::for('login', function (Request $request) {
2023-03-09 13:29:44 +01:00
if (Ninja::isSelfHost()) {
return Limit::none();
2023-03-18 08:24:56 +01:00
} else {
return Limit::perMinute(30)->by($request->ip());
}
});
2023-03-20 10:17:04 +01:00
RateLimiter::for('api', function (Request $request) {
2023-03-09 13:29:44 +01:00
if (Ninja::isSelfHost()) {
return Limit::none();
2023-03-18 08:24:56 +01:00
} else {
2023-03-20 10:17:04 +01:00
return Limit::perMinute(300)->by($request->ip());
}
});
2023-03-20 10:17:04 +01:00
RateLimiter::for('refresh', function (Request $request) {
2023-03-09 13:29:44 +01:00
if (Ninja::isSelfHost()) {
return Limit::none();
2023-03-18 08:24:56 +01:00
} else {
2023-03-20 10:17:04 +01:00
return Limit::perMinute(200)->by($request->ip());
}
});
2023-03-20 10:17:04 +01:00
2023-05-17 01:55:43 +02:00
RateLimiter::for('404', function (Request $request) {
if (Ninja::isSelfHost()) {
return Limit::none();
} else {
return Limit::perMinute(25)->by($request->ip());
}
});
2023-06-10 01:20:59 +02:00
RateLimiter::for('honeypot', function (Request $request) {
return Limit::perMinute(2)->by($request->ip());
});
RateLimiter::for('portal', function (Request $request) {
return Limit::perMinute(15)->by($request->ip());
});
2018-10-04 19:10:43 +02:00
}
/**
* Define the routes for the application.
*
* @return void
*/
public function map()
{
$this->mapApiRoutes();
$this->mapWebRoutes();
2019-07-08 02:08:57 +02:00
$this->mapContactApiRoutes();
2022-06-13 11:59:24 +02:00
$this->mapVendorsApiRoutes();
$this->mapClientApiRoutes();
2020-07-28 13:19:51 +02:00
$this->mapShopApiRoutes();
2018-10-04 19:10:43 +02:00
}
/**
* Define the "web" routes for the application.
*
* These routes all receive session state, CSRF protection, etc.
*
* @return void
*/
protected function mapWebRoutes()
{
Route::middleware('web')
->group(base_path('routes/web.php'));
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapApiRoutes()
{
2019-04-02 08:36:49 +02:00
Route::prefix('')
2018-10-04 19:10:43 +02:00
->middleware('api')
->group(base_path('routes/api.php'));
}
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
2019-07-08 02:08:57 +02:00
protected function mapContactApiRoutes()
{
Route::prefix('')
->middleware('contact')
->group(base_path('routes/contact.php'));
}
/**
* Define the "client" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapClientApiRoutes()
{
Route::prefix('')
->middleware('client')
->group(base_path('routes/client.php'));
}
2020-07-28 13:19:51 +02:00
protected function mapShopApiRoutes()
{
Route::prefix('')
2020-07-28 13:19:51 +02:00
->middleware('shop')
->group(base_path('routes/shop.php'));
2020-07-28 13:19:51 +02:00
}
2022-06-05 01:44:12 +02:00
protected function mapVendorsApiRoutes()
{
Route::prefix('')
2022-06-13 11:59:24 +02:00
->middleware('client')
2022-06-12 02:16:14 +02:00
->group(base_path('routes/vendor.php'));
2022-06-05 01:44:12 +02:00
}
2018-10-04 19:10:43 +02:00
}