Completed
Pull Request — master (#8)
by
unknown
03:35
created

MongoCollection::ensureIndex()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4286
cc 1
eloc 3
nc 1
nop 2
1
<?php
2
/*
3
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14
 */
15
16
use Alcaeus\MongoDbAdapter\Helper;
17
use Alcaeus\MongoDbAdapter\TypeConverter;
18
use MongoDB\Driver\ReadPreference;
19
use MongoDB\Driver\WriteConcern;
20
21
/**
22
 * Represents a database collection.
23
 * @link http://www.php.net/manual/en/class.mongocollection.php
24
 */
25
class MongoCollection
1 ignored issue
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
26
{
27
    use Helper\ReadPreference;
28
    use Helper\WriteConcern;
29
30
    const ASCENDING = 1;
31
    const DESCENDING = -1;
32
33
    /**
34
     * @var MongoDB
35
     */
36
    public $db = NULL;
37
38
    /**
39
     * @var string
40
     */
41
    protected $name;
42
43
    /**
44
     * @var \MongoDB\Collection
45
     */
46
    protected $collection;
47
48
    /**
49
     * Creates a new collection
50
     * @link http://www.php.net/manual/en/mongocollection.construct.php
51
     * @param MongoDB $db Parent database.
52
     * @param string $name Name for this collection.
53
     * @throws Exception
54
     * @return MongoCollection
0 ignored issues
show
Comprehensibility Best Practice introduced by
Adding a @return annotation to constructors is generally not recommended as a constructor does not have a meaningful return value.

Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.

Please refer to the PHP core documentation on constructors.

Loading history...
55
     */
56
    public function __construct(MongoDB $db, $name)
57
    {
58
        $this->db = $db;
59
        $this->name = $name;
60
61
        $this->setReadPreferenceFromArray($db->getReadPreference());
62
        $this->setWriteConcernFromArray($db->getWriteConcern());
63
64
        $this->createCollectionObject();
65
    }
66
67
    /**
68
     * Gets the underlying collection for this object
69
     *
70
     * @internal This part is not of the ext-mongo API and should not be used
71
     * @return \MongoDB\Collection
72
     */
73
    public function getCollection()
74
    {
75
        return $this->collection;
76
    }
77
78
    /**
79
     * String representation of this collection
80
     * @link http://www.php.net/manual/en/mongocollection.--tostring.php
81
     * @return string Returns the full name of this collection.
82
     */
83
    public function __toString()
84
    {
85
        return (string) $this->db . '.' . $this->name;
86
    }
87
88
    /**
89
     * Gets a collection
90
     * @link http://www.php.net/manual/en/mongocollection.get.php
91
     * @param string $name The next string in the collection name.
92
     * @return MongoCollection
93
     */
94
    public function __get($name)
95
    {
96
        // Handle w and wtimeout properties that replicate data stored in $readPreference
97
        if ($name === 'w' || $name === 'wtimeout') {
98
            return $this->getWriteConcern()[$name];
99
        }
100
101
        return $this->db->selectCollection($this->name . '.' . $name);
102
    }
103
104
    /**
105
     * @param string $name
106
     * @param mixed $value
107
     */
108 View Code Duplication
    public function __set($name, $value)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
109
    {
110
        if ($name === 'w' || $name === 'wtimeout') {
111
            $this->setWriteConcernFromArray([$name => $value] + $this->getWriteConcern());
112
            $this->createCollectionObject();
113
        }
114
    }
115
116
    /**
117
     * @link http://www.php.net/manual/en/mongocollection.aggregate.php
118
     * @param array $pipeline
119
     * @param array $op
120
     * @return array
121
     */
122
    public function aggregate(array $pipeline, array $op = [])
123
    {
124
        if (! TypeConverter::isNumericArray($pipeline)) {
125
            $pipeline = [];
126
            $options = [];
127
128
            $i = 0;
129
            foreach (func_get_args() as $operator) {
130
                $i++;
131
                if (! is_array($operator)) {
132
                    trigger_error("Argument $i is not an array", E_WARNING);
133
                    return;
134
                }
135
136
                $pipeline[] = $operator;
137
            }
138
        } else {
139
            $options = $op;
140
        }
141
142
        $command = [
143
            'aggregate' => $this->name,
144
            'pipeline' => $pipeline
145
        ];
146
147
        $command += $options;
148
149
        return $this->db->command($command, [], $hash);
150
    }
151
152
    /**
153
     * @link http://php.net/manual/en/mongocollection.aggregatecursor.php
154
     * @param array $pipeline
155
     * @param array $options
156
     * @return MongoCommandCursor
157
     */
158
    public function aggregateCursor(array $pipeline, array $options = [])
159
    {
160
        // Build command manually, can't use mongo-php-library here
161
        $command = [
162
            'aggregate' => $this->name,
163
            'pipeline' => $pipeline
164
        ];
165
166
        // Convert cursor option
167
        if (! isset($options['cursor']) || $options['cursor'] === true || $options['cursor'] === []) {
168
            // Cursor option needs to be an object convert bools and empty arrays since those won't be handled by TypeConverter
169
            $options['cursor'] = new \stdClass;
170
        }
171
172
        $command += $options;
173
174
        $cursor = new MongoCommandCursor($this->db->getConnection(), (string)$this, $command);
175
        $cursor->setReadPreference($this->getReadPreference());
0 ignored issues
show
Documentation introduced by
$this->getReadPreference() is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
176
177
        return $cursor;
178
    }
179
180
    /**
181
     * Returns this collection's name
182
     * @link http://www.php.net/manual/en/mongocollection.getname.php
183
     * @return string
184
     */
185
    public function getName()
186
    {
187
        return $this->name;
188
    }
189
190
    /**
191
     * @link http://www.php.net/manual/en/mongocollection.getslaveokay.php
192
     * @return bool
193
     */
194
    public function getSlaveOkay()
195
    {
196
        return $this->readPreference->getMode() != ReadPreference::RP_PRIMARY;
197
    }
198
199
    /**
200
     * @link http://www.php.net/manual/en/mongocollection.setslaveokay.php
201
     * @param bool $ok
202
     * @return bool
203
     */
204
    public function setSlaveOkay($ok = true)
205
    {
206
        $result = $this->getSlaveOkay();
207
        $this->readPreference = new ReadPreference(
208
            $ok ? ReadPreference::RP_SECONDARY_PREFERRED : ReadPreference::RP_PRIMARY,
209
            $this->readPreference->getTagSets()
210
        );
211
        $this->createCollectionObject();
212
        return $result;
213
    }
214
215
    /**
216
     * {@inheritdoc}
217
     */
218
    public function setReadPreference($readPreference, $tags = null)
219
    {
220
        $result = $this->setReadPreferenceFromParameters($readPreference, $tags);
221
        $this->createCollectionObject();
222
223
        return $result;
224
    }
225
226
    /**
227
     * {@inheritdoc}
228
     */
229
    public function setWriteConcern($wstring, $wtimeout = 0)
230
    {
231
        $result = $this->setWriteConcernFromParameters($wstring, $wtimeout);
232
        $this->createCollectionObject();
233
234
        return $result;
235
    }
236
237
    /**
238
     * Drops this collection
239
     * @link http://www.php.net/manual/en/mongocollection.drop.php
240
     * @return array Returns the database response.
241
     */
242
    public function drop()
243
    {
244
        return $this->collection->drop();
245
    }
246
247
    /**
248
     * Validates this collection
249
     * @link http://www.php.net/manual/en/mongocollection.validate.php
250
     * @param bool $scan_data Only validate indices, not the base collection.
251
     * @return array Returns the database's evaluation of this object.
252
     */
253
    public function validate($scan_data = FALSE)
254
    {
255
        $command = [
256
            'validate' => $this->name,
257
            'full'     => $scan_data,
258
        ];
259
        $result = $this->db->command($command, [], $hash);
260
        if ($result) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $result of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
261
            return $result;
262
        }
263
264
        return false;
265
    }
266
267
    /**
268
     * Inserts an array into the collection
269
     * @link http://www.php.net/manual/en/mongocollection.insert.php
270
     * @param array|object $a
271
     * @param array $options
272
     * @throws MongoException if the inserted document is empty or if it contains zero-length keys. Attempting to insert an object with protected and private properties will cause a zero-length key error.
273
     * @throws MongoCursorException if the "w" option is set and the write fails.
274
     * @throws MongoCursorTimeoutException if the "w" option is set to a value greater than one and the operation takes longer than MongoCursor::$timeout milliseconds to complete. This does not kill the operation on the server, it is a client-side timeout. The operation in MongoCollection::$wtimeout is milliseconds.
275
     * @return bool|array Returns an array containing the status of the insertion if the "w" option is set.
276
     */
277
    public function insert($a, array $options = array())
278
    {
279
        return $this->collection->insertOne(TypeConverter::convertLegacyArrayToObject($a), $options);
280
    }
281
282
    /**
283
     * Inserts multiple documents into this collection
284
     * @link http://www.php.net/manual/en/mongocollection.batchinsert.php
285
     * @param array $a An array of arrays.
286
     * @param array $options Options for the inserts.
287
     * @throws MongoCursorException
288
     * @return mixed f "safe" is set, returns an associative array with the status of the inserts ("ok") and any error that may have occured ("err"). Otherwise, returns TRUE if the batch insert was successfully sent, FALSE otherwise.
289
     */
290
    public function batchInsert(array $a, array $options = array())
291
    {
292
        return $this->collection->insertMany($a, $options);
293
    }
294
295
    /**
296
     * Update records based on a given criteria
297
     * @link http://www.php.net/manual/en/mongocollection.update.php
298
     * @param array $criteria Description of the objects to update.
299
     * @param array $newobj The object with which to update the matching records.
300
     * @param array $options This parameter is an associative array of the form
301
     *        array("optionname" => boolean, ...).
302
     *
303
     *        Currently supported options are:
304
     *          "upsert": If no document matches $$criteria, a new document will be created from $$criteria and $$new_object (see upsert example).
305
     *
306
     *          "multiple": All documents matching $criteria will be updated. MongoCollection::update has exactly the opposite behavior of MongoCollection::remove- it updates one document by
307
     *          default, not all matching documents. It is recommended that you always specify whether you want to update multiple documents or a single document, as the
308
     *          database may change its default behavior at some point in the future.
309
     *
310
     *          "safe" Can be a boolean or integer, defaults to false. If false, the program continues executing without waiting for a database response. If true, the program will wait for
311
     *          the database response and throw a MongoCursorException if the update did not succeed. If you are using replication and the master has changed, using "safe" will make the driver
312
     *          disconnect from the master, throw and exception, and attempt to find a new master on the next operation (your application must decide whether or not to retry the operation on the new master).
313
     *          If you do not use "safe" with a replica set and the master changes, there will be no way for the driver to know about the change so it will continuously and silently fail to write.
314
     *          If safe is an integer, will replicate the update to that many machines before returning success (or throw an exception if the replication times out, see wtimeout).
315
     *          This overrides the w variable set on the collection.
316
     *
317
     *         "fsync": Boolean, defaults to false. Forces the update to be synced to disk before returning success. If true, a safe update is implied and will override setting safe to false.
318
     *
319
     *         "timeout" Integer, defaults to MongoCursor::$timeout. If "safe" is set, this sets how long (in milliseconds) for the client to wait for a database response. If the database does
320
     *         not respond within the timeout period, a MongoCursorTimeoutException will be thrown
321
     * @throws MongoCursorException
322
     * @return boolean
323
     */
324
    public function update(array $criteria , array $newobj, array $options = array())
325
    {
326
        $multiple = ($options['multiple']) ? $options['multiple'] : false;
327
//        $multiple = $options['multiple'] ?? false;
0 ignored issues
show
Unused Code Comprehensibility introduced by
60% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
328
        $method = $multiple ? 'updateMany' : 'updateOne';
329
330
        return $this->collection->$method($criteria, $newobj, $options);
331
    }
332
333
    /**
334
     * (PECL mongo &gt;= 0.9.0)<br/>
335
     * Remove records from this collection
336
     * @link http://www.php.net/manual/en/mongocollection.remove.php
337
     * @param array $criteria [optional] <p>Query criteria for the documents to delete.</p>
338
     * @param array $options [optional] <p>An array of options for the remove operation. Currently available options
339
     * include:
340
     * </p><ul>
341
     * <li><p><em>"w"</em></p><p>See {@link http://www.php.net/manual/en/mongo.writeconcerns.php Write Concerns}. The default value for <b>MongoClient</b> is <em>1</em>.</p></li>
342
     * <li>
343
     * <p>
344
     * <em>"justOne"</em>
345
     * </p>
346
     * <p>
347
     * Specify <strong><code>TRUE</code></strong> to limit deletion to just one document. If <strong><code>FALSE</code></strong> or
348
     * omitted, all documents matching the criteria will be deleted.
349
     * </p>
350
     * </li>
351
     * <li><p><em>"fsync"</em></p><p>Boolean, defaults to <b>FALSE</b>. If journaling is enabled, it works exactly like <em>"j"</em>. If journaling is not enabled, the write operation blocks until it is synced to database files on disk. If <strong><code>TRUE</code></strong>, an acknowledged insert is implied and this option will override setting <em>"w"</em> to <em>0</em>.</p><blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">If journaling is enabled, users are strongly encouraged to use the <em>"j"</em> option instead of <em>"fsync"</em>. Do not use <em>"fsync"</em> and <em>"j"</em> simultaneously, as that will result in an error.</p></blockquote></li>
352
     * <li><p><em>"j"</em></p><p>Boolean, defaults to <b>FALSE</b>. Forces the write operation to block until it is synced to the journal on disk. If <strong><code>TRUE</code></strong>, an acknowledged write is implied and this option will override setting <em>"w"</em> to <em>0</em>.</p><blockquote class="note"><p><strong class="note">Note</strong>: <span class="simpara">If this option is used and journaling is disabled, MongoDB 2.6+ will raise an error and the write will fail; older server versions will simply ignore the option.</p></blockquote></li>
353
     * <li><p><em>"socketTimeoutMS"</em></p><p>This option specifies the time limit, in milliseconds, for socket communication. If the server does not respond within the timeout period, a <b>MongoCursorTimeoutException</b> will be thrown and there will be no way to determine if the server actually handled the write or not. A value of <em>-1</em> may be specified to block indefinitely. The default value for <b>MongoClient</b> is <em>30000</em> (30 seconds).</p></li>
354
     * <li><p><em>"w"</em></p><p>See {@link http://www.php.net/manual/en/mongo.writeconcerns.php Write Concerns }. The default value for <b>MongoClient</b> is <em>1</em>.</p></li>
355
     * <li><p><em>"wTimeoutMS"</em></p><p>This option specifies the time limit, in milliseconds, for {@link http://www.php.net/manual/en/mongo.writeconcerns.php write concern} acknowledgement. It is only applicable when <em>"w"</em> is greater than <em>1</em>, as the timeout pertains to replication. If the write concern is not satisfied within the time limit, a <a href="class.mongocursorexception.php" class="classname">MongoCursorException</a> will be thrown. A value of <em>0</em> may be specified to block indefinitely. The default value for {@link http://www.php.net/manual/en/class.mongoclient.php MongoClient} is <em>10000</em> (ten seconds).</p></li>
356
     * </ul>
357
     *
358
     * <p>
359
     * The following options are deprecated and should no longer be used:
360
     * </p><ul>
361
     * <li><p><em>"safe"</em></p><p>Deprecated. Please use the {@link http://www.php.net/manual/en/mongo.writeconcerns.php write concern} <em>"w"</em> option.</p></li>
362
     * <li><p><em>"timeout"</em></p><p>Deprecated alias for <em>"socketTimeoutMS"</em>.</p></li>
363
     * <li><p><b>"wtimeout"</b></p><p>Deprecated alias for <em>"wTimeoutMS"</em>.</p></p>
364
     * @throws MongoCursorException
365
     * @throws MongoCursorTimeoutException
366
     * @return bool|array <p>Returns an array containing the status of the removal if the
367
     * <em>"w"</em> option is set. Otherwise, returns <b>TRUE</b>.
368
     * </p>
369
     * <p>
370
     * Fields in the status array are described in the documentation for
371
     * <b>MongoCollection::insert()</b>.
372
     * </p>
373
     */
374
    public function remove(array $criteria = array(), array $options = array())
375
    {
376
        $multiple = isset($options['justOne']) ? !$options['justOne'] : false;
377
//        $multiple = !$options['justOne'] ?? false;
0 ignored issues
show
Unused Code Comprehensibility introduced by
63% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
378
        $method = $multiple ? 'deleteMany' : 'deleteOne';
379
380
        return $this->collection->$method($criteria, $options);
381
    }
382
383
    /**
384
     * Querys this collection
385
     * @link http://www.php.net/manual/en/mongocollection.find.php
386
     * @param array $query The fields for which to search.
387
     * @param array $fields Fields of the results to return.
388
     * @return MongoCursor
389
     */
390
    public function find(array $query = array(), array $fields = array())
391
    {
392
        $cursor = new MongoCursor($this->db->getConnection(), (string)$this, $query, $fields);
393
        $cursor->setReadPreference($this->getReadPreference());
0 ignored issues
show
Documentation introduced by
$this->getReadPreference() is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
394
395
        return $cursor;
396
    }
397
398
    /**
399
     * Retrieve a list of distinct values for the given key across a collection
400
     * @link http://www.php.net/manual/ru/mongocollection.distinct.php
401
     * @param string $key The key to use.
402
     * @param array $query An optional query parameters
403
     * @return array|bool Returns an array of distinct values, or <b>FALSE</b> on failure
404
     */
405
    public function distinct($key, array $query = [])
406
    {
407
        return array_map([TypeConverter::class, 'convertToLegacyType'], $this->collection->distinct($key, $query));
408
    }
409
410
    /**
411
     * Update a document and return it
412
     * @link http://www.php.net/manual/ru/mongocollection.findandmodify.php
413
     * @param array $query The query criteria to search for.
414
     * @param array $update The update criteria.
415
     * @param array $fields Optionally only return these fields.
416
     * @param array $options An array of options to apply, such as remove the match document from the DB and return it.
417
     * @return array Returns the original document, or the modified document when new is set.
418
     */
419
    public function findAndModify(array $query, array $update = NULL, array $fields = NULL, array $options = [])
420
    {
421
        $query = TypeConverter::convertLegacyArrayToObject($query);
422
        if (isset($options['remove'])) {
423
            unset($options['remove']);
424
            $document = $this->collection->findOneAndDelete($query, $options);
425
        } else {
426
            if (is_array($update)) {
427
                $update = TypeConverter::convertLegacyArrayToObject($update);
428
            }
429
            if (is_array($fields)) {
430
                $fields = TypeConverter::convertLegacyArrayToObject($fields);
431
            }
432
            if (isset($options['new'])) {
433
                $options['returnDocument'] = \MongoDB\Operation\FindOneAndUpdate::RETURN_DOCUMENT_AFTER;
434
                unset($options['new']);
435
            }
436
            if ($fields) {
437
                $options['projection'] = $fields;
438
            }
439
            $document = $this->collection->findOneAndUpdate($query, $update, $options);
0 ignored issues
show
Bug introduced by
It seems like $update defined by parameter $update on line 419 can also be of type null; however, MongoDB\Collection::findOneAndUpdate() does only seem to accept array|object, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
440
        }
441
        if ($document) {
442
            $document = TypeConverter::convertObjectToLegacyArray($document);
443
        }
444
        return $document;
445
    }
446
447
    /**
448
     * Querys this collection, returning a single element
449
     * @link http://www.php.net/manual/en/mongocollection.findone.php
450
     * @param array $query The fields for which to search.
451
     * @param array $fields Fields of the results to return.
452
     * @return array|null
453
     */
454
    public function findOne(array $query = array(), array $fields = array())
455
    {
456
        $document = $this->collection->findOne(TypeConverter::convertLegacyArrayToObject($query), ['projection' => $fields]);
457
        if ($document !== null) {
458
            $document = TypeConverter::convertObjectToLegacyArray($document);
459
        }
460
461
        return $document;
462
    }
463
464
    /**
465
     * Creates an index on the given field(s), or does nothing if the index already exists
466
     * @link http://www.php.net/manual/en/mongocollection.createindex.php
467
     * @param array $keys Field or fields to use as index.
468
     * @param array $options [optional] This parameter is an associative array of the form array("optionname" => <boolean>, ...).
469
     * @return array Returns the database response.
470
     */
471
    public function createIndex(array $keys, array $options = array())
472
    {
473
        return $this->collection->createIndex($keys, $options);
474
    }
475
476
    /**
477
     * @deprecated Use MongoCollection::createIndex() instead.
478
     * Creates an index on the given field(s), or does nothing if the index already exists
479
     * @link http://www.php.net/manual/en/mongocollection.ensureindex.php
480
     * @param array $keys Field or fields to use as index.
481
     * @param array $options [optional] This parameter is an associative array of the form array("optionname" => <boolean>, ...).
482
     * @return boolean always true
483
     */
484
    public function ensureIndex(array $keys, array $options = array())
485
    {
486
        $this->createIndex($keys, $options);
487
        return true;
488
    }
489
490
    /**
491
     * Deletes an index from this collection
492
     * @link http://www.php.net/manual/en/mongocollection.deleteindex.php
493
     * @param string|array $keys Field or fields from which to delete the index.
494
     * @return array Returns the database response.
495
     */
496
    public function deleteIndex($keys)
497
    {
498
        if (is_string($keys)) {
499
            $indexName = $keys;
500
        } elseif (is_array($keys)) {
501
            $indexName = self::toIndexString($keys);
502
        } else {
503
            throw new \InvalidArgumentException();
504
        }
505
        return $this->collection->dropIndex($indexName);
506
    }
507
508
    /**
509
     * Delete all indexes for this collection
510
     * @link http://www.php.net/manual/en/mongocollection.deleteindexes.php
511
     * @return array Returns the database response.
512
     */
513
    public function deleteIndexes()
514
    {
515
        return $this->collection->dropIndexes();
516
    }
517
518
    /**
519
     * Returns an array of index names for this collection
520
     * @link http://www.php.net/manual/en/mongocollection.getindexinfo.php
521
     * @return array Returns a list of index names.
522
     */
523
    public function getIndexInfo()
524
    {
525
        $convertIndex = function($indexInfo) {
526
            return $indexInfo->__debugInfo();
527
        };
528
        return array_map($convertIndex, iterator_to_array($this->collection->listIndexes()));
529
    }
530
531
    /**
532
     * Counts the number of documents in this collection
533
     * @link http://www.php.net/manual/en/mongocollection.count.php
534
     * @param array|stdClass $query
535
     * @return int Returns the number of documents matching the query.
536
     */
537
    public function count($query = array())
538
    {
539
        return $this->collection->count($query);
540
    }
541
542
    /**
543
     * Saves an object to this collection
544
     * @link http://www.php.net/manual/en/mongocollection.save.php
545
     * @param array|object $a Array to save. If an object is used, it may not have protected or private properties.
546
     * Note: If the parameter does not have an _id key or property, a new MongoId instance will be created and assigned to it.
547
     * See MongoCollection::insert() for additional information on this behavior.
548
     * @param array $options Options for the save.
549
     * <dl>
550
     * <dt>"w"
551
     * <dd>See WriteConcerns. The default value for MongoClient is 1.
552
     * <dt>"fsync"
553
     * <dd>Boolean, defaults to FALSE. Forces the insert to be synced to disk before returning success. If TRUE, an acknowledged insert is implied and will override setting w to 0.
554
     * <dt>"timeout"
555
     * <dd>Integer, defaults to MongoCursor::$timeout. If "safe" is set, this sets how long (in milliseconds) for the client to wait for a database response. If the database does not respond within the timeout period, a MongoCursorTimeoutException will be thrown.
556
     * <dt>"safe"
557
     * <dd>Deprecated. Please use the WriteConcern w option.
558
     * </dl>
559
     * @throws MongoException if the inserted document is empty or if it contains zero-length keys. Attempting to insert an object with protected and private properties will cause a zero-length key error.
560
     * @throws MongoCursorException if the "w" option is set and the write fails.
561
     * @throws MongoCursorTimeoutException if the "w" option is set to a value greater than one and the operation takes longer than MongoCursor::$timeout milliseconds to complete. This does not kill the operation on the server, it is a client-side timeout. The operation in MongoCollection::$wtimeout is milliseconds.
562
     * @return array|boolean If w was set, returns an array containing the status of the save.
563
     * Otherwise, returns a boolean representing if the array was not empty (an empty array will not be inserted).
564
     */
565
    public function save($a, array $options = array())
0 ignored issues
show
Unused Code introduced by
The parameter $options is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
566
    {
567
        if (is_object($a)) {
568
            $a = (array)$a;
569
        }
570
        if ( ! array_key_exists('_id', $a)) {
571
            $id = new \MongoId();
572
        } else {
573
            $id = $a['_id'];
574
            unset($a['_id']);
575
        }
576
        $filter = ['_id' => $id];
577
        $filter = TypeConverter::convertLegacyArrayToObject($filter);
578
        $a = TypeConverter::convertLegacyArrayToObject($a);
579
        return $this->collection->updateOne($filter, ['$set' => $a], ['upsert' => true]);
580
    }
581
582
    /**
583
     * Creates a database reference
584
     * @link http://www.php.net/manual/en/mongocollection.createdbref.php
585
     * @param array $a Object to which to create a reference.
586
     * @return array Returns a database reference array.
587
     */
588
    public function createDBRef(array $a)
589
    {
590
        return \MongoDBRef::create($this->name, $a['_id']);
591
    }
592
593
    /**
594
     * Fetches the document pointed to by a database reference
595
     * @link http://www.php.net/manual/en/mongocollection.getdbref.php
596
     * @param array $ref A database reference.
597
     * @return array Returns the database document pointed to by the reference.
598
     */
599
    public function getDBRef(array $ref)
600
    {
601
        return \MongoDBRef::get($this->db, $ref);
602
    }
603
604
    /**
605
     * @param  mixed $keys
606
     * @static
607
     * @return string
608
     */
609
    protected static function toIndexString($keys)
610
    {
611
        $result = '';
612
        foreach ($keys as $name => $direction) {
613
            $result .= sprintf('%s_%d', $name, $direction);
614
        }
615
        return $result;
616
    }
617
618
    /**
619
     * Performs an operation similar to SQL's GROUP BY command
620
     * @link http://www.php.net/manual/en/mongocollection.group.php
621
     * @param mixed $keys Fields to group by. If an array or non-code object is passed, it will be the key used to group results.
622
     * @param array $initial Initial value of the aggregation counter object.
623
     * @param MongoCode $reduce A function that aggregates (reduces) the objects iterated.
624
     * @param array $condition An condition that must be true for a row to be considered.
625
     * @return array
626
     */
627
    public function group($keys, array $initial, $reduce, array $condition = [])
628
    {
629
        if (is_string($reduce)) {
630
            $reduce = new MongoCode($reduce);
631
        }
632
        if ( ! $reduce instanceof MongoCode) {
633
            throw new \InvalidArgumentExcption('reduce parameter should be a string or MongoCode instance.');
634
        }
635
        $command = [
636
            'group' => [
637
                'ns'      => $this->name,
638
                '$reduce' => (string)$reduce,
639
                'initial' => $initial,
640
                'cond'    => $condition,
641
            ],
642
        ];
643
644
        if ($keys instanceof MongoCode) {
645
            $command['group']['$keyf'] = (string)$keys;
646
        } else {
647
            $command['group']['key'] = $keys;
648
        }
649
        if (array_key_exists('condition', $condition)) {
650
            $command['group']['cond'] = $condition['condition'];
651
        }
652
        if (array_key_exists('finalize', $condition)) {
653
            if ($condition['finalize'] instanceof MongoCode) {
654
                $condition['finalize'] = (string)$condition['finalize'];
655
            }
656
            $command['group']['finalize'] = $condition['finalize'];
657
        }
658
659
        $result = $this->db->command($command, [], $hash);
660
        unset($result['waitedMS']);
661
        $result['ok'] = (int)$result['ok'];
662
        if (count($result['retval'])) {
663
            $result['retval'] = current($result['retval']);
664
        }
665
        return $result;
666
    }
667
668
    // public function parallelCollectionScan(int $num_cursors)
0 ignored issues
show
Unused Code Comprehensibility introduced by
46% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
669
    // {
670
    //     $command = [
671
    //         'parallelCollectionScan' => $this->name,
0 ignored issues
show
Unused Code Comprehensibility introduced by
56% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
672
    //         'numCursors'             => $num_cursors,
0 ignored issues
show
Unused Code Comprehensibility introduced by
58% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
673
    //     ];
674
    //     $result = $this->db->command($command, [], $hash);
0 ignored issues
show
Unused Code Comprehensibility introduced by
62% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
675
    //     if ($result) {
0 ignored issues
show
Unused Code Comprehensibility introduced by
63% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
676
    //         return $result;
677
    //     }
678
    //     return false;
679
    // }
680
681
    protected function notImplemented()
682
    {
683
        throw new \Exception('Not implemented');
684
    }
685
686
    /**
687
     * @return \MongoDB\Collection
688
     */
689 View Code Duplication
    private function createCollectionObject()
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
690
    {
691
        $options = [
692
            'readPreference' => $this->readPreference,
693
            'writeConcern' => $this->writeConcern,
694
        ];
695
696
        if ($this->collection === null) {
697
            $this->collection = $this->db->getDb()->selectCollection($this->name, $options);
698
        } else {
699
            $this->collection = $this->collection->withOptions($options);
700
        }
701
    }
702
}
703
704