Skip to content
This repository was archived by the owner on Jan 18, 2018. It is now read-only.

Commit 35bd453

Browse files
Upgraded app
1 parent 7c2d7f9 commit 35bd453

File tree

9 files changed

+1452
-627
lines changed

9 files changed

+1452
-627
lines changed

.env.example

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ APP_ENV=production
22
APP_DEBUG=false
33
APP_KEY=SomeRandomKey
44

5-
CACHE_DRIVER=array
5+
CACHE_DRIVER=file
66
SESSION_DRIVER=array
77
QUEUE_DRIVER=sync
88

9+
BUGSNAG_API_KEY=key
910
CAT_GEN=path
1011
DOGE_GEN=path

app/AppServiceProvider.php

+24
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@
1313
use GuzzleHttp\HandlerStack;
1414
use GuzzleHttp\Middleware;
1515
use Illuminate\Contracts\Container\Container;
16+
use Illuminate\Contracts\Logging\Log;
1617
use Illuminate\Support\ServiceProvider;
1718
use Psr\Http\Message\RequestInterface;
1819
use Psr\Http\Message\ResponseInterface;
20+
use Psr\Log\LoggerInterface;
1921

2022
/**
2123
* This is the app service provider.
@@ -30,6 +32,20 @@ class AppServiceProvider extends ServiceProvider
3032
* @return void
3133
*/
3234
public function register()
35+
{
36+
$this->app->alias('bugsnag.logger', Log::class);
37+
$this->app->alias('bugsnag.logger', LoggerInterface::class);
38+
39+
$this->registerGenerators();
40+
$this->registerRoutes();
41+
}
42+
43+
/**
44+
* Register the generators.
45+
*
46+
* @return void
47+
*/
48+
public function registerGenerators()
3349
{
3450
$this->app->singleton(CatGenerator::class, function (Container $app) {
3551
$path = $app->config->get('services.meme.cat');
@@ -58,7 +74,15 @@ public function register()
5874

5975
return new DogeGenerator($client, $app->basePath('public/result'));
6076
});
77+
}
6178

79+
/**
80+
* Register the routes.
81+
*
82+
* @return void
83+
*/
84+
public function registerRoutes()
85+
{
6286
$this->app->get('/', 'App\Controllers\MainController@show');
6387

6488
$this->app->post('cat', 'App\Controllers\MainController@cat');

app/Kernel.php

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App;
6+
7+
use Bugsnag\BugsnagLaravel\Commands\DeployCommand;
8+
use Laravel\Lumen\Console\Kernel as ConsoleKernel;
9+
10+
/**
11+
* This is the app console kernel.
12+
*
13+
* @author Graham Campbell <[email protected]>
14+
*/
15+
class Kernel extends ConsoleKernel
16+
{
17+
/**
18+
* The commands to register.
19+
*
20+
* @var string[]
21+
*/
22+
protected $commands = [DeployCommand::class];
23+
}

app/Middleware/GlobalRateLimiter.php

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace App\Middleware;
6+
7+
use AltThree\Throttle\ThrottlingMiddleware;
8+
use Closure;
9+
use Illuminate\Http\Request;
10+
11+
/**
12+
* This is the global rate limiter middleware.
13+
*
14+
* @author Graham Campbell <[email protected]>
15+
*/
16+
class GlobalRateLimiter extends ThrottlingMiddleware
17+
{
18+
/**
19+
* Handle an incoming request.
20+
*
21+
* @param \Illuminate\Http\Request $request
22+
* @param \Closure $next
23+
* @param int $limit
24+
* @param int $decay
25+
* @param bool $global
26+
* @param bool $headers
27+
*
28+
* @throws \Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException
29+
*
30+
* @return mixed
31+
*/
32+
public function handle(Request $request, Closure $next, $limit = 120, $decay = 1, $global = true, $headers = true)
33+
{
34+
return parent::handle($request, $next, $limit, $decay, $global, $headers);
35+
}
36+
}

bootstrap/app.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@
1616
$app->configure('services');
1717

1818
$app->singleton(Illuminate\Contracts\Debug\ExceptionHandler::class, GrahamCampbell\Exceptions\LumenExceptionHandler::class);
19-
$app->singleton(Illuminate\Contracts\Console\Kernel::class, Laravel\Lumen\Console\Kernel::class);
19+
$app->singleton(Illuminate\Contracts\Console\Kernel::class, App\Kernel::class);
2020

21+
$app->register(Bugsnag\BugsnagLaravel\BugsnagServiceProvider::class);
2122
$app->register(GrahamCampbell\Exceptions\ExceptionsServiceProvider::class);
2223
$app->register(Illuminate\Redis\RedisServiceProvider::class);
24+
$app->register(Laravel\Tinker\TinkerServiceProvider::class);
2325

2426
$app->register(App\AppServiceProvider::class);
2527

28+
$app->middleware([App\Middleware\GlobalRateLimiter::class]);
2629
$app->middleware([App\Middleware\AccessControl::class]);
2730

2831
return $app;

composer.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,22 @@
88
}
99
],
1010
"require": {
11-
"php": "^7.0.0",
11+
"php": "^7.1",
12+
"alt-three/throttle": "^1.2",
13+
"bugsnag/bugsnag-laravel": "^2.4",
1214
"graham-campbell/exceptions": "^9.3",
13-
"guzzlehttp/guzzle": "^6.2.2",
14-
"illuminate/redis": "~5.2.0",
15-
"laravel/lumen-framework": "~5.2.7",
15+
"guzzlehttp/guzzle": "6.2.3",
16+
"guzzlehttp/psr7": "1.4.2",
17+
"illuminate/redis": "~5.4.0",
18+
"laravel/lumen-framework": "~5.4.3",
19+
"laravel/tinker": "^1.0",
1620
"symfony/process": "^3.0",
1721
"vlucas/phpdotenv": "^2.4"
1822
},
1923
"require-dev": {
2024
"fzaninotto/faker": "^1.6",
2125
"graham-campbell/testbench-core": "^1.1",
22-
"phpunit/phpunit": "^5.7"
26+
"phpunit/phpunit": "^6.1"
2327
},
2428
"autoload": {
2529
"psr-4": {
@@ -33,7 +37,7 @@
3337
},
3438
"config": {
3539
"platform": {
36-
"php": "7.0.0"
40+
"php": "7.1.0"
3741
},
3842
"preferred-install": "dist"
3943
},

0 commit comments

Comments
 (0)