aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Sql/Internal/Insert.php
blob: 1bdd06f09c1cd35a7f53c950dc0fe065424335e5 (plain)
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
<?php

declare(strict_types=1);

namespace Nsfisis\Albatross\Sql\Internal;

use Nsfisis\Albatross\Exceptions\InvalidSqlException;
use Nsfisis\Albatross\Sql\QueryBuilder;

final class Insert
{
    /**
     * @var ?array<string, string|int|Select> $values
     */
    private ?array $values;

    /**
     * @internal
     */
    public function __construct(
        private readonly QueryBuilder $sql,
        private readonly string $table,
    ) {
    }

    /**
     * @param array<string, string|int|Select> $values
     */
    public function values(array $values): self
    {
        $this->values = $values;
        return $this;
    }

    /**
     * @return positive-int
     */
    public function execute(): int
    {
        return $this->sql->_executeInsert($this);
    }

    /**
     * @internal
     */
    public function _getTable(): string
    {
        return $this->table;
    }

    /**
     * @internal
     * @return array<string, string|int|Select>
     */
    public function _getValues(): array
    {
        if (!isset($this->values)) {
            throw new InvalidSqlException('INSERT: $values must be set before calling execute()');
        }
        return $this->values;
    }
}