Skip to content

Instantly share code, notes, and snippets.

@martinbean
Created July 8, 2016 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinbean/b1f9e8e6f6cdcb8e7f545911f94947e8 to your computer and use it in GitHub Desktop.
Save martinbean/b1f9e8e6f6cdcb8e7f545911f94947e8 to your computer and use it in GitHub Desktop.
Laravel 5.x middleware to verify an SNS request came from Amazon.
<?php
namespace App\Http\Middleware;
use Aws\Sns\Message;
use Aws\Sns\MessageValidator;
use Closure;
class VerifySnsMessageCameFromAmazon
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
(new MessageValidator)->validate(Message::createFromRawPostData());
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment