|
1
|
|
|
<?php declare(strict_types = 1); |
|
2
|
|
|
|
|
3
|
|
|
namespace Suilven\FreeTextSearch\Task; |
|
4
|
|
|
|
|
5
|
|
|
use League\CLImate\CLImate; |
|
6
|
|
|
use SilverStripe\Control\Director; |
|
7
|
|
|
use SilverStripe\Dev\BuildTask; |
|
8
|
|
|
use SilverStripe\Security\Permission; |
|
9
|
|
|
use SilverStripe\Security\Security; |
|
10
|
|
|
use Suilven\FreeTextSearch\Factory\IndexCreatorFactory; |
|
11
|
|
|
|
|
12
|
|
|
class CreateIndexTask extends BuildTask |
|
13
|
|
|
{ |
|
14
|
|
|
|
|
15
|
|
|
protected $title = 'Create Index'; |
|
16
|
|
|
|
|
17
|
|
|
protected $description = 'Create an index of a given name'; |
|
18
|
|
|
|
|
19
|
|
|
protected $enabled = true; |
|
20
|
|
|
|
|
21
|
|
|
/** @var string */ |
|
22
|
|
|
private static $segment = 'create-index'; |
|
|
|
|
|
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Implement this method in the task subclass to |
|
26
|
|
|
* execute via the TaskRunner |
|
27
|
|
|
* |
|
28
|
|
|
* @phpcsSuppress SlevomatCodingStandard.TypeHints.ParameterTypeHint.MissingNativeTypeHint |
|
29
|
|
|
* @phpcsSuppress SlevomatCodingStandard.TypeHints.ReturnTypeHint.MissingAnyTypeHint |
|
30
|
|
|
* @param \SilverStripe\Control\HTTPRequest $request |
|
31
|
|
|
* @return \SilverStripe\Control\HTTPResponse|void |
|
32
|
|
|
*/ |
|
33
|
|
|
public function run($request) |
|
34
|
|
|
{ |
|
35
|
|
|
$climate = new CLImate(); |
|
36
|
|
|
|
|
37
|
|
|
// check this script is being run by admin |
|
38
|
|
|
// @phpstan-ignore-next-line |
|
39
|
|
|
$canAccess = (Director::isDev() || Director::is_cli() || Permission::check("ADMIN")); |
|
40
|
|
|
|
|
41
|
|
|
// for testing purposes |
|
42
|
|
|
$fail = $request->getVar('fail'); |
|
43
|
|
|
if (!\is_null($fail)) { |
|
44
|
|
|
$canAccess = false; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
if (!$canAccess) { |
|
48
|
|
|
return Security::permissionFailure(null, 'Permission denied'); |
|
|
|
|
|
|
49
|
|
|
} |
|
50
|
|
|
|
|
51
|
|
|
$name = $request->getVar('index'); |
|
52
|
|
|
$climate->info('NAME: ' . $name); |
|
53
|
|
|
|
|
54
|
|
|
$factory = new IndexCreatorFactory(); |
|
55
|
|
|
$indexCreator = $factory->getIndexCreator(); |
|
56
|
|
|
|
|
57
|
|
|
$indexCreator->createIndex($name); |
|
|
|
|
|
|
58
|
|
|
} |
|
59
|
|
|
} |
|
60
|
|
|
|