2018-10-04 20:10:43 +03:00
|
|
|
<?php
|
2019-05-11 13:32:07 +10:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
|
*
|
2023-01-29 09:21:40 +11:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 13:32:07 +10:00
|
|
|
*
|
2021-06-16 16:58:16 +10:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 13:32:07 +10:00
|
|
|
*/
|
2018-10-04 20:10:43 +03:00
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
|
2023-03-09 13:38:09 +11:00
|
|
|
use App\Utils\Ninja;
|
2023-01-13 12:43:38 +11:00
|
|
|
use App\Models\Scheduler;
|
2019-04-03 12:17:21 +11:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2023-03-09 13:38:09 +11:00
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
use Illuminate\Cache\RateLimiting\Limit;
|
|
|
|
|
use Illuminate\Support\Facades\RateLimiter;
|
2023-01-22 16:34:47 +11:00
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException as ModelNotFoundException;
|
2018-10-15 16:00:48 +11:00
|
|
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
2018-10-04 20:10:43 +03:00
|
|
|
|
|
|
|
|
class RouteServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
2019-04-03 12:17:21 +11:00
|
|
|
use MakesHash;
|
2022-06-21 09:57:17 +00:00
|
|
|
|
2023-03-09 23:29:44 +11:00
|
|
|
private int $default_rate_limit = 5000;
|
2018-10-04 20:10:43 +03:00
|
|
|
/**
|
|
|
|
|
* Define your route model bindings, pattern filters, etc.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function boot()
|
|
|
|
|
{
|
|
|
|
|
parent::boot();
|
2023-01-13 12:43:38 +11:00
|
|
|
|
|
|
|
|
Route::bind('task_scheduler', function ($value) {
|
|
|
|
|
if (is_numeric($value)) {
|
|
|
|
|
throw new ModelNotFoundException("Record with value {$value} not found");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Scheduler::query()
|
|
|
|
|
->withTrashed()
|
2023-01-22 16:34:47 +11:00
|
|
|
->company()
|
2023-01-13 12:43:38 +11:00
|
|
|
->where('id', $this->decodePrimaryKey($value))->firstOrFail();
|
|
|
|
|
});
|
2023-03-09 13:38:09 +11:00
|
|
|
|
|
|
|
|
RateLimiter::for('login', function () {
|
|
|
|
|
|
2023-03-09 23:29:44 +11:00
|
|
|
if (Ninja::isSelfHost()) {
|
|
|
|
|
return Limit::none();
|
|
|
|
|
}else {
|
2023-03-09 13:38:09 +11:00
|
|
|
return Limit::perMinute(50);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
RateLimiter::for('api', function () {
|
|
|
|
|
|
2023-03-09 23:29:44 +11:00
|
|
|
if (Ninja::isSelfHost()) {
|
|
|
|
|
return Limit::none();
|
|
|
|
|
}else {
|
2023-03-09 13:38:09 +11:00
|
|
|
return Limit::perMinute(300);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
RateLimiter::for('refresh', function () {
|
|
|
|
|
|
2023-03-09 23:29:44 +11:00
|
|
|
if (Ninja::isSelfHost()) {
|
|
|
|
|
return Limit::none();
|
|
|
|
|
}else {
|
2023-03-09 13:38:09 +11:00
|
|
|
return Limit::perMinute(200);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
2018-10-04 20:10:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Define the routes for the application.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function map()
|
|
|
|
|
{
|
|
|
|
|
$this->mapApiRoutes();
|
|
|
|
|
|
|
|
|
|
$this->mapWebRoutes();
|
|
|
|
|
|
2019-07-08 10:08:57 +10:00
|
|
|
$this->mapContactApiRoutes();
|
2019-07-16 12:38:11 +10:00
|
|
|
|
2022-06-13 19:59:24 +10:00
|
|
|
$this->mapVendorsApiRoutes();
|
|
|
|
|
|
2019-07-16 12:38:11 +10:00
|
|
|
$this->mapClientApiRoutes();
|
2020-07-28 21:19:51 +10:00
|
|
|
|
|
|
|
|
$this->mapShopApiRoutes();
|
2018-10-04 20:10:43 +03: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 17:36:49 +11:00
|
|
|
Route::prefix('')
|
2018-10-04 20:10:43 +03:00
|
|
|
->middleware('api')
|
|
|
|
|
->group(base_path('routes/api.php'));
|
|
|
|
|
}
|
2020-09-06 19:38:10 +10:00
|
|
|
|
2019-12-31 08:59:12 +11:00
|
|
|
/**
|
2020-09-06 19:38:10 +10:00
|
|
|
* Define the "api" routes for the application.
|
|
|
|
|
*
|
|
|
|
|
* These routes are typically stateless.
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
2019-07-08 10:08:57 +10:00
|
|
|
protected function mapContactApiRoutes()
|
|
|
|
|
{
|
|
|
|
|
Route::prefix('')
|
|
|
|
|
->middleware('contact')
|
|
|
|
|
->group(base_path('routes/contact.php'));
|
|
|
|
|
}
|
2019-07-16 12:38:11 +10:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 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 21:19:51 +10:00
|
|
|
|
|
|
|
|
protected function mapShopApiRoutes()
|
|
|
|
|
{
|
2020-09-06 19:38:10 +10:00
|
|
|
Route::prefix('')
|
2020-07-28 21:19:51 +10:00
|
|
|
->middleware('shop')
|
2020-09-06 19:38:10 +10:00
|
|
|
->group(base_path('routes/shop.php'));
|
2020-07-28 21:19:51 +10:00
|
|
|
}
|
2022-06-05 01:44:12 +02:00
|
|
|
|
|
|
|
|
protected function mapVendorsApiRoutes()
|
|
|
|
|
{
|
|
|
|
|
Route::prefix('')
|
2022-06-13 19:59:24 +10: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 20:10:43 +03:00
|
|
|
}
|