-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatabase.php
208 lines (190 loc) · 4.22 KB
/
Database.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
/**
* Database.php
*
* Author: Larry Li <[email protected]>
*/
namespace larryli\ipv4\yii2;
use larryli\ipv4\Database as BaseDatabase;
use Yii;
use yii\db\Connection;
use yii\db\Query;
/**
* Class Database
* @package larryli\ipv4\yii2
*/
class Database extends BaseDatabase
{
/**
* @var Connection yii2 database connection
*/
protected $db;
/**
* @var string table prefix
*/
protected $prefix = '';
/**
* @var \yii\db\Transaction
*/
protected $transaction;
/**
* @param null $options
* @throws \Exception
*/
public function __construct($options = null)
{
$this->db = Yii::$app->db;
if (is_array($options)) {
if (isset($options['prefix'])) {
$this->prefix = $options['prefix'];
}
if (isset($options['db']) && is_a($options['db'], Connection::className())) {
$this->db = $options['db'];
}
}
}
/**
* @param $table
* @return bool
* @throws \Exception
*/
public function tableExists($table)
{
return true; // migrate
}
/**
* @param $table
* @throws \Exception
*/
public function createDivisionsTable($table)
{
// do nothing
}
/**
* @param $table
* @throws \Exception
*/
public function createIndexTable($table)
{
// do nothing
}
/**
* @param $table
* @throws \Exception
*/
public function cleanTable($table)
{
$this->db->createCommand()->truncateTable($this->getTableName($table))->execute();
}
/**
* @param $name
* @return string
*/
protected function getTableName($name)
{
return $this->prefix . $name;
}
/**
* @param $table
*/
public function dropTable($table)
{
$this->cleanTable($table); // just clean
}
/**
* @param string $table
* @param array $data
*/
public function insertDivisions($table, $data)
{
$this->batchInsert($table, $data);
}
/**
* @param $table
* @param $data
* @throws \yii\db\Exception
*/
private function batchInsert($table, $data)
{
$rows = [];
foreach ($data as $row) {
if (!isset($columns)) {
$columns = array_keys($row);
}
$rows[] = array_values($row);
}
if (isset($columns)) {
$this->db->transaction(function (Connection $db) use ($table, $columns, $rows) {
$db->createCommand()->batchInsert($this->getTableName($table), $columns, $rows)->execute();
});
}
}
/**
* @param string $table
* @param array $data
*/
public function insertIndexes($table, $data)
{
$this->batchInsert($table, $data);
}
/**
* @param $table
* @return bool|int
*/
public function count($table)
{
return (new Query())->from($this->getTableName($table))->count();
}
/**
* @param $table
* @return int
*/
public function size($table)
{
return 100;
}
/**
* @param $table
* @param $id
* @return mixed
*/
public function getDivision($table, $id)
{
return (new Query())->from($this->getTableName($table))
->select(['name', 'parent_id'])
->where(['id' => $id])
->one();
}
/**
* @param $table
* @param $ip
* @return mixed
*/
public function getIndex($table, $ip)
{
$data = (new Query())->from($this->getTableName($table))
->select(['division_id'])
->where(['>=', 'id', $ip])
->orderBy('id ASC')
->one();
if ($data === false) {
return 0;
}
return $data['division_id'];
}
/**
* @param $table
* @param $start
* @param $size
* @return mixed
*/
public function getIndexes($table, $start, $size)
{
return (new Query())->from($this->getTableName($table))
->select(['id', 'division_id'])
->orderBy('id ASC')
->offset($start)
->limit($size)
->all();
}
}