invoiceninja/app/Providers/RouteServiceProvider.php

122 lines
2.8 KiB
PHP
Raw Normal View History

2018-10-04 20:10:43 +03:00
<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
2018-10-04 20:10:43 +03:00
namespace App\Providers;
2019-10-05 08:58:51 +10:00
use App\Models\GroupSetting;
2019-04-24 10:22:02 +10:00
use App\Models\InvoiceInvitation;
use App\Models\QuoteInvitation;
use App\Models\RecurringInvoiceInvitation;
2019-04-03 12:17:21 +11:00
use App\Utils\Traits\MakesHash;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Support\Facades\Log;
2019-10-05 08:58:51 +10:00
use Illuminate\Support\Facades\Route;
2018-10-04 20:10:43 +03:00
class RouteServiceProvider extends ServiceProvider
{
2019-04-03 12:17:21 +11:00
use MakesHash;
2018-10-04 20:10:43 +03:00
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as the URL generator's root namespace.
*
* @var string
*/
protected $namespace = 'App\Http\Controllers';
/**
* Define your route model bindings, pattern filters, etc.
*
* @return void
*/
public function boot()
{
//
2018-10-04 20:10:43 +03:00
parent::boot();
}
/**
* 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();
$this->mapClientApiRoutes();
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')
->namespace($this->namespace)
->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')
->namespace($this->namespace)
->group(base_path('routes/api.php'));
}
2019-03-27 15:50:13 +11:00
2019-07-08 10:08:57 +10:00
/**
* Define the "api" routes for the application.
*
* These routes are typically stateless.
*
* @return void
*/
protected function mapContactApiRoutes()
{
Route::prefix('')
->middleware('contact')
->namespace($this->namespace)
->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')
->namespace($this->namespace)
->group(base_path('routes/client.php'));
}
2019-03-27 15:50:13 +11:00
2018-10-04 20:10:43 +03:00
}