48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Solarium\Client;
|
|
use Solarium\Core\Client\Adapter\Curl;
|
|
use Symfony\Component\EventDispatcher\EventDispatcher;
|
|
|
|
class SolariumServiceProvider extends ServiceProvider
|
|
{
|
|
protected $defer = true;
|
|
|
|
|
|
/**
|
|
* Register the application services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->app->bind(Client::class, function ($app) {
|
|
|
|
$adapter = new Curl();
|
|
$dispatcher = new EventDispatcher();
|
|
// $config = config('solarium');
|
|
$config = array(
|
|
'endpoint' => array(
|
|
'localhost' => array(
|
|
'host' => 'repository.geologie.ac.at',
|
|
'port' => '8983',
|
|
'path' => '/solr/',
|
|
'core' => 'rdr_data'
|
|
)
|
|
)
|
|
);
|
|
//return new Client($config);
|
|
return new Client($adapter, $dispatcher, $config);
|
|
//return new Client($app['config']['solarium']);
|
|
});
|
|
}
|
|
|
|
public function provides()
|
|
{
|
|
return [Client::class];
|
|
}
|
|
}
|