<?php
namespace Mews\Captcha;
use Illuminate\Support\ServiceProvider;
* Class CaptchaServiceProvider
* @package Mews\Captcha
*/
class CaptchaServiceProvider extends ServiceProvider {
* Boot the service provider.
*
* @return null
*/
public function boot()
{
$this->publishes([
__DIR__.'/../config/captcha.php' => config_path('captcha.php')
], 'config');
if (strpos($this->app->version(), 'Lumen') !== false) {
$this->app->get('captcha[/api/{config}]', 'Mews\Captcha\LumenCaptchaController@getCaptchaApi');
$this->app->get('captcha[/{config}]', 'Mews\Captcha\LumenCaptchaController@getCaptcha');
} else {
if ((double) $this->app->version() >= 5.2) {
$this->app['router']->get('captcha/api/{config?}', '\Mews\Captcha\CaptchaController@getCaptchaApi')->middleware('web');
$this->app['router']->get('captcha/{config?}', '\Mews\Captcha\CaptchaController@getCaptcha')->middleware('web');
} else {
$this->app['router']->get('captcha/api/{config?}', '\Mews\Captcha\CaptchaController@getCaptchaApi');
$this->app['router']->get('captcha/{config?}', '\Mews\Captcha\CaptchaController@getCaptcha');
}
}
*/
$this->app['validator']->extend('captcha', function($attribute, $value, $parameters)
{
return captcha_check($value);
});
$this->app['validator']->extend('captcha_api', function($attribute, $value, $parameters)
{
return captcha_api_check($value, $parameters[0]);
});
}
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->mergeConfigFrom(
__DIR__.'/../config/captcha.php', 'captcha'
);
$this->app->bind('captcha', function($app)
{
return new Captcha(
$app['Illuminate\Filesystem\Filesystem'],
$app['Illuminate\Config\Repository'],
$app['Intervention\Image\ImageManager'],
$app['Illuminate\Session\Store'],
$app['Illuminate\Hashing\BcryptHasher'],
$app['Illuminate\Support\Str']
);
});
}
}