1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Firesphere\ElasticSearch\Tasks; |
4
|
|
|
|
5
|
|
|
use Elastic\Elasticsearch\Exception\ClientResponseException; |
6
|
|
|
use Elastic\Elasticsearch\Exception\MissingParameterException; |
7
|
|
|
use Elastic\Elasticsearch\Exception\ServerResponseException; |
8
|
|
|
use Elastic\Elasticsearch\Response\Elasticsearch; |
9
|
|
|
use Exception; |
10
|
|
|
use Firesphere\ElasticSearch\Helpers\Statics; |
11
|
|
|
use Firesphere\ElasticSearch\Indexes\ElasticIndex; |
12
|
|
|
use Firesphere\ElasticSearch\Services\ElasticCoreService; |
13
|
|
|
use Firesphere\SearchBackend\Helpers\FieldResolver; |
14
|
|
|
use Firesphere\SearchBackend\Traits\LoggerTrait; |
15
|
|
|
use Psr\Container\NotFoundExceptionInterface; |
16
|
|
|
use SilverStripe\Control\HTTPRequest; |
17
|
|
|
use SilverStripe\Core\ClassInfo; |
18
|
|
|
use SilverStripe\Core\Injector\Injector; |
19
|
|
|
use SilverStripe\Dev\BuildTask; |
20
|
|
|
use SilverStripe\ORM\DB; |
21
|
|
|
|
22
|
|
|
class ElasticConfigureTask extends BuildTask |
23
|
|
|
{ |
24
|
|
|
use LoggerTrait; |
25
|
|
|
|
26
|
|
|
/** |
27
|
|
|
* @var string URLSegment |
28
|
|
|
*/ |
29
|
|
|
private static $segment = 'ElasticConfigureTask'; |
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* @var string Title |
32
|
|
|
*/ |
33
|
|
|
protected $title = 'Configure Elastic cores'; |
34
|
|
|
/** |
35
|
|
|
* @var string Description |
36
|
|
|
*/ |
37
|
|
|
protected $description = 'Create or reload a Elastic Core by adding or reloading a configuration.'; |
38
|
|
|
/** |
39
|
|
|
* @var ElasticCoreService $service |
40
|
|
|
*/ |
41
|
|
|
protected $service; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* @throws NotFoundExceptionInterface |
45
|
|
|
*/ |
46
|
|
|
public function __construct() |
47
|
|
|
{ |
48
|
|
|
parent::__construct(); |
49
|
|
|
$this->service = Injector::inst()->get(ElasticCoreService::class); |
50
|
|
|
} |
51
|
|
|
|
52
|
|
|
/** |
53
|
|
|
* Run the config |
54
|
|
|
* |
55
|
|
|
* @param HTTPRequest $request |
56
|
|
|
* @return void|array |
57
|
|
|
* @throws NotFoundExceptionInterface |
58
|
|
|
*/ |
59
|
|
|
public function run($request) |
60
|
|
|
{ |
61
|
|
|
$this->extend('onBeforeElasticConfigureTask', $request); |
62
|
|
|
|
63
|
|
|
$indexes = $this->service->getValidIndexes(); |
64
|
|
|
|
65
|
|
|
$result = []; |
66
|
|
|
|
67
|
|
|
foreach ($indexes as $index) { |
68
|
|
|
try { |
69
|
|
|
/** @var ElasticIndex $instance */ |
70
|
|
|
$instance = Injector::inst()->get($index, false); |
71
|
|
|
|
72
|
|
|
if ($request->getVar('clear') && $instance->indexExists()) { |
73
|
|
|
$this->getLogger()->info(sprintf('Clearing index %s', $instance->getIndexName())); |
74
|
|
|
$deleteResult = $this->service->getClient()->indices()->delete(['index' => $instance->getIndexName()]); |
75
|
|
|
$result[] = $deleteResult->asBool(); |
|
|
|
|
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
$configResult = $this->configureIndex($instance); |
79
|
|
|
$result[] = $configResult->asBool(); |
80
|
|
|
} catch (Exception $error) { |
81
|
|
|
// @codeCoverageIgnoreStart |
82
|
|
|
$this->getLogger()->error(sprintf('Core loading failed for %s', $index)); |
83
|
|
|
$this->getLogger()->error($error->getMessage()); // in browser mode, it might not always show |
84
|
|
|
// Continue to the next index |
85
|
|
|
continue; |
86
|
|
|
// @codeCoverageIgnoreEnd |
87
|
|
|
} |
88
|
|
|
$this->extend('onAfterConfigureIndex', $index); |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
$this->extend('onAfterElasticConfigureTask'); |
92
|
|
|
|
93
|
|
|
if ($request->getVar('istest')) { |
94
|
|
|
return $result; |
|
|
|
|
95
|
|
|
} |
96
|
|
|
} |
97
|
|
|
|
98
|
|
|
/** |
99
|
|
|
* Update/create a store |
100
|
|
|
* @param ElasticIndex $instance |
101
|
|
|
* @return Elasticsearch |
102
|
|
|
* @throws ClientResponseException |
103
|
|
|
* @throws MissingParameterException |
104
|
|
|
* @throws ServerResponseException |
105
|
|
|
* @throws NotFoundExceptionInterface |
106
|
|
|
*/ |
107
|
|
|
protected function configureIndex($instance): Elasticsearch |
108
|
|
|
{ |
109
|
|
|
$indexName = $instance->getIndexName(); |
110
|
|
|
|
111
|
|
|
|
112
|
|
|
$instanceConfig = $this->createConfigForIndex($instance); |
113
|
|
|
|
114
|
|
|
$mappings = $this->convertForJSON($instanceConfig); |
115
|
|
|
|
116
|
|
|
$body['index'] = $indexName; |
|
|
|
|
117
|
|
|
$client = $this->service->getClient(); |
118
|
|
|
|
119
|
|
|
$method = $this->getMethod($instance); |
120
|
|
|
$msg = "%s index %s"; |
121
|
|
|
if ($method === 'update') { |
122
|
|
|
$body['body'] = $mappings; |
123
|
|
|
$msg = sprintf($msg, 'Updating', $indexName); |
124
|
|
|
DB::alteration_message($msg); |
125
|
|
|
$this->getLogger()->info($msg); |
126
|
|
|
return $client->indices()->putMapping($body); |
|
|
|
|
127
|
|
|
} else { |
128
|
|
|
$body['body']['mappings'] = $mappings; |
129
|
|
|
$msg = sprintf($msg, 'Creating', $indexName); |
130
|
|
|
DB::alteration_message($msg); |
131
|
|
|
$this->getLogger()->info($msg); |
132
|
|
|
return $client->indices()->create($body); |
|
|
|
|
133
|
|
|
} |
134
|
|
|
} |
135
|
|
|
|
136
|
|
|
/** |
137
|
|
|
* @param ElasticIndex $instance |
138
|
|
|
* @return array |
139
|
|
|
* @throws NotFoundExceptionInterface |
140
|
|
|
*/ |
141
|
|
|
protected function createConfigForIndex(ElasticIndex $instance) |
142
|
|
|
{ |
143
|
|
|
/** @var FieldResolver $resolver */ |
144
|
|
|
$resolver = Injector::inst()->get(FieldResolver::class); |
145
|
|
|
$resolver->setIndex($instance); |
146
|
|
|
$result = []; |
147
|
|
|
|
148
|
|
|
foreach ($instance->getFulltextFields() as $field) { |
149
|
|
|
$field = $resolver->resolveField($field); |
150
|
|
|
$result = array_merge($result, $field); |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
return $result; |
154
|
|
|
} |
155
|
|
|
|
156
|
|
|
/** |
157
|
|
|
* Take the config from the resolver and build an array that's |
158
|
|
|
* ready to be converted to JSON for Elastic. |
159
|
|
|
* |
160
|
|
|
* @param $config |
161
|
|
|
* @return array[] |
162
|
|
|
*/ |
163
|
|
|
protected function convertForJSON($config) |
164
|
|
|
{ |
165
|
|
|
$base = []; |
166
|
|
|
$typeMap = Statics::getTypeMap(); |
167
|
|
|
foreach ($config as $key => &$conf) { |
168
|
|
|
$shortClass = ClassInfo::shortName($conf['origin']); |
169
|
|
|
$dotField = str_replace('_', '.', $conf['fullfield']); |
170
|
|
|
$conf['name'] = sprintf('%s.%s', $shortClass, $dotField); |
171
|
|
|
$base[$conf['name']] = [ |
172
|
|
|
'type' => $typeMap[$conf['type'] ?? '*'] |
173
|
|
|
]; |
174
|
|
|
} |
175
|
|
|
|
176
|
|
|
return ['properties' => $base]; |
177
|
|
|
} |
178
|
|
|
|
179
|
|
|
/** |
180
|
|
|
* Get the method to use. Create or Update |
181
|
|
|
* |
182
|
|
|
* WARNING: Update often fails because Elastic does not allow changing |
183
|
|
|
* of mappings on-the-fly, it will commonly require a delete-and-recreate! |
184
|
|
|
* |
185
|
|
|
* @param ElasticIndex $index |
186
|
|
|
* @return string |
187
|
|
|
* @throws ClientResponseException |
188
|
|
|
* @throws MissingParameterException |
189
|
|
|
* @throws ServerResponseException |
190
|
|
|
*/ |
191
|
|
|
protected function getMethod(ElasticIndex $index): string |
192
|
|
|
{ |
193
|
|
|
$check = $index->indexExists(); |
194
|
|
|
|
195
|
|
|
if ($check) { |
196
|
|
|
return 'update'; |
197
|
|
|
} |
198
|
|
|
|
199
|
|
|
return 'create'; |
200
|
|
|
} |
201
|
|
|
|
202
|
|
|
/** |
203
|
|
|
* @return ElasticCoreService|mixed|object|Injector |
204
|
|
|
*/ |
205
|
|
|
public function getService(): mixed |
206
|
|
|
{ |
207
|
|
|
return $this->service; |
208
|
|
|
} |
209
|
|
|
} |
210
|
|
|
|