* Introduces flow types for storage * Better typing of QueryOptions * Adds flow types to SchemaCOntroller, - runs flow on pre tests - fixes flow * Adds ClassLevelPermissions type * Moves Controller types into a single file * Changes import styles * Changes import styles * fixing method setIndexesWithSchemaFormat (#4454) Fixing invalid database code in method `setIndexesWithSchemaFormat`: * It must be a transaction, not a task, as it executes multiple database changes * It should contain the initial queries inside the transaction, providing the context, not outside it; * Replaced the code with the ES6 Generator notation * Removing the use of batch, as the value of the result promise is irrelevant, only success/failure that matters * nits * Fixes tests, improves flow typing
638 lines
24 KiB
JavaScript
638 lines
24 KiB
JavaScript
// @flow
|
|
import MongoCollection from './MongoCollection';
|
|
import MongoSchemaCollection from './MongoSchemaCollection';
|
|
import { StorageAdapter } from '../StorageAdapter';
|
|
import type { SchemaType,
|
|
QueryType,
|
|
StorageClass,
|
|
QueryOptions } from '../StorageAdapter';
|
|
import {
|
|
parse as parseUrl,
|
|
format as formatUrl,
|
|
} from '../../../vendor/mongodbUrl';
|
|
import {
|
|
parseObjectToMongoObjectForCreate,
|
|
mongoObjectToParseObject,
|
|
transformKey,
|
|
transformWhere,
|
|
transformUpdate,
|
|
transformPointerString,
|
|
} from './MongoTransform';
|
|
// @flow-disable-next
|
|
import Parse from 'parse/node';
|
|
// @flow-disable-next
|
|
import _ from 'lodash';
|
|
import defaults from '../../../defaults';
|
|
|
|
// @flow-disable-next
|
|
const mongodb = require('mongodb');
|
|
const MongoClient = mongodb.MongoClient;
|
|
const ReadPreference = mongodb.ReadPreference;
|
|
|
|
const MongoSchemaCollectionName = '_SCHEMA';
|
|
|
|
const storageAdapterAllCollections = mongoAdapter => {
|
|
return mongoAdapter.connect()
|
|
.then(() => mongoAdapter.database.collections())
|
|
.then(collections => {
|
|
return collections.filter(collection => {
|
|
if (collection.namespace.match(/\.system\./)) {
|
|
return false;
|
|
}
|
|
// TODO: If you have one app with a collection prefix that happens to be a prefix of another
|
|
// apps prefix, this will go very very badly. We should fix that somehow.
|
|
return (collection.collectionName.indexOf(mongoAdapter._collectionPrefix) == 0);
|
|
});
|
|
});
|
|
}
|
|
|
|
const convertParseSchemaToMongoSchema = ({...schema}) => {
|
|
delete schema.fields._rperm;
|
|
delete schema.fields._wperm;
|
|
|
|
if (schema.className === '_User') {
|
|
// Legacy mongo adapter knows about the difference between password and _hashed_password.
|
|
// Future database adapters will only know about _hashed_password.
|
|
// Note: Parse Server will bring back password with injectDefaultSchema, so we don't need
|
|
// to add _hashed_password back ever.
|
|
delete schema.fields._hashed_password;
|
|
}
|
|
|
|
return schema;
|
|
}
|
|
|
|
// Returns { code, error } if invalid, or { result }, an object
|
|
// suitable for inserting into _SCHEMA collection, otherwise.
|
|
const mongoSchemaFromFieldsAndClassNameAndCLP = (fields, className, classLevelPermissions, indexes) => {
|
|
const mongoObject = {
|
|
_id: className,
|
|
objectId: 'string',
|
|
updatedAt: 'string',
|
|
createdAt: 'string',
|
|
_metadata: undefined,
|
|
};
|
|
|
|
for (const fieldName in fields) {
|
|
mongoObject[fieldName] = MongoSchemaCollection.parseFieldTypeToMongoFieldType(fields[fieldName]);
|
|
}
|
|
|
|
if (typeof classLevelPermissions !== 'undefined') {
|
|
mongoObject._metadata = mongoObject._metadata || {};
|
|
if (!classLevelPermissions) {
|
|
delete mongoObject._metadata.class_permissions;
|
|
} else {
|
|
mongoObject._metadata.class_permissions = classLevelPermissions;
|
|
}
|
|
}
|
|
|
|
if (indexes && typeof indexes === 'object' && Object.keys(indexes).length > 0) {
|
|
mongoObject._metadata = mongoObject._metadata || {};
|
|
mongoObject._metadata.indexes = indexes;
|
|
}
|
|
|
|
if (!mongoObject._metadata) { // cleanup the unused _metadata
|
|
delete mongoObject._metadata;
|
|
}
|
|
|
|
return mongoObject;
|
|
}
|
|
|
|
|
|
export class MongoStorageAdapter implements StorageAdapter {
|
|
// Private
|
|
_uri: string;
|
|
_collectionPrefix: string;
|
|
_mongoOptions: Object;
|
|
// Public
|
|
connectionPromise: Promise<any>;
|
|
database: any;
|
|
client: MongoClient;
|
|
_maxTimeMS: ?number;
|
|
canSortOnJoinTables: boolean;
|
|
|
|
constructor({
|
|
uri = defaults.DefaultMongoURI,
|
|
collectionPrefix = '',
|
|
mongoOptions = {},
|
|
}: any) {
|
|
this._uri = uri;
|
|
this._collectionPrefix = collectionPrefix;
|
|
this._mongoOptions = mongoOptions;
|
|
|
|
// MaxTimeMS is not a global MongoDB client option, it is applied per operation.
|
|
this._maxTimeMS = mongoOptions.maxTimeMS;
|
|
this.canSortOnJoinTables = true;
|
|
delete mongoOptions.maxTimeMS;
|
|
}
|
|
|
|
connect() {
|
|
if (this.connectionPromise) {
|
|
return this.connectionPromise;
|
|
}
|
|
|
|
// parsing and re-formatting causes the auth value (if there) to get URI
|
|
// encoded
|
|
const encodedUri = formatUrl(parseUrl(this._uri));
|
|
|
|
this.connectionPromise = MongoClient.connect(encodedUri, this._mongoOptions).then(client => {
|
|
// Starting mongoDB 3.0, the MongoClient.connect don't return a DB anymore but a client
|
|
// Fortunately, we can get back the options and use them to select the proper DB.
|
|
// https://github.com/mongodb/node-mongodb-native/blob/2c35d76f08574225b8db02d7bef687123e6bb018/lib/mongo_client.js#L885
|
|
const options = client.s.options;
|
|
const database = client.db(options.dbName);
|
|
if (!database) {
|
|
delete this.connectionPromise;
|
|
return;
|
|
}
|
|
database.on('error', () => {
|
|
delete this.connectionPromise;
|
|
});
|
|
database.on('close', () => {
|
|
delete this.connectionPromise;
|
|
});
|
|
this.client = client;
|
|
this.database = database;
|
|
}).catch((err) => {
|
|
delete this.connectionPromise;
|
|
return Promise.reject(err);
|
|
});
|
|
|
|
return this.connectionPromise;
|
|
}
|
|
|
|
handleShutdown() {
|
|
if (!this.client) {
|
|
return;
|
|
}
|
|
this.client.close(false);
|
|
}
|
|
|
|
_adaptiveCollection(name: string) {
|
|
return this.connect()
|
|
.then(() => this.database.collection(this._collectionPrefix + name))
|
|
.then(rawCollection => new MongoCollection(rawCollection));
|
|
}
|
|
|
|
_schemaCollection(): Promise<MongoSchemaCollection> {
|
|
return this.connect()
|
|
.then(() => this._adaptiveCollection(MongoSchemaCollectionName))
|
|
.then(collection => new MongoSchemaCollection(collection));
|
|
}
|
|
|
|
classExists(name: string) {
|
|
return this.connect().then(() => {
|
|
return this.database.listCollections({ name: this._collectionPrefix + name }).toArray();
|
|
}).then(collections => {
|
|
return collections.length > 0;
|
|
});
|
|
}
|
|
|
|
setClassLevelPermissions(className: string, CLPs: any): Promise<void> {
|
|
return this._schemaCollection()
|
|
.then(schemaCollection => schemaCollection.updateSchema(className, {
|
|
$set: { '_metadata.class_permissions': CLPs }
|
|
}));
|
|
}
|
|
|
|
setIndexesWithSchemaFormat(className: string, submittedIndexes: any, existingIndexes: any = {}, fields: any): Promise<void> {
|
|
if (submittedIndexes === undefined) {
|
|
return Promise.resolve();
|
|
}
|
|
if (Object.keys(existingIndexes).length === 0) {
|
|
existingIndexes = { _id_: { _id: 1} };
|
|
}
|
|
const deletePromises = [];
|
|
const insertedIndexes = [];
|
|
Object.keys(submittedIndexes).forEach(name => {
|
|
const field = submittedIndexes[name];
|
|
if (existingIndexes[name] && field.__op !== 'Delete') {
|
|
throw new Parse.Error(Parse.Error.INVALID_QUERY, `Index ${name} exists, cannot update.`);
|
|
}
|
|
if (!existingIndexes[name] && field.__op === 'Delete') {
|
|
throw new Parse.Error(Parse.Error.INVALID_QUERY, `Index ${name} does not exist, cannot delete.`);
|
|
}
|
|
if (field.__op === 'Delete') {
|
|
const promise = this.dropIndex(className, name);
|
|
deletePromises.push(promise);
|
|
delete existingIndexes[name];
|
|
} else {
|
|
Object.keys(field).forEach(key => {
|
|
if (!fields.hasOwnProperty(key)) {
|
|
throw new Parse.Error(Parse.Error.INVALID_QUERY, `Field ${key} does not exist, cannot add index.`);
|
|
}
|
|
});
|
|
existingIndexes[name] = field;
|
|
insertedIndexes.push({
|
|
key: field,
|
|
name,
|
|
});
|
|
}
|
|
});
|
|
let insertPromise = Promise.resolve();
|
|
if (insertedIndexes.length > 0) {
|
|
insertPromise = this.createIndexes(className, insertedIndexes);
|
|
}
|
|
return Promise.all(deletePromises)
|
|
.then(() => insertPromise)
|
|
.then(() => this._schemaCollection())
|
|
.then(schemaCollection => schemaCollection.updateSchema(className, {
|
|
$set: { '_metadata.indexes': existingIndexes }
|
|
}));
|
|
}
|
|
|
|
setIndexesFromMongo(className: string) {
|
|
return this.getIndexes(className).then((indexes) => {
|
|
indexes = indexes.reduce((obj, index) => {
|
|
if (index.key._fts) {
|
|
delete index.key._fts;
|
|
delete index.key._ftsx;
|
|
for (const field in index.weights) {
|
|
index.key[field] = 'text';
|
|
}
|
|
}
|
|
obj[index.name] = index.key;
|
|
return obj;
|
|
}, {});
|
|
return this._schemaCollection()
|
|
.then(schemaCollection => schemaCollection.updateSchema(className, {
|
|
$set: { '_metadata.indexes': indexes }
|
|
}));
|
|
}).catch(() => {
|
|
// Ignore if collection not found
|
|
return Promise.resolve();
|
|
});
|
|
}
|
|
|
|
createClass(className: string, schema: SchemaType): Promise<void> {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const mongoObject = mongoSchemaFromFieldsAndClassNameAndCLP(schema.fields, className, schema.classLevelPermissions, schema.indexes);
|
|
mongoObject._id = className;
|
|
return this.setIndexesWithSchemaFormat(className, schema.indexes, {}, schema.fields)
|
|
.then(() => this._schemaCollection())
|
|
.then(schemaCollection => schemaCollection.insertSchema(mongoObject));
|
|
}
|
|
|
|
addFieldIfNotExists(className: string, fieldName: string, type: any): Promise<void> {
|
|
return this._schemaCollection()
|
|
.then(schemaCollection => schemaCollection.addFieldIfNotExists(className, fieldName, type))
|
|
.then(() => this.createIndexesIfNeeded(className, fieldName, type));
|
|
}
|
|
|
|
// Drops a collection. Resolves with true if it was a Parse Schema (eg. _User, Custom, etc.)
|
|
// and resolves with false if it wasn't (eg. a join table). Rejects if deletion was impossible.
|
|
deleteClass(className: string) {
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.drop())
|
|
.catch(error => {
|
|
// 'ns not found' means collection was already gone. Ignore deletion attempt.
|
|
if (error.message == 'ns not found') {
|
|
return;
|
|
}
|
|
throw error;
|
|
})
|
|
// We've dropped the collection, now remove the _SCHEMA document
|
|
.then(() => this._schemaCollection())
|
|
.then(schemaCollection => schemaCollection.findAndDeleteSchema(className))
|
|
}
|
|
|
|
// Delete all data known to this adapter. Used for testing.
|
|
deleteAllClasses() {
|
|
return storageAdapterAllCollections(this)
|
|
.then(collections => Promise.all(collections.map(collection => collection.drop())));
|
|
}
|
|
|
|
// Remove the column and all the data. For Relations, the _Join collection is handled
|
|
// specially, this function does not delete _Join columns. It should, however, indicate
|
|
// that the relation fields does not exist anymore. In mongo, this means removing it from
|
|
// the _SCHEMA collection. There should be no actual data in the collection under the same name
|
|
// as the relation column, so it's fine to attempt to delete it. If the fields listed to be
|
|
// deleted do not exist, this function should return successfully anyways. Checking for
|
|
// attempts to delete non-existent fields is the responsibility of Parse Server.
|
|
|
|
// Pointer field names are passed for legacy reasons: the original mongo
|
|
// format stored pointer field names differently in the database, and therefore
|
|
// needed to know the type of the field before it could delete it. Future database
|
|
// adapters should ignore the pointerFieldNames argument. All the field names are in
|
|
// fieldNames, they show up additionally in the pointerFieldNames database for use
|
|
// by the mongo adapter, which deals with the legacy mongo format.
|
|
|
|
// This function is not obligated to delete fields atomically. It is given the field
|
|
// names in a list so that databases that are capable of deleting fields atomically
|
|
// may do so.
|
|
|
|
// Returns a Promise.
|
|
deleteFields(className: string, schema: SchemaType, fieldNames: string[]) {
|
|
const mongoFormatNames = fieldNames.map(fieldName => {
|
|
if (schema.fields[fieldName].type === 'Pointer') {
|
|
return `_p_${fieldName}`
|
|
} else {
|
|
return fieldName;
|
|
}
|
|
});
|
|
const collectionUpdate = { '$unset' : {} };
|
|
mongoFormatNames.forEach(name => {
|
|
collectionUpdate['$unset'][name] = null;
|
|
});
|
|
|
|
const schemaUpdate = { '$unset' : {} };
|
|
fieldNames.forEach(name => {
|
|
schemaUpdate['$unset'][name] = null;
|
|
});
|
|
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.updateMany({}, collectionUpdate))
|
|
.then(() => this._schemaCollection())
|
|
.then(schemaCollection => schemaCollection.updateSchema(className, schemaUpdate));
|
|
}
|
|
|
|
// Return a promise for all schemas known to this adapter, in Parse format. In case the
|
|
// schemas cannot be retrieved, returns a promise that rejects. Requirements for the
|
|
// rejection reason are TBD.
|
|
getAllClasses(): Promise<StorageClass[]> {
|
|
return this._schemaCollection().then(schemasCollection => schemasCollection._fetchAllSchemasFrom_SCHEMA());
|
|
}
|
|
|
|
// Return a promise for the schema with the given name, in Parse format. If
|
|
// this adapter doesn't know about the schema, return a promise that rejects with
|
|
// undefined as the reason.
|
|
getClass(className: string): Promise<StorageClass> {
|
|
return this._schemaCollection()
|
|
.then(schemasCollection => schemasCollection._fetchOneSchemaFrom_SCHEMA(className))
|
|
}
|
|
|
|
// TODO: As yet not particularly well specified. Creates an object. Maybe shouldn't even need the schema,
|
|
// and should infer from the type. Or maybe does need the schema for validations. Or maybe needs
|
|
// the schema only for the legacy mongo format. We'll figure that out later.
|
|
createObject(className: string, schema: SchemaType, object: any) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const mongoObject = parseObjectToMongoObjectForCreate(className, object, schema);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.insertOne(mongoObject))
|
|
.catch(error => {
|
|
if (error.code === 11000) { // Duplicate value
|
|
const err = new Parse.Error(Parse.Error.DUPLICATE_VALUE, 'A duplicate value for a field with unique values was provided');
|
|
err.underlyingError = error;
|
|
if (error.message) {
|
|
const matches = error.message.match(/index:[\sa-zA-Z0-9_\-\.]+\$?([a-zA-Z_-]+)_1/);
|
|
if (matches && Array.isArray(matches)) {
|
|
err.userInfo = { duplicated_field: matches[1] };
|
|
}
|
|
}
|
|
throw err;
|
|
}
|
|
throw error;
|
|
});
|
|
}
|
|
|
|
// Remove all objects that match the given Parse Query.
|
|
// If no objects match, reject with OBJECT_NOT_FOUND. If objects are found and deleted, resolve with undefined.
|
|
// If there is some other error, reject with INTERNAL_SERVER_ERROR.
|
|
deleteObjectsByQuery(className: string, schema: SchemaType, query: QueryType) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => {
|
|
const mongoWhere = transformWhere(className, query, schema);
|
|
return collection.deleteMany(mongoWhere)
|
|
})
|
|
.then(({ result }) => {
|
|
if (result.n === 0) {
|
|
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Object not found.');
|
|
}
|
|
return Promise.resolve();
|
|
}, () => {
|
|
throw new Parse.Error(Parse.Error.INTERNAL_SERVER_ERROR, 'Database adapter error');
|
|
});
|
|
}
|
|
|
|
// Apply the update to all objects that match the given Parse Query.
|
|
updateObjectsByQuery(className: string, schema: SchemaType, query: QueryType, update: any) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const mongoUpdate = transformUpdate(className, update, schema);
|
|
const mongoWhere = transformWhere(className, query, schema);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.updateMany(mongoWhere, mongoUpdate));
|
|
}
|
|
|
|
// Atomically finds and updates an object based on query.
|
|
// Return value not currently well specified.
|
|
findOneAndUpdate(className: string, schema: SchemaType, query: QueryType, update: any) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const mongoUpdate = transformUpdate(className, update, schema);
|
|
const mongoWhere = transformWhere(className, query, schema);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._mongoCollection.findAndModify(mongoWhere, [], mongoUpdate, { new: true }))
|
|
.then(result => mongoObjectToParseObject(className, result.value, schema));
|
|
}
|
|
|
|
// Hopefully we can get rid of this. It's only used for config and hooks.
|
|
upsertOneObject(className: string, schema: SchemaType, query: QueryType, update: any) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const mongoUpdate = transformUpdate(className, update, schema);
|
|
const mongoWhere = transformWhere(className, query, schema);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.upsertOne(mongoWhere, mongoUpdate));
|
|
}
|
|
|
|
// Executes a find. Accepts: className, query in Parse format, and { skip, limit, sort }.
|
|
find(className: string, schema: SchemaType, query: QueryType, { skip, limit, sort, keys, readPreference }: QueryOptions): Promise<any> {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const mongoWhere = transformWhere(className, query, schema);
|
|
const mongoSort = _.mapKeys(sort, (value, fieldName) => transformKey(className, fieldName, schema));
|
|
const mongoKeys = _.reduce(keys, (memo, key) => {
|
|
memo[transformKey(className, key, schema)] = 1;
|
|
return memo;
|
|
}, {});
|
|
|
|
readPreference = this._parseReadPreference(readPreference);
|
|
return this.createTextIndexesIfNeeded(className, query, schema)
|
|
.then(() => this._adaptiveCollection(className))
|
|
.then(collection => collection.find(mongoWhere, {
|
|
skip,
|
|
limit,
|
|
sort: mongoSort,
|
|
keys: mongoKeys,
|
|
maxTimeMS: this._maxTimeMS,
|
|
readPreference,
|
|
}))
|
|
.then(objects => objects.map(object => mongoObjectToParseObject(className, object, schema)))
|
|
}
|
|
|
|
// Create a unique index. Unique indexes on nullable fields are not allowed. Since we don't
|
|
// currently know which fields are nullable and which aren't, we ignore that criteria.
|
|
// As such, we shouldn't expose this function to users of parse until we have an out-of-band
|
|
// Way of determining if a field is nullable. Undefined doesn't count against uniqueness,
|
|
// which is why we use sparse indexes.
|
|
ensureUniqueness(className: string, schema: SchemaType, fieldNames: string[]) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const indexCreationRequest = {};
|
|
const mongoFieldNames = fieldNames.map(fieldName => transformKey(className, fieldName, schema));
|
|
mongoFieldNames.forEach(fieldName => {
|
|
indexCreationRequest[fieldName] = 1;
|
|
});
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._ensureSparseUniqueIndexInBackground(indexCreationRequest))
|
|
.catch(error => {
|
|
if (error.code === 11000) {
|
|
throw new Parse.Error(Parse.Error.DUPLICATE_VALUE, 'Tried to ensure field uniqueness for a class that already has duplicates.');
|
|
}
|
|
throw error;
|
|
});
|
|
}
|
|
|
|
// Used in tests
|
|
_rawFind(className: string, query: QueryType) {
|
|
return this._adaptiveCollection(className).then(collection => collection.find(query, {
|
|
maxTimeMS: this._maxTimeMS,
|
|
}));
|
|
}
|
|
|
|
// Executes a count.
|
|
count(className: string, schema: SchemaType, query: QueryType, readPreference: ?string) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
readPreference = this._parseReadPreference(readPreference);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.count(transformWhere(className, query, schema), {
|
|
maxTimeMS: this._maxTimeMS,
|
|
readPreference,
|
|
}));
|
|
}
|
|
|
|
distinct(className: string, schema: SchemaType, query: QueryType, fieldName: string) {
|
|
schema = convertParseSchemaToMongoSchema(schema);
|
|
const isPointerField = schema.fields[fieldName] && schema.fields[fieldName].type === 'Pointer';
|
|
if (isPointerField) {
|
|
fieldName = `_p_${fieldName}`
|
|
}
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.distinct(fieldName, transformWhere(className, query, schema)))
|
|
.then(objects => objects.map(object => {
|
|
if (isPointerField) {
|
|
const field = fieldName.substring(3);
|
|
return transformPointerString(schema, field, object);
|
|
}
|
|
return mongoObjectToParseObject(className, object, schema);
|
|
}));
|
|
}
|
|
|
|
aggregate(className: string, schema: any, pipeline: any, readPreference: ?string) {
|
|
readPreference = this._parseReadPreference(readPreference);
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection.aggregate(pipeline, { readPreference, maxTimeMS: this._maxTimeMS }))
|
|
.then(results => {
|
|
results.forEach(result => {
|
|
if (result.hasOwnProperty('_id')) {
|
|
result.objectId = result._id;
|
|
delete result._id;
|
|
}
|
|
});
|
|
return results;
|
|
})
|
|
.then(objects => objects.map(object => mongoObjectToParseObject(className, object, schema)));
|
|
}
|
|
|
|
_parseReadPreference(readPreference: ?string): ?string {
|
|
switch (readPreference) {
|
|
case 'PRIMARY':
|
|
readPreference = ReadPreference.PRIMARY;
|
|
break;
|
|
case 'PRIMARY_PREFERRED':
|
|
readPreference = ReadPreference.PRIMARY_PREFERRED;
|
|
break;
|
|
case 'SECONDARY':
|
|
readPreference = ReadPreference.SECONDARY;
|
|
break;
|
|
case 'SECONDARY_PREFERRED':
|
|
readPreference = ReadPreference.SECONDARY_PREFERRED;
|
|
break;
|
|
case 'NEAREST':
|
|
readPreference = ReadPreference.NEAREST;
|
|
break;
|
|
case undefined:
|
|
// this is to match existing tests, which were failing as mongodb@3.0 don't report readPreference anymore
|
|
readPreference = ReadPreference.PRIMARY;
|
|
break;
|
|
default:
|
|
throw new Parse.Error(Parse.Error.INVALID_QUERY, 'Not supported read preference.');
|
|
}
|
|
return readPreference;
|
|
}
|
|
|
|
performInitialization(): Promise<void> {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
createIndex(className: string, index: any) {
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._mongoCollection.createIndex(index));
|
|
}
|
|
|
|
createIndexes(className: string, indexes: any) {
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._mongoCollection.createIndexes(indexes));
|
|
}
|
|
|
|
createIndexesIfNeeded(className: string, fieldName: string, type: any) {
|
|
if (type && type.type === 'Polygon') {
|
|
const index = {
|
|
[fieldName]: '2dsphere'
|
|
};
|
|
return this.createIndex(className, index);
|
|
}
|
|
return Promise.resolve();
|
|
}
|
|
|
|
createTextIndexesIfNeeded(className: string, query: QueryType, schema: any): Promise<void> {
|
|
for(const fieldName in query) {
|
|
if (!query[fieldName] || !query[fieldName].$text) {
|
|
continue;
|
|
}
|
|
const existingIndexes = schema.indexes;
|
|
for (const key in existingIndexes) {
|
|
const index = existingIndexes[key];
|
|
if (index.hasOwnProperty(fieldName)) {
|
|
return Promise.resolve();
|
|
}
|
|
}
|
|
const indexName = `${fieldName}_text`;
|
|
const textIndex = {
|
|
[indexName]: { [fieldName]: 'text' }
|
|
};
|
|
return this.setIndexesWithSchemaFormat(className, textIndex, existingIndexes, schema.fields)
|
|
.catch((error) => {
|
|
if (error.code === 85) { // Index exist with different options
|
|
return this.setIndexesFromMongo(className);
|
|
}
|
|
throw error;
|
|
});
|
|
}
|
|
return Promise.resolve();
|
|
}
|
|
|
|
getIndexes(className: string) {
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._mongoCollection.indexes());
|
|
}
|
|
|
|
dropIndex(className: string, index: any) {
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._mongoCollection.dropIndex(index));
|
|
}
|
|
|
|
dropAllIndexes(className: string) {
|
|
return this._adaptiveCollection(className)
|
|
.then(collection => collection._mongoCollection.dropIndexes());
|
|
}
|
|
|
|
updateSchemaWithIndexes(): Promise<any> {
|
|
return this.getAllClasses()
|
|
.then((classes) => {
|
|
const promises = classes.map((schema) => {
|
|
return this.setIndexesFromMongo(schema.className);
|
|
});
|
|
return Promise.all(promises);
|
|
});
|
|
}
|
|
}
|
|
|
|
export default MongoStorageAdapter;
|