-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtxtdb.class.php
More file actions
321 lines (290 loc) · 6.47 KB
/
txtdb.class.php
File metadata and controls
321 lines (290 loc) · 6.47 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
/**
* Simple txtdb Class
* API Documentation: https://github.com/bencagri/Simple-TxtDb
* Required: PHP5.5+
*
* @author Cagri S. Kirbiyik, Km.Van
* @since 07.01.2016
* @version 2.0.3
* @license BSD http://www.opensource.org/licenses/bsd-license.php
*/
#[AllowDynamicProperties]
class txtdb {
/**
* The path to the cache file folder
*
* @var string
*/
private $_db_dir = __DIR__ . '/database/';
/**
* The name of the default db file
*
* @var string
*/
private $_tablename = 'default';
/**
* The db file extension
*
* @var string
*/
private $_extension = 'txtdb';
/**
* File encryption
*
* @var string
*/
private $_encrypt = false;
/**
* The db cache array
*/
private $db_cache = [];
/**
* Default constructor
*
* @param array $config
* @type string $dir
* @type string $extension
* @type string $encrypt
* @return void
*/
public function __construct(array $config = []) {
$config = array_merge([
'extension' => $this->_extension,
'encrypt' => $this->_encrypt,
'dir' => $this->_db_dir,
],$config);
$this->set_db_dir($config['dir']);
$this->set_extension($config['extension']);
$this->set_encryption($config['encrypt']);
}
private function set_db_dir($dir){
$this->_db_dir = $dir;
}
/**
* Store data in the table file
*
* @param string $key
* @param mixed $data
* @param integer [optional] $expiration
* @return mixed ID success or false
*/
public function insert($table, $new_data){
$this->_load_table($table);
if(!empty($new_data)){
$id = $this->get_unique_id();
$this->db_cache[$table][$id] = $new_data;
if($this->write_to_disk($table)){
return $id;
}
return false;
}
return false;
}
private function get_unique_id(){
return md5($_SERVER['REQUEST_TIME'] + mt_rand(1000,9999));
}
/**
* Retrieve data by its key
*
* @param string $table name
* @param mixed $condition Key name or array
* @return mixed
*/
public function select($table, $condition = null){
$this->_load_table($table);
if(empty($this->db_cache[$table]))
return $this->select_all($table);
/** no condition */
if (!$condition) {
return $this->db_cache[$table];
}
/** array condition */
if(is_array($condition)){
$data = [];
foreach($this->db_cache[$table] as $k => $v){
foreach($condition as $condition_key => $condition_value){
if(!isset($v[$condition_key]) || $v[$condition_key] != $condition_value){
continue 2;
}
}
$data[$k] = $v;
}
return $data;
/** id condition */
}else{
return isset($this->db_cache[$table][$condition]) ? [$condition => $this->db_cache[$table][$condition]] : false;
}
}
public function select_all($table){
$this->_load_table($table);
return $this->db_cache[$table];
}
private function write_to_disk($table){
if(!isset($this->db_cache[$table])){
return file_put_contents($this->get_table_path($table),'');
}
return file_put_contents($this->get_table_path($table),json_encode($this->db_cache[$table]));
}
/**
* Delete content by id
*
* @param string $table Table name
* @param string $id Row key
* @return boolean
*/
public function delete($table, $id = null){
$this->_load_table($table);
if(!$id){
return $this->delete_all($table);
}else{
if(isset($this->db_cache[$table][$id])){
unset($this->db_cache[$table][$id]);
return $this->write_to_disk($table);
}
}
return false;
}
/**
* Delete all contents of table
*
* @param string $table Nable name
* @return object
*/
public function delete_all($table) {
$this->set_table($table);
unset($this->db_cache[$table]);
return $this->write_to_disk($table);
}
/**
* Update content by id
*
* @return object
*/
public function update($table, array $data, $id){
$this->_load_table($table);
if(isset($this->db_cache[$table][$id])){
$this->db_cache[$table][$id] = array_merge(
$this->db_cache[$table][$id],
$data
);
if($this->write_to_disk($table)){
return $this->db_cache[$table];
}else{
return false;
}
}
return false;
}
/**
* Get the file directory path
*
* @return string
*/
private function get_table_path($table) {
if ($this->_check_table_dir()) {
$filename = strtolower($table);
return $this->get_db_dir() . $this->_get_hash($table) . '.' . $this->getExtension();
}
}
private function get_db_dir(){
return $this->_db_dir . '/';
}
/**
* Check if a writable file directory exists and if not create a new one
*
* @return boolean
*/
private function _check_table_dir() {
static $cache = null;
if($cache !== null){
return $cache;
}
if (!is_dir($this->get_db_dir()) && !mkdir($this->get_db_dir(), 0775, true)) {
$cache = false;
throw new Exception('Unable to create file directory ' . $this->get_db_dir());
} elseif (!is_readable($this->get_db_dir()) || !is_writable($this->get_db_dir())) {
if (!chmod($this->get_db_dir(), 0775)) {
$cache = false;
throw new Exception($this->get_db_dir() . ' must be readable and writeable');
}
}
$cache = true;
return true;
}
/**
* Get the filename hash
*
* @return string
*/
private function _get_hash($filename) {
if($this->_encrypt)
return md5($filename);
return $filename;
}
/**
* Table name Setter
*
* @param string $name
* @return object
*/
private function set_table($name){
if(!isset($this->db_cache[$name])){
$this->db_cache[$name] = [];
}
$this->current_tablename = $name;
}
/**
* Cache name Getter
*
* @return void
*/
private function get_table($table) {
return $this->_tablename;
}
/**
* Load appointed table
* @param string $tablename Table name
*
* @return array
*/
private function _load_table($table) {
if(!isset($this->db_cache[$table])){
if(!is_file($this->get_table_path($table))){
$this->db_cache[$table] = [];
}else{
$this->db_cache[$table] = json_decode(file_get_contents($this->get_table_path($table)),true);
}
}
$this->current_tablename = $table;
return $this->db_cache[$table];
}
/**
* Table file extension Setter
*
* @param string $ext
* @return object
*/
private function set_extension($ext) {
$this->_extension = $ext;
return $this;
}
/**
* Table file encryption Setter
*
* @param string $ext
* @return object
*/
private function set_encryption($ext){
$this->_encrypt = $ext;
return $this;
}
/**
* Table file extension Getter
*
* @return string
*/
private function getExtension() {
return $this->_extension;
}
}