1
|
|
|
<?php |
2
|
|
|
namespace Data; |
3
|
|
|
|
4
|
|
|
function MongofillAutoload($classname) |
5
|
|
|
{ |
6
|
|
|
$classname = str_replace('/', '\\', $classname); |
7
|
|
|
$classname = ltrim($classname, '\\'); |
8
|
|
|
$namespace = ''; |
9
|
|
|
if($lastNsPos = strrpos($classname, '\\')) |
10
|
|
|
{ |
11
|
|
|
$namespace = substr($classname, 0, $lastNsPos); |
12
|
|
|
$classname = substr($classname, $lastNsPos + 1); |
13
|
|
|
} |
14
|
|
|
if(strlen($namespace)) |
15
|
|
|
{ |
16
|
|
|
$namespace .= DIRECTORY_SEPARATOR; |
17
|
|
|
} |
18
|
|
|
$filename = __DIR__.'/../libs/mongofill/src/'.$namespace.$classname.'.php'; |
19
|
|
|
if(is_readable($filename)) |
20
|
|
|
{ |
21
|
|
|
require $filename; |
22
|
|
|
} |
23
|
|
|
} |
24
|
|
|
|
25
|
|
|
class MongoDataSet extends DataSet |
26
|
|
|
{ |
27
|
|
|
protected $client; |
28
|
|
|
protected $manager; |
29
|
|
|
protected $db; |
30
|
|
|
protected $db_name; |
31
|
|
|
|
32
|
|
|
function __construct($params) |
|
|
|
|
33
|
|
|
{ |
34
|
|
|
$this->client = null; |
35
|
|
|
$this->mangaer = null; |
|
|
|
|
36
|
|
|
$this->db = null; |
37
|
|
|
$this->db_name = null; |
38
|
|
|
if(class_exists('MongoClient')) |
39
|
|
|
{ |
40
|
|
|
$this->setupMongoClient($params); |
41
|
|
|
} |
42
|
|
|
else if(class_exists('\MongoDB\Driver\Manager')) |
43
|
|
|
{ |
44
|
|
|
$this->setupMongoManager($params); |
45
|
|
|
} |
46
|
|
|
else |
47
|
|
|
{ |
48
|
|
|
require __DIR__.'/../libs/mongofill/src/functions.php'; |
49
|
|
|
autoLoadHandler('\Data\MongofillAutoload'); |
50
|
|
|
$this->setupMongoClient($params); |
51
|
|
|
} |
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
function tableExists($name) |
|
|
|
|
55
|
|
|
{ |
56
|
|
|
$collections = $this->db->getCollectionNames(); |
57
|
|
|
if(in_array($name, $collections)) |
58
|
|
|
{ |
59
|
|
|
return true; |
60
|
|
|
} |
61
|
|
|
return false; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
function getTable($name) |
|
|
|
|
65
|
|
|
{ |
66
|
|
|
if($this->db !== null) |
67
|
|
|
{ |
68
|
|
|
return new MongoDataTable($this->db->selectCollection($name)); |
|
|
|
|
69
|
|
|
} |
70
|
|
|
else |
71
|
|
|
{ |
72
|
|
|
return new MongoDataTable($this, $name); |
73
|
|
|
} |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
private function setupMongoClient($params) |
77
|
|
|
{ |
78
|
|
|
if($params === false) |
79
|
|
|
{ |
80
|
|
|
return; |
81
|
|
|
} |
82
|
|
|
if(isset($params['user'])) |
83
|
|
|
{ |
84
|
|
|
$this->client = new \MongoClient('mongodb://'.$params['host'].'/'.$params['db'], array('username'=>$params['user'], 'password'=>$params['pass'])); |
85
|
|
|
} |
86
|
|
|
else |
87
|
|
|
{ |
88
|
|
|
$this->client = new \MongoClient('mongodb://'.$params['host'].'/'.$params['db']); |
89
|
|
|
} |
90
|
|
|
$this->db = $this->client->selectDB($params['db']); |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
private function setupMongoManager($params) |
94
|
|
|
{ |
95
|
|
|
if($params === false) |
96
|
|
|
{ |
97
|
|
|
return; |
98
|
|
|
} |
99
|
|
|
if(isset($params['user'])) |
100
|
|
|
{ |
101
|
|
|
$this->manager = new \MongoDB\Driver\Manager('mongodb://'.$params['user'].':'.$params['pass'].'@'.$params['host'].'/'.$params['db']); |
102
|
|
|
} |
103
|
|
|
else |
104
|
|
|
{ |
105
|
|
|
$this->manager = new \MongoDB\Driver\Manager('mongodb://'.$params['host'].'/'.$params['db']); |
106
|
|
|
} |
107
|
|
|
$this->db_name = $params['db']; |
108
|
|
|
} |
109
|
|
|
|
110
|
|
|
public function find($query = array(), $options = array(), $collectionName) |
111
|
|
|
{ |
112
|
|
|
$namespace = $this->db_name.'.'.$collectionName; |
113
|
|
|
$dbQuery = new \MongoDB\Driver\Query($query, $options); |
114
|
|
|
return $this->manager->executeQuery($namespace, $dbQuery); |
115
|
|
|
} |
116
|
|
|
|
117
|
|
|
public function insert(&$document, $options = array(), $collectionName) |
118
|
|
|
{ |
119
|
|
|
$namespace = $this->db_name.'.'.$collectionName; |
120
|
|
|
$dbWrite = new \MongoDB\Driver\BulkWrite(); |
121
|
|
|
try |
122
|
|
|
{ |
123
|
|
|
$id = $dbWrite->insert($document); |
124
|
|
|
} |
125
|
|
|
catch(\MongoDB\Driver\Exception\InvalidArgumentException $e) |
|
|
|
|
126
|
|
|
{ |
127
|
|
|
if(isset($document[''])) |
128
|
|
|
{ |
129
|
|
|
unset($document['']); |
130
|
|
|
$id = $dbWrite->insert($document); |
131
|
|
|
} |
132
|
|
|
} |
133
|
|
|
$res = $this->manager->executeBulkWrite($namespace, $dbWrite, $options); |
134
|
|
|
if($res->getInsertedCount() === 1) |
135
|
|
|
{ |
136
|
|
|
$document['_id'] = $id; |
137
|
|
|
return true; |
138
|
|
|
} |
139
|
|
|
return false; |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
public function remove($criteria = array(), array $options = array(), $collectionName) |
143
|
|
|
{ |
144
|
|
|
$namespace = $this->db_name.'.'.$collectionName; |
145
|
|
|
$dbWrite = new \MongoDB\Driver\BulkWrite(); |
146
|
|
|
$dbWrite->delete($criteria); |
147
|
|
|
$res = $this->manager->executeBulkWrite($namespace, $dbWrite, $options); |
148
|
|
|
return $res->getDeletedCount() >= 1; |
149
|
|
|
} |
150
|
|
|
|
151
|
|
|
public function update($criteria, $new_object, $options = array(), $collectionName) |
152
|
|
|
{ |
153
|
|
|
$namespace = $this->db_name.'.'.$collectionName; |
154
|
|
|
$dbWrite = new \MongoDB\Driver\BulkWrite(); |
155
|
|
|
try { |
156
|
|
|
$dbWrite->update($criteria, $new_object, $options); |
157
|
|
|
} catch(\MongoDB\Driver\Exception\InvalidArgumentException $e) { |
|
|
|
|
158
|
|
|
if(isset($new_object['$set'][''])) |
159
|
|
|
{ |
160
|
|
|
unset($new_object['$set']['']); |
161
|
|
|
$dbWrite->update($criteria, $new_object, $options); |
162
|
|
|
} |
163
|
|
|
else |
164
|
|
|
{ |
165
|
|
|
throw $e; |
166
|
|
|
} |
167
|
|
|
} |
168
|
|
|
$res = $this->manager->executeBulkWrite($namespace, $dbWrite, $options); |
169
|
|
|
if($res->getModifiedCount() === 1) |
170
|
|
|
{ |
171
|
|
|
return true; |
172
|
|
|
} |
173
|
|
|
if($res->getMatchedCount() === 1 && empty($res->getWriteErrors())) |
174
|
|
|
{ |
175
|
|
|
return true; |
176
|
|
|
} |
177
|
|
|
return false; |
178
|
|
|
} |
179
|
|
|
|
180
|
|
|
public function count($query = array(), $options = array(), $collectionName) |
|
|
|
|
181
|
|
|
{ |
182
|
|
|
$cmd = new \MongoDB\Driver\Command(['count'=>$collectionName, 'query'=>$query]); |
183
|
|
|
$cursor = $this->manager->executeCommand($this->db_name, $cmd); |
184
|
|
|
return $cursor->toArray()[0]->n; |
185
|
|
|
} |
186
|
|
|
|
187
|
|
|
public function runCommand($cmd) |
188
|
|
|
{ |
189
|
|
|
$cmd = new \MongoDB\Driver\Command($cmd); |
190
|
|
|
$cursor = $this->manager->executeCommand($this->db_name, $cmd); |
191
|
|
|
$ret = $cursor->toArray(); |
192
|
|
|
return $ret[0]['ok']; |
193
|
|
|
} |
194
|
|
|
} |
195
|
|
|
/* vim: set tabstop=4 shiftwidth=4 expandtab: */ |
196
|
|
|
|
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.