Started working on API timezone support

This commit is contained in:
James Brooks 2015-10-07 13:48:14 +01:00
parent 32063510fb
commit 55429283c0
3 changed files with 37 additions and 1 deletions

View File

@ -46,6 +46,7 @@ class Kernel extends HttpKernel
'csrf' => 'Illuminate\Foundation\Http\Middleware\VerifyCsrfToken',
'guest' => 'CachetHQ\Cachet\Http\Middleware\RedirectIfAuthenticated',
'localize' => 'CachetHQ\Cachet\Http\Middleware\Localize',
'timezone' => 'CachetHQ\Cachet\Http\Middleware\Timezone',
'throttling' => 'GrahamCampbell\Throttle\Http\Middleware\ThrottleMiddleware',
];
}

View File

@ -0,0 +1,35 @@
<?php
/*
* This file is part of Cachet.
*
* (c) Alt Three Services Limited
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CachetHQ\Cachet\Http\Middleware;
use Closure;
class Timezone
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param string $type
*
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($tz = $request->header('Time-Zone')) {
app('config')->set('app.timezone', $tz);
}
return $next($request);
}
}

View File

@ -30,7 +30,7 @@ class ApiRoutes
$router->group([
'namespace' => 'Api',
'prefix' => 'api/v1',
'middleware' => 'accept:application/json',
'middleware' => ['accept:application/json', 'timezone'],
], function ($router) {
// General
$router->get('ping', 'GeneralController@ping');