|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace App\Providers; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Cache\RateLimiting\Limit; |
|
6
|
|
|
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; |
|
7
|
|
|
use Illuminate\Http\Request; |
|
8
|
|
|
use Illuminate\Support\Facades\RateLimiter; |
|
9
|
|
|
use Illuminate\Support\Facades\Route; |
|
10
|
|
|
|
|
11
|
|
|
class RouteServiceProvider extends ServiceProvider |
|
12
|
|
|
{ |
|
13
|
|
|
/** |
|
14
|
|
|
* The path to the "home" route for your application. |
|
15
|
|
|
* |
|
16
|
|
|
* This is used by Laravel authentication to redirect users after login. |
|
17
|
|
|
* |
|
18
|
|
|
* @var string |
|
19
|
|
|
*/ |
|
20
|
|
|
public const HOME = '/'; |
|
21
|
|
|
|
|
22
|
|
|
/** |
|
23
|
|
|
* The controller namespace for the application. |
|
24
|
|
|
* |
|
25
|
|
|
* When present, controller route declarations will automatically be prefixed with this namespace. |
|
26
|
|
|
* |
|
27
|
|
|
* @var string|null |
|
28
|
|
|
*/ |
|
29
|
|
|
// protected $namespace = 'App\\Http\\Controllers'; |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* Define your route model bindings, pattern filters, etc. |
|
33
|
|
|
* |
|
34
|
|
|
* @return void |
|
35
|
|
|
*/ |
|
36
|
1 |
|
public function boot() |
|
37
|
|
|
{ |
|
38
|
1 |
|
$this->configureRateLimiting(); |
|
39
|
|
|
|
|
40
|
1 |
|
$this->routes(function () { |
|
41
|
1 |
|
Route::prefix('api') |
|
42
|
1 |
|
->middleware('api') |
|
43
|
1 |
|
->namespace($this->namespace) |
|
44
|
1 |
|
->group(base_path('routes/api.php')); |
|
45
|
|
|
|
|
46
|
1 |
|
Route::middleware('web') |
|
47
|
1 |
|
->namespace($this->namespace) |
|
48
|
1 |
|
->group(base_path('routes/web.php')); |
|
49
|
|
|
|
|
50
|
1 |
|
Route::match(['get', 'post'], '/botman', function () { |
|
51
|
|
|
/** @var \BotMan\BotMan\BotMan $botman */ |
|
52
|
|
|
$botman = resolve('botman'); |
|
53
|
|
|
|
|
54
|
|
|
$botman->listen(); |
|
55
|
1 |
|
})->middleware('web_without_csrf'); |
|
56
|
1 |
|
}); |
|
57
|
|
|
|
|
58
|
1 |
|
$this->mapBotManCommands(); |
|
59
|
|
|
|
|
60
|
1 |
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* Configure the rate limiters for the application. |
|
64
|
|
|
* |
|
65
|
|
|
* @return void |
|
66
|
|
|
*/ |
|
67
|
1 |
|
protected function configureRateLimiting() |
|
68
|
|
|
{ |
|
69
|
1 |
|
RateLimiter::for('api', function (Request $request) { |
|
70
|
|
|
return Limit::perMinute(60)->by(optional($request->user())->id ?: $request->ip()); |
|
71
|
1 |
|
}); |
|
72
|
1 |
|
} |
|
73
|
|
|
|
|
74
|
|
|
/** |
|
75
|
|
|
* Defines the BotMan "hears" commands. |
|
76
|
|
|
* |
|
77
|
|
|
* Note: Please don't remove this below file, as it will be used also on the artisan command `botman:tinker` |
|
78
|
|
|
* |
|
79
|
|
|
* @return void |
|
80
|
|
|
*/ |
|
81
|
1 |
|
protected function mapBotManCommands() |
|
82
|
|
|
{ |
|
83
|
1 |
|
require base_path('routes/botman.php'); |
|
84
|
1 |
|
} |
|
85
|
|
|
} |
|
86
|
|
|
|