Database.php
7.24 KB
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<?php
/**
* Database.php
*
* The Database class file.
*
* PHP versions 5
*
* @author Alexander Schneider <alexanderschneider85@gmail.com>
* @copyright 2008-2017 Alexander Schneider
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2
* @version SVN: $id$
* @link http://wordpress.org/extend/plugins/user-access-manager/
*/
declare(strict_types=1);
namespace UserAccessManager\Database;
use UserAccessManager\Wrapper\Wordpress;
use wpdb;
/**
* Class Database
*
* @package UserAccessManager\Database
*/
class Database
{
const USER_GROUP_TABLE_NAME = 'uam_accessgroups';
const USER_GROUP_TO_OBJECT_TABLE_NAME = 'uam_accessgroup_to_object';
/**
* @var Wordpress
*/
private $wordpress;
/**
* @var wpdb
*/
private $wpDatabase;
/**
* Database constructor.
* @param Wordpress $wordpress
*/
public function __construct(Wordpress $wordpress)
{
$this->wordpress = $wordpress;
$this->wpDatabase = $wordpress->getDatabase();
}
/**
* Returns the wordpress database.
* @return wpdb
*/
public function getWordpressDatabase(): wpdb
{
return $this->wpDatabase;
}
/**
* Returns the user group table name.
* @return string
*/
public function getUserGroupTable(): string
{
return $this->wpDatabase->prefix . self::USER_GROUP_TABLE_NAME;
}
/**
* Returns the user group table name.
* @return string
*/
public function getUserGroupToObjectTable(): string
{
return $this->wpDatabase->prefix . self::USER_GROUP_TO_OBJECT_TABLE_NAME;
}
/**
* @param string $queries
* @param bool $execute
* @return array
* @see dbDelta()
*/
public function dbDelta($queries = '', $execute = true): array
{
return $this->wordpress->dbDelta($queries, $execute);
}
/**
* @return string
* @see \wpdb::$prefix
*/
public function getPrefix(): string
{
return $this->wpDatabase->prefix;
}
/**
* Returns the last insert id.
* @return mixed
*/
public function getLastInsertId()
{
return $this->wpDatabase->insert_id;
}
/**
* Returns the current blog id.
* @return int|string
*/
public function getCurrentBlogId()
{
return $this->wpDatabase->blogid;
}
/**
* Returns the blogs table name.
* @return string
*/
public function getBlogsTable(): string
{
return $this->wpDatabase->blogs;
}
/**
* Returns the posts table name.
* @return string
*/
public function getPostsTable(): string
{
return $this->wpDatabase->posts;
}
/**
* Returns the term_relationships table name.
* @return string
*/
public function getTermRelationshipsTable(): string
{
return $this->wpDatabase->term_relationships;
}
/**
* Returns the term_taxonomy table name.
* @return string
*/
public function getTermTaxonomyTable(): string
{
return $this->wpDatabase->term_taxonomy;
}
/**
* Returns the users table name.
* @return string
*/
public function getUsersTable(): string
{
return $this->wpDatabase->users;
}
/**
* Returns the capabilities table name.
* @return string
*/
public function getCapabilitiesTable(): string
{
return $this->wpDatabase->prefix . 'capabilities';
}
/**
* @param string $query
* @param int $column
* @return array
* @see \wpdb::get_col()
*/
public function getColumn($query = null, $column = 0): array
{
return $this->wpDatabase->get_col($query, $column);
}
/**
* @param string $query
* @param string $output
* @param int $row
* @return array|null|object
* @see \wpdb::get_row()
*/
public function getRow($query = null, $output = OBJECT, $row = 0)
{
return $this->wpDatabase->get_row($query, $output, $row);
}
/**
* @param null|string $query
* @param int $column
* @param int $row
* @return null|int|string
* @see \wpdb::get_var()
*/
public function getVariable($query = null, $column = 0, $row = 0)
{
return $this->wpDatabase->get_var($query, $column, $row);
}
/**
* @param int $blogId
* @return string
* @see \wpdb::get_blog_prefix()
*/
public function getBlogPrefix($blogId = null): string
{
return $this->wpDatabase->get_blog_prefix($blogId);
}
/**
* @param string $query
* @param mixed $arguments
* @return string
* @see \wpdb::prepare()
*/
public function prepare(string $query, $arguments): string
{
return $this->wpDatabase->prepare($query, $arguments);
}
/**
* @param string $query
* @return false|int
* @see \wpdb::query()
*/
public function query(string $query)
{
return $this->wpDatabase->query($query);
}
/**
* @param string $query
* @param string $output
* @return array|null|object
* @see \wpdb::get_results()
*/
public function getResults($query = null, $output = OBJECT)
{
return $this->wpDatabase->get_results($query, $output);
}
/**
* @param string $table
* @param array $data
* @param null $format
* @return false|int
* @see \wpdb::insert()
*/
public function insert(string $table, array $data, $format = null)
{
return $this->wpDatabase->insert($table, $data, $format);
}
/**
* @param string $table
* @param array $data
* @param array $where
* @param null $format
* @param null $whereFormat
* @return false|int
* @see \wpdb::update()
*/
public function update(string $table, array $data, array $where, $format = null, $whereFormat = null)
{
return $this->wpDatabase->update($table, $data, $where, $format, $whereFormat);
}
/**
* @param string $table
* @param array $data
* @param null $format
* @return false|int
* @see \wpdb::insert()
*/
public function replace(string $table, array $data, $format = null)
{
return $this->wpDatabase->replace($table, $data, $format);
}
/**
* @param string $table
* @param array $where
* @param null $whereFormat
* @return false|int
* @see \wpdb::delete()
*/
public function delete(string $table, array $where, $whereFormat = null)
{
return $this->wpDatabase->delete($table, $where, $whereFormat);
}
/**
* Returns the database charset.
* @return string
*/
public function getCharset(): string
{
$charsetCollate = '';
$mySlqVersion = $this->getVariable('SELECT VERSION() as mysql_version');
if (version_compare($mySlqVersion, '4.1.0', '>=')) {
if (!empty($this->wpDatabase->charset)) {
$charsetCollate = "DEFAULT CHARACTER SET {$this->wpDatabase->charset}";
}
if (!empty($this->wpDatabase->collate)) {
$charsetCollate .= " COLLATE {$this->wpDatabase->collate}";
}
}
return $charsetCollate;
}
}