DropCollection.php 4.33 KB
Newer Older
1
<?php
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Copyright 2015-2017 MongoDB, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
17 18 19 20 21

namespace MongoDB\Operation;

use MongoDB\Driver\Command;
use MongoDB\Driver\Server;
22
use MongoDB\Driver\WriteConcern;
23
use MongoDB\Driver\Exception\RuntimeException as DriverRuntimeException;
24
use MongoDB\Exception\InvalidArgumentException;
25
use MongoDB\Exception\UnsupportedException;
26 27 28 29 30

/**
 * Operation for the drop command.
 *
 * @api
31 32
 * @see \MongoDB\Collection::drop()
 * @see \MongoDB\Database::dropCollection()
33 34 35 36
 * @see http://docs.mongodb.org/manual/reference/command/drop/
 */
class DropCollection implements Executable
{
37
    private static $errorMessageNamespaceNotFound = 'ns not found';
38
    private static $wireVersionForWriteConcern = 5;
39

40 41
    private $databaseName;
    private $collectionName;
42
    private $options;
43 44 45 46

    /**
     * Constructs a drop command.
     *
47 48 49 50 51
     * Supported options:
     *
     *  * typeMap (array): Type map for BSON deserialization. This will be used
     *    for the returned command result document.
     *
52 53 54 55 56
     *  * writeConcern (MongoDB\Driver\WriteConcern): Write concern.
     *
     *    This is not supported for server versions < 3.4 and will result in an
     *    exception at execution time if used.
     *
57 58
     * @param string $databaseName   Database name
     * @param string $collectionName Collection name
59
     * @param array  $options        Command options
60
     * @throws InvalidArgumentException for parameter/option parsing errors
61
     */
62
    public function __construct($databaseName, $collectionName, array $options = [])
63
    {
64 65 66 67
        if (isset($options['typeMap']) && ! is_array($options['typeMap'])) {
            throw InvalidArgumentException::invalidType('"typeMap" option', $options['typeMap'], 'array');
        }

68 69 70 71
        if (isset($options['writeConcern']) && ! $options['writeConcern'] instanceof WriteConcern) {
            throw InvalidArgumentException::invalidType('"writeConcern" option', $options['writeConcern'], 'MongoDB\Driver\WriteConcern');
        }

72 73
        $this->databaseName = (string) $databaseName;
        $this->collectionName = (string) $collectionName;
74
        $this->options = $options;
75 76 77 78 79 80 81
    }

    /**
     * Execute the operation.
     *
     * @see Executable::execute()
     * @param Server $server
82
     * @return array|object Command result document
83
     * @throws UnsupportedException if writeConcern is used and unsupported
84
     * @throws DriverRuntimeException for other driver errors (e.g. connection errors)
85 86 87
     */
    public function execute(Server $server)
    {
88 89 90 91
        if (isset($this->options['writeConcern']) && ! \MongoDB\server_supports_feature($server, self::$wireVersionForWriteConcern)) {
            throw UnsupportedException::writeConcernNotSupported();
        }

92
        try {
93
            $cursor = $server->executeCommand($this->databaseName, $this->createCommand());
94
        } catch (DriverRuntimeException $e) {
95 96 97 98 99
            /* The server may return an error if the collection does not exist.
             * Check for an error message (unfortunately, there isn't a code)
             * and NOP instead of throwing.
             */
            if ($e->getMessage() === self::$errorMessageNamespaceNotFound) {
100
                return (object) ['ok' => 0, 'errmsg' => self::$errorMessageNamespaceNotFound];
101 102 103 104 105
            }

            throw $e;
        }

106 107 108 109
        if (isset($this->options['typeMap'])) {
            $cursor->setTypeMap($this->options['typeMap']);
        }

110
        return current($cursor->toArray());
111
    }
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127

    /**
     * Create the drop command.
     *
     * @return Command
     */
    private function createCommand()
    {
        $cmd = ['drop' => $this->collectionName];

        if (isset($this->options['writeConcern'])) {
            $cmd['writeConcern'] = \MongoDB\write_concern_as_document($this->options['writeConcern']);
        }

        return new Command($cmd);
    }
128
}