-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStorageDb.php
135 lines (117 loc) · 3.2 KB
/
StorageDb.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php
namespace yii1tech\config;
use CDbCriteria;
use Yii;
/**
* StorageDb represents the configuration storage based on database table.
*
* Example migration for such table:
*
* ```php
* $tableName = 'app_config';
* $columns = [
* 'id' => 'string',
* 'value' => 'text',
* 'PRIMARY KEY(id)',
* ];
* $this->createTable($tableName, $columns);
* ```
*
* @property \CDbConnection $dbConnection database connection instance.
*
* @author Paul Klimov <[email protected]>
* @since 1.0
*/
class StorageDb extends Storage
{
/**
* @var string id of the database connection application component.
*/
public $db = 'db';
/**
* @var string name of the table, which should store values.
*/
public $table = 'app_config';
/**
* @var string name of the column, which should store config item key.
*/
public $keyColumn = 'id';
/**
* @var string name of the column, which should store config item value.
*/
public $valueColumn = 'value';
/**
* @return \CDbConnection database connection application component.
*/
public function getDbConnection()
{
return Yii::app()->getComponent($this->db);
}
/**
* {@inheritdoc}
*/
public function save(array $values): bool
{
$existingValues = $this->get();
foreach ($values as $key => $value) {
if (array_key_exists($key, $existingValues)) {
if ($value === $existingValues[$key]) {
continue;
}
$criteria = new CDbCriteria();
$criteria->addColumnCondition([$this->keyColumn => $key]);
$data = [$this->valueColumn => $value];
$this->getDbConnection()
->getCommandBuilder()
->createUpdateCommand($this->table, $data, $criteria)
->execute();
} else {
$data = [
$this->keyColumn => $key,
$this->valueColumn => $value,
];
$this->getDbConnection()
->getCommandBuilder()
->createInsertCommand($this->table, $data)
->execute();
}
}
return true;
}
/**
* {@inheritdoc}
*/
public function get(): array
{
$command = $this->getDbConnection()->createCommand();
$command->setFrom($this->table);
$rows = $command->queryAll();
$values = [];
foreach ($rows as $row) {
$values[$row[$this->keyColumn]] = $row[$this->valueColumn];
}
return $values;
}
/**
* {@inheritdoc}
*/
public function clear(): bool
{
$this->getDbConnection()
->createCommand()
->delete($this->table);
return true;
}
/**
* {@inheritDoc}
*/
public function clearValue($key): bool
{
$criteria = new CDbCriteria();
$criteria->addColumnCondition([$this->keyColumn => $key]);
$this->getDbConnection()
->createCommand()
->delete($this->table, $criteria->condition, $criteria->params);
return true;
}
}