Laravel middleware to augment route model binding for security

144 Views Asked by At

Can anyone think of a slick way to middleware or ioc the 'if' statement so that we can use route-model-binding a bit more securely?

Route::get('/channel-groups/{channelGroup}/channels/{channel}', [
    'as'   => 'channel-groups',
    'uses' => function(\App\Distribution\UserConfigurations\ChannelGroup $channelGroup, \App\Distribution\UserConfigurations\Channel $channel){

        //@todo: middleware
        if(!$channelGroup->Channels->contains($channel)){
            return abort(401, 'Unauthorized');
        }

        return $channel;
    }
]);
0

There are 0 best solutions below