for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\FullTextSearch\Solr\Stores;
use SilverStripe\FullTextSearch\Solr\Solr;
use SilverStripe\FullTextSearch\Solr\Stores\SolrConfigStore;
class SolrConfigStore_Post implements SolrConfigStore
{
/**
* @var string
*/
protected $remote = '';
protected $url = '';
* @param array $config
public function __construct($config)
$options = Solr::solr_options();
$this->url = implode('', [
'http://',
isset($config['auth']) ? $config['auth'] . '@' : '',
$options['host'] . ':' . $options['port'],
$config['path']
]);
$this->remote = $config['remotepath'];
}
* @param string $index
* @param string $file
* @return void
public function uploadFile($index, $file)
$this->uploadString($index, basename($file), file_get_contents($file));
*
* @param string $filename
* @param string $string
public function uploadString($index, $filename, $string)
$targetDir = "{$this->url}/config/$index";
file_get_contents($targetDir . '/' . $filename, false, stream_context_create([
'http' => [
'method' => 'POST',
'header' => 'Content-type: application/octet-stream',
'content' => (string) $string
]
]));
* @return string
public function instanceDir($index)
return $this->remote ? "{$this->remote}/$index" : $index;