CreateCollection.php 10.2 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\Session;
23
use MongoDB\Driver\WriteConcern;
24
use MongoDB\Driver\Exception\RuntimeException as DriverRuntimeException;
25
use MongoDB\Exception\InvalidArgumentException;
26
use MongoDB\Exception\UnsupportedException;
27 28 29 30 31

/**
 * Operation for the create command.
 *
 * @api
32
 * @see \MongoDB\Database::createCollection()
33 34 35 36 37 38 39
 * @see http://docs.mongodb.org/manual/reference/command/create/
 */
class CreateCollection implements Executable
{
    const USE_POWER_OF_2_SIZES = 1;
    const NO_PADDING = 2;

40
    private static $wireVersionForCollation = 5;
41
    private static $wireVersionForWriteConcern = 5;
42

43 44
    private $databaseName;
    private $collectionName;
Jeremy Mikola's avatar
Jeremy Mikola committed
45
    private $options = [];
46 47 48 49 50 51 52 53 54 55

    /**
     * Constructs a create command.
     *
     * Supported options:
     *
     *  * autoIndexId (boolean): Specify false to disable the automatic creation
     *    of an index on the _id field. For replica sets, this option cannot be
     *    false. The default is true.
     *
56 57 58 59
     *    This option has been deprecated since MongoDB 3.2. As of MongoDB 4.0,
     *    this option cannot be false when creating a replicated collection
     *    (i.e. a collection outside of the local database in any mongod mode).
     *
60 61 62
     *  * capped (boolean): Specify true to create a capped collection. If set,
     *    the size option must also be specified. The default is false.
     *
63 64 65 66 67
     *  * collation (document): Collation specification.
     *
     *    This is not supported for server versions < 3.4 and will result in an
     *    exception at execution time if used.
     *
68
     *  * flags (integer): Options for the MMAPv1 storage engine only. Must be a
69 70 71
     *    bitwise combination CreateCollection::USE_POWER_OF_2_SIZES and
     *    CreateCollection::NO_PADDING. The default is
     *    CreateCollection::USE_POWER_OF_2_SIZES.
72
     *
73 74 75
     *  * indexOptionDefaults (document): Default configuration for indexes when
     *    creating the collection.
     *
76 77 78 79 80 81
     *  * max (integer): The maximum number of documents allowed in the capped
     *    collection. The size option takes precedence over this limit.
     *
     *  * maxTimeMS (integer): The maximum amount of time to allow the query to
     *    run.
     *
82 83 84 85
     *  * session (MongoDB\Driver\Session): Client session.
     *
     *    Sessions are not supported for server versions < 3.6.
     *
86 87 88 89
     *  * size (integer): The maximum number of bytes for a capped collection.
     *
     *  * storageEngine (document): Storage engine options.
     *
90 91 92
     *  * typeMap (array): Type map for BSON deserialization. This will only be
     *    used for the returned command result document.
     *
93 94 95 96 97 98
     *  * validationAction (string): Validation action.
     *
     *  * validationLevel (string): Validation level.
     *
     *  * validator (document): Validation rules or expressions.
     *
99 100 101 102 103
     *  * 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.
     *
104
     * @see http://source.wiredtiger.com/2.4.1/struct_w_t___s_e_s_s_i_o_n.html#a358ca4141d59c345f401c58501276bbb
105
     * @see https://docs.mongodb.org/manual/core/document-validation/
106 107 108
     * @param string $databaseName   Database name
     * @param string $collectionName Collection name
     * @param array  $options        Command options
109
     * @throws InvalidArgumentException for parameter/option parsing errors
110
     */
Jeremy Mikola's avatar
Jeremy Mikola committed
111
    public function __construct($databaseName, $collectionName, array $options = [])
112 113
    {
        if (isset($options['autoIndexId']) && ! is_bool($options['autoIndexId'])) {
114
            throw InvalidArgumentException::invalidType('"autoIndexId" option', $options['autoIndexId'], 'boolean');
115 116 117
        }

        if (isset($options['capped']) && ! is_bool($options['capped'])) {
118
            throw InvalidArgumentException::invalidType('"capped" option', $options['capped'], 'boolean');
119 120
        }

121 122 123 124
        if (isset($options['collation']) && ! is_array($options['collation']) && ! is_object($options['collation'])) {
            throw InvalidArgumentException::invalidType('"collation" option', $options['collation'], 'array or object');
        }

125
        if (isset($options['flags']) && ! is_integer($options['flags'])) {
126
            throw InvalidArgumentException::invalidType('"flags" option', $options['flags'], 'integer');
127 128
        }

129
        if (isset($options['indexOptionDefaults']) && ! is_array($options['indexOptionDefaults']) && ! is_object($options['indexOptionDefaults'])) {
130
            throw InvalidArgumentException::invalidType('"indexOptionDefaults" option', $options['indexOptionDefaults'], 'array or object');
131 132
        }

133
        if (isset($options['max']) && ! is_integer($options['max'])) {
134
            throw InvalidArgumentException::invalidType('"max" option', $options['max'], 'integer');
135 136 137
        }

        if (isset($options['maxTimeMS']) && ! is_integer($options['maxTimeMS'])) {
138
            throw InvalidArgumentException::invalidType('"maxTimeMS" option', $options['maxTimeMS'], 'integer');
139 140
        }

141 142 143 144
        if (isset($options['session']) && ! $options['session'] instanceof Session) {
            throw InvalidArgumentException::invalidType('"session" option', $options['session'], 'MongoDB\Driver\Session');
        }

145
        if (isset($options['size']) && ! is_integer($options['size'])) {
146
            throw InvalidArgumentException::invalidType('"size" option', $options['size'], 'integer');
147 148 149
        }

        if (isset($options['storageEngine']) && ! is_array($options['storageEngine']) && ! is_object($options['storageEngine'])) {
150
            throw InvalidArgumentException::invalidType('"storageEngine" option', $options['storageEngine'], 'array or object');
151 152
        }

153 154 155 156
        if (isset($options['typeMap']) && ! is_array($options['typeMap'])) {
            throw InvalidArgumentException::invalidType('"typeMap" option', $options['typeMap'], 'array');
        }

157
        if (isset($options['validationAction']) && ! is_string($options['validationAction'])) {
158
            throw InvalidArgumentException::invalidType('"validationAction" option', $options['validationAction'], 'string');
159 160 161
        }

        if (isset($options['validationLevel']) && ! is_string($options['validationLevel'])) {
162
            throw InvalidArgumentException::invalidType('"validationLevel" option', $options['validationLevel'], 'string');
163 164 165
        }

        if (isset($options['validator']) && ! is_array($options['validator']) && ! is_object($options['validator'])) {
166
            throw InvalidArgumentException::invalidType('"validator" option', $options['validator'], 'array or object');
167 168
        }

169 170 171 172
        if (isset($options['writeConcern']) && ! $options['writeConcern'] instanceof WriteConcern) {
            throw InvalidArgumentException::invalidType('"writeConcern" option', $options['writeConcern'], 'MongoDB\Driver\WriteConcern');
        }

173 174 175 176
        if (isset($options['writeConcern']) && $options['writeConcern']->isDefault()) {
            unset($options['writeConcern']);
        }

177 178 179 180
        if (isset($options['autoIndexId'])) {
            trigger_error('The "autoIndexId" option is deprecated and will be removed in a future release', E_USER_DEPRECATED);
        }

181 182 183 184 185 186 187 188 189 190
        $this->databaseName = (string) $databaseName;
        $this->collectionName = (string) $collectionName;
        $this->options = $options;
    }

    /**
     * Execute the operation.
     *
     * @see Executable::execute()
     * @param Server $server
191
     * @return array|object Command result document
192
     * @throws UnsupportedException if collation or write concern is used and unsupported
193
     * @throws DriverRuntimeException for other driver errors (e.g. connection errors)
194 195 196
     */
    public function execute(Server $server)
    {
197 198 199 200
        if (isset($this->options['collation']) && ! \MongoDB\server_supports_feature($server, self::$wireVersionForCollation)) {
            throw UnsupportedException::collationNotSupported();
        }

201 202 203 204
        if (isset($this->options['writeConcern']) && ! \MongoDB\server_supports_feature($server, self::$wireVersionForWriteConcern)) {
            throw UnsupportedException::writeConcernNotSupported();
        }

205
        $cursor = $server->executeWriteCommand($this->databaseName, $this->createCommand(), $this->createOptions());
206

207 208 209 210
        if (isset($this->options['typeMap'])) {
            $cursor->setTypeMap($this->options['typeMap']);
        }

211
        return current($cursor->toArray());
212 213 214 215 216 217 218 219 220
    }

    /**
     * Create the create command.
     *
     * @return Command
     */
    private function createCommand()
    {
Jeremy Mikola's avatar
Jeremy Mikola committed
221
        $cmd = ['create' => $this->collectionName];
222

223
        foreach (['autoIndexId', 'capped', 'flags', 'max', 'maxTimeMS', 'size', 'validationAction', 'validationLevel'] as $option) {
224 225 226 227 228
            if (isset($this->options[$option])) {
                $cmd[$option] = $this->options[$option];
            }
        }

229 230 231 232
        foreach (['collation', 'indexOptionDefaults', 'storageEngine', 'validator'] as $option) {
            if (isset($this->options[$option])) {
                $cmd[$option] = (object) $this->options[$option];
            }
233 234
        }

235 236 237 238 239 240 241 242 243 244 245 246 247
        return new Command($cmd);
    }

    /**
     * Create options for executing the command.
     *
     * @see http://php.net/manual/en/mongodb-driver-server.executewritecommand.php
     * @return array
     */
    private function createOptions()
    {
        $options = [];

248 249 250 251
        if (isset($this->options['session'])) {
            $options['session'] = $this->options['session'];
        }

252
        if (isset($this->options['writeConcern'])) {
253
            $options['writeConcern'] = $this->options['writeConcern'];
254 255
        }

256
        return $options;
257 258
    }
}