2016-10-10 14:17:05 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm 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.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
'use strict';
|
2017-10-04 09:28:50 +00:00
|
|
|
|
2018-03-09 09:40:45 +00:00
|
|
|
const URL = require('url-parse');
|
|
|
|
|
2017-01-31 21:56:09 +00:00
|
|
|
let getOwnPropertyDescriptors = Object.getOwnPropertyDescriptors || function(obj) {
|
|
|
|
return Object.getOwnPropertyNames(obj).reduce(function (descriptors, name) {
|
|
|
|
descriptors[name] = Object.getOwnPropertyDescriptor(obj, name);
|
|
|
|
return descriptors;
|
|
|
|
}, {});
|
|
|
|
};
|
|
|
|
|
2017-02-02 01:41:11 +00:00
|
|
|
function setConstructorOnPrototype(klass) {
|
|
|
|
if (klass.prototype.constructor !== klass) {
|
|
|
|
Object.defineProperty(klass.prototype, 'constructor', { value: klass, configurable: true, writable: true });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-10 22:41:27 +00:00
|
|
|
// Return a configuration usable by `Realm.open` when waiting for a download.
|
|
|
|
// It must have caching disabled, and no schema or schema version specified.
|
|
|
|
function waitForDownloadConfig(config) {
|
|
|
|
if (!config) {
|
|
|
|
return {_cache: false};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof config == 'string') {
|
|
|
|
return {path: config, _cache: false};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof config == 'object') {
|
|
|
|
return Object.assign({}, config, {schema: undefined, schemaVersion: undefined, _cache: false});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unknown type. Pass the config through.
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2016-10-10 14:17:05 +00:00
|
|
|
module.exports = function(realmConstructor) {
|
|
|
|
// Add the specified Array methods to the Collection prototype.
|
|
|
|
Object.defineProperties(realmConstructor.Collection.prototype, require('./collection-methods'));
|
|
|
|
|
2017-02-02 01:41:11 +00:00
|
|
|
setConstructorOnPrototype(realmConstructor.Collection);
|
|
|
|
setConstructorOnPrototype(realmConstructor.List);
|
|
|
|
setConstructorOnPrototype(realmConstructor.Results);
|
|
|
|
setConstructorOnPrototype(realmConstructor.Object);
|
|
|
|
|
2017-05-06 23:26:14 +00:00
|
|
|
//Add async open API
|
|
|
|
Object.defineProperties(realmConstructor, getOwnPropertyDescriptors({
|
|
|
|
open(config) {
|
2017-12-18 22:46:26 +00:00
|
|
|
// For local Realms we open the Realm and return it in a resolved Promise.
|
|
|
|
if (!("sync" in config)) {
|
|
|
|
let promise = Promise.resolve(new realmConstructor(config));
|
|
|
|
promise.progress = (callback) => { };
|
|
|
|
return promise;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For synced Realms we open the Realm without specifying the schema and then wait until
|
|
|
|
// the Realm has finished its initial sync with the server. We then reopen it with the correct
|
|
|
|
// schema. This avoids writing the schema to a potentially read-only Realm file, which would
|
|
|
|
// result in sync rejecting the writes. `_waitForDownload` ensures that the session is kept
|
|
|
|
// alive until our callback has returned, which prevents it from being torn down and recreated
|
|
|
|
// when we close the schemaless Realm and open it with the correct schema.
|
2017-09-01 15:12:06 +00:00
|
|
|
let syncSession;
|
|
|
|
let promise = new Promise((resolve, reject) => {
|
2017-10-10 22:41:27 +00:00
|
|
|
let realm = new realmConstructor(waitForDownloadConfig(config));
|
|
|
|
realm._waitForDownload(
|
2017-12-18 22:46:26 +00:00
|
|
|
(session) => { syncSession = session; },
|
2017-09-01 15:12:06 +00:00
|
|
|
(error) => {
|
2017-12-18 22:46:26 +00:00
|
|
|
realm.close();
|
2017-09-01 15:12:06 +00:00
|
|
|
if (error) {
|
2017-12-18 22:46:26 +00:00
|
|
|
setTimeout(() => { reject(error); }, 1);
|
2017-07-18 08:28:33 +00:00
|
|
|
}
|
2017-09-01 15:12:06 +00:00
|
|
|
else {
|
|
|
|
try {
|
2017-10-10 22:41:27 +00:00
|
|
|
let syncedRealm = new realmConstructor(config);
|
2017-11-13 21:31:33 +00:00
|
|
|
setTimeout(() => { resolve(syncedRealm); }, 1);
|
2017-09-01 15:12:06 +00:00
|
|
|
} catch (e) {
|
|
|
|
reject(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-05-06 23:26:14 +00:00
|
|
|
});
|
2017-09-01 15:12:06 +00:00
|
|
|
|
|
|
|
promise.progress = (callback) => {
|
|
|
|
if (syncSession) {
|
|
|
|
syncSession.addProgressNotification('download', 'forCurrentlyOutstandingWork', callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
};
|
|
|
|
return promise;
|
2017-05-06 23:26:14 +00:00
|
|
|
},
|
|
|
|
|
2017-09-13 09:37:44 +00:00
|
|
|
openAsync(config, callback, progressCallback) {
|
2017-08-24 18:01:12 +00:00
|
|
|
const message = "Realm.openAsync is now deprecated in favor of Realm.open. This function will be removed in future versions.";
|
|
|
|
(console.warn || console.log).call(console, message);
|
2017-10-02 17:44:24 +00:00
|
|
|
|
2017-10-10 22:41:27 +00:00
|
|
|
let promise = this.open(config)
|
|
|
|
if (progressCallback) {
|
|
|
|
promise.progress(progressCallback)
|
|
|
|
}
|
|
|
|
|
|
|
|
promise.then(realm => {
|
|
|
|
callback(null, realm)
|
|
|
|
}).catch(error => {
|
|
|
|
callback(error);
|
|
|
|
});
|
2017-05-11 20:54:29 +00:00
|
|
|
},
|
2017-05-06 23:26:14 +00:00
|
|
|
}));
|
|
|
|
|
2016-10-10 14:17:05 +00:00
|
|
|
// Add sync methods
|
|
|
|
if (realmConstructor.Sync) {
|
2017-01-31 21:56:09 +00:00
|
|
|
let userMethods = require('./user-methods');
|
|
|
|
Object.defineProperties(realmConstructor.Sync.User, getOwnPropertyDescriptors(userMethods.static));
|
|
|
|
Object.defineProperties(realmConstructor.Sync.User.prototype, getOwnPropertyDescriptors(userMethods.instance));
|
2017-02-08 12:36:43 +00:00
|
|
|
Object.defineProperty(realmConstructor.Sync.User, '_realmConstructor', { value: realmConstructor });
|
2017-01-31 21:56:09 +00:00
|
|
|
|
2016-10-24 22:12:12 +00:00
|
|
|
realmConstructor.Sync.AuthError = require('./errors').AuthError;
|
2016-10-25 22:04:58 +00:00
|
|
|
|
2017-06-14 10:54:47 +00:00
|
|
|
if (realmConstructor.Sync.removeAllListeners) {
|
|
|
|
process.on('exit', realmConstructor.Sync.removeAllListeners);
|
2016-11-20 18:34:13 +00:00
|
|
|
process.on('SIGINT', function () {
|
2017-06-14 10:54:47 +00:00
|
|
|
realmConstructor.Sync.removeAllListeners();
|
2016-11-20 18:34:13 +00:00
|
|
|
process.exit(2);
|
|
|
|
});
|
|
|
|
process.on('uncaughtException', function(e) {
|
2017-06-14 10:54:47 +00:00
|
|
|
realmConstructor.Sync.removeAllListeners();
|
2016-11-21 23:33:37 +00:00
|
|
|
/* eslint-disable no-console */
|
2016-11-20 18:34:13 +00:00
|
|
|
console.log(e.stack);
|
|
|
|
process.exit(99);
|
|
|
|
});
|
2016-10-25 22:04:58 +00:00
|
|
|
}
|
2017-02-02 01:41:11 +00:00
|
|
|
|
|
|
|
setConstructorOnPrototype(realmConstructor.Sync.User);
|
|
|
|
setConstructorOnPrototype(realmConstructor.Sync.Session);
|
2017-08-14 13:05:52 +00:00
|
|
|
|
2018-03-09 09:40:45 +00:00
|
|
|
// A configuration for a default Realm
|
|
|
|
realmConstructor.defaultSyncConfiguration = function() {
|
|
|
|
let users = this.Sync.User.all;
|
|
|
|
let identities = Object.keys(users);
|
|
|
|
if (identities.length === 1) {
|
|
|
|
let user = users[identities[0]];
|
|
|
|
let url = new URL(user.server);
|
|
|
|
let secure = (url.protocol === 'https:')?'s':'';
|
|
|
|
let port = (url.port === undefined)?'9080':url.port
|
|
|
|
let realmUrl = `realm${secure}://${url.hostname}:${port}/~/default`;
|
|
|
|
|
|
|
|
let config = {
|
|
|
|
sync: {
|
|
|
|
user,
|
|
|
|
url: realmUrl
|
|
|
|
}
|
|
|
|
};
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
new Error(`One and only one user should be logged in but found ${users.length} users.`);
|
|
|
|
}
|
|
|
|
|
2017-08-14 13:05:52 +00:00
|
|
|
if (realmConstructor.Sync._setFeatureToken) {
|
|
|
|
realmConstructor.Sync.setFeatureToken = function(featureToken) {
|
2018-03-08 16:27:13 +00:00
|
|
|
console.log('Realm.Sync.setFeatureToken() is deprecated and you can remove any calls to it.');
|
2017-08-14 13:05:52 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-02 18:29:36 +00:00
|
|
|
|
2018-02-20 12:40:54 +00:00
|
|
|
// Keep these value in sync with subscription_state.hpp
|
|
|
|
realmConstructor.Sync.SubscriptionState = {
|
|
|
|
Error: -1, // An error occurred while creating or processing the partial sync subscription.
|
|
|
|
Creating: 2, // The subscription is being created.
|
|
|
|
Pending: 0, // The subscription was created, but has not yet been processed by the sync server.
|
|
|
|
Complete: 1, // The subscription has been processed by the sync server and data is being synced to the device.
|
|
|
|
Invalidated: 3, // The subscription has been removed.
|
2017-10-04 09:28:50 +00:00
|
|
|
};
|
2018-02-28 22:56:00 +00:00
|
|
|
|
|
|
|
// Define the permission schemas as constructors so that they can be
|
|
|
|
// passed into directly to functions which want object type names
|
|
|
|
const permissionsSchema = Object.freeze({
|
|
|
|
Class: function() {},
|
|
|
|
Permission: function() {},
|
|
|
|
Realm: function() {},
|
|
|
|
Role: function() {},
|
|
|
|
User: function() {},
|
|
|
|
});
|
|
|
|
permissionsSchema.Permission.schema = Object.freeze({
|
|
|
|
name: '__Permission',
|
|
|
|
properties: {
|
|
|
|
role: '__Role',
|
|
|
|
canRead: {type: 'bool', default: false},
|
|
|
|
canUpdate: {type: 'bool', default: false},
|
|
|
|
canDelete: {type: 'bool', default: false},
|
|
|
|
canSetPermissions: {type: 'bool', default: false},
|
|
|
|
canQuery: {type: 'bool', default: false},
|
|
|
|
canCreate: {type: 'bool', default: false},
|
|
|
|
canModifySchema: {type: 'bool', default: false},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
permissionsSchema.User.schema = Object.freeze({
|
|
|
|
name: '__User',
|
|
|
|
primaryKey: 'id',
|
|
|
|
properties: {
|
|
|
|
id: 'string'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
permissionsSchema.Role.schema = Object.freeze({
|
|
|
|
name: '__Role',
|
|
|
|
primaryKey: 'name',
|
|
|
|
properties: {
|
|
|
|
name: 'string',
|
|
|
|
members: '__User[]'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
permissionsSchema.Class.schema = Object.freeze({
|
|
|
|
name: '__Class',
|
|
|
|
primaryKey: 'class_name',
|
|
|
|
properties: {
|
|
|
|
class_name: 'string',
|
|
|
|
permissions: '__Permission[]'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
permissionsSchema.Realm.schema = Object.freeze({
|
|
|
|
name: '__Realm',
|
|
|
|
primaryKey: 'id',
|
|
|
|
properties: {
|
|
|
|
id: 'int',
|
|
|
|
permissions: '__Permission[]'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Object.defineProperty(realmConstructor, 'Permissions', {
|
|
|
|
value: permissionsSchema,
|
|
|
|
configurable: false
|
|
|
|
});
|
2016-10-10 14:17:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Remove this now useless object.
|
|
|
|
var types = Object.freeze({
|
|
|
|
'BOOL': 'bool',
|
|
|
|
'INT': 'int',
|
|
|
|
'FLOAT': 'float',
|
|
|
|
'DOUBLE': 'double',
|
|
|
|
'STRING': 'string',
|
|
|
|
'DATE': 'date',
|
|
|
|
'DATA': 'data',
|
|
|
|
'OBJECT': 'object',
|
|
|
|
'LIST': 'list',
|
|
|
|
});
|
|
|
|
Object.defineProperty(realmConstructor, 'Types', {
|
|
|
|
get: function() {
|
|
|
|
if (typeof console != 'undefined') {
|
|
|
|
/* global console */
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
var stack = new Error().stack.split("\n").slice(2).join("\n");
|
|
|
|
var msg = '`Realm.Types` is deprecated! Please specify the type name as lowercase string instead!\n'+stack;
|
|
|
|
if (console.warn != undefined) {
|
|
|
|
console.warn(msg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
console.log(msg);
|
|
|
|
}
|
|
|
|
/* eslint-enable no-console */
|
|
|
|
}
|
|
|
|
return types;
|
|
|
|
},
|
|
|
|
configurable: true
|
|
|
|
});
|
2017-03-22 12:52:41 +00:00
|
|
|
}
|