forked from basis-company/tarantool-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJob.php
70 lines (60 loc) · 2.13 KB
/
Job.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
namespace Job\Database;
use Exception;
use Job\Database\Info as DatabaseInfo;
use Job\Database\Spaces as SpaceList;
use Job\Space\Info as SpaceInfo;
use Job\Space\Select as Select;
use Tarantool\Client\Client;
use Tarantool\Client\Middleware\AuthenticationMiddleware;
use Tarantool\Mapper\Mapper;
abstract class Job
{
public ?string $socket = null;
public ?string $hostname = null;
public string|int|null $port = null;
public ?string $username = null;
public ?string $password = null;
public string $code;
public array $key;
public int $iterator;
private Client $client;
private Mapper $mapper;
public function getClient(): Client
{
if (getenv('TARANTOOL_READONLY') === 'true' || getenv('TARANTOOL_READONLY') === '1') {
$changes = !in_array(get_class($this), [Info::class, Select::class, SpaceInfo::class, Spaces::class]);
if (get_class($this) == Execute::class) {
$changes = false;
$stoplist = 'drop truncate create format insert update';
foreach (explode(' ', $stoplist) as $candidate) {
if (strpos(strtolower($this->code), $candidate) !== false) {
$changes = true;
}
}
}
if ($changes) {
throw new Exception("Tarantool admin is in readonly mode");
}
}
if (!isset($this->client)) {
if (!$this->hostname || !$this->port) {
if (!$this->socket) {
throw new Exception('Invalid connection parameters');
}
}
$dsn = $this->socket ?: 'tcp://' . $this->hostname . ':' . $this->port;
$this->client = Client::fromDsn($dsn)->withMiddleware(
new AuthenticationMiddleware($this->username ?: 'guest', $this->password),
);
}
return $this->client;
}
public function getMapper(): Mapper
{
if (!isset($this->mapper)) {
$this->mapper = new Mapper($this->getClient(), arrays: true);
}
return $this->mapper;
}
}