Last active
May 10, 2017 05:33
-
-
Save recca0120/88ed771639cd740ff45bb08e5824aa52 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Middleware; | |
use Closure; | |
use Exception; | |
use Ramsey\Uuid\Uuid; | |
class RequestId | |
{ | |
/** | |
* Handle an incoming request. | |
* | |
* @param \Illuminate\Http\Request $request | |
* @param \Closure $next | |
* | |
* @return mixed | |
*/ | |
public function handle($request, Closure $next) | |
{ | |
$request->attributes['requestId'] = Uuid::uuid4()->toString(); | |
try { | |
$response = $next($request); | |
$response->header('requestId', $request->get('requestId')); | |
$this->after($request); | |
return $response; | |
} catch (Exception $e) { | |
$this->after($request); | |
throw $e; | |
} | |
} | |
protected function after($request) | |
{ | |
// do something | |
$request->get('requestId'); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment