2017-01-31 21:56:09 +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.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-10-20 00:55:46 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-11-08 16:59:30 +00:00
|
|
|
const AuthError = require('./errors').AuthError;
|
2017-08-29 13:23:22 +00:00
|
|
|
const permissionApis = require('./permission-api');
|
2016-11-08 16:59:30 +00:00
|
|
|
|
2016-10-20 00:55:46 +00:00
|
|
|
function node_require(module) {
|
|
|
|
return require(module);
|
|
|
|
}
|
|
|
|
|
2017-03-20 11:52:41 +00:00
|
|
|
function checkTypes(args, types) {
|
|
|
|
args = Array.prototype.slice.call(args);
|
|
|
|
for (var i = 0; i < types.length; ++i) {
|
2017-09-12 13:17:59 +00:00
|
|
|
if (args.length > i && typeof args[i] !== types[i]) {
|
2017-03-20 11:52:41 +00:00
|
|
|
throw new TypeError('param ' + i + ' must be of type ' + types[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-10 14:53:00 +00:00
|
|
|
/* global fetch */
|
2017-01-31 13:07:29 +00:00
|
|
|
const performFetch = typeof fetch === 'undefined' ? node_require('node-fetch') : fetch;
|
2016-10-20 00:55:46 +00:00
|
|
|
|
2017-01-31 21:56:09 +00:00
|
|
|
const url_parse = require('url-parse');
|
2016-10-20 00:55:46 +00:00
|
|
|
|
2017-07-06 09:27:01 +00:00
|
|
|
const postHeaders = {
|
2016-10-20 00:55:46 +00:00
|
|
|
'content-type': 'application/json;charset=utf-8',
|
|
|
|
'accept': 'application/json'
|
|
|
|
};
|
|
|
|
|
2016-11-08 16:59:30 +00:00
|
|
|
function auth_url(server) {
|
2017-07-06 09:27:01 +00:00
|
|
|
if (server.charAt(server.length - 1) != '/') {
|
2016-11-08 16:59:30 +00:00
|
|
|
return server + '/auth';
|
|
|
|
}
|
|
|
|
return server + 'auth';
|
|
|
|
}
|
|
|
|
|
2017-02-03 15:40:13 +00:00
|
|
|
function scheduleAccessTokenRefresh(user, localRealmPath, realmUrl, expirationDate) {
|
|
|
|
const refreshBuffer = 10 * 1000;
|
|
|
|
const timeout = expirationDate - Date.now() - refreshBuffer;
|
|
|
|
setTimeout(() => refreshAccessToken(user, localRealmPath, realmUrl), timeout);
|
|
|
|
}
|
|
|
|
|
2017-06-27 18:32:34 +00:00
|
|
|
function print_error() {
|
|
|
|
(console.error || console.log).apply(console, arguments);
|
|
|
|
}
|
|
|
|
|
2017-02-03 15:40:13 +00:00
|
|
|
function refreshAccessToken(user, localRealmPath, realmUrl) {
|
2017-02-01 13:18:59 +00:00
|
|
|
let parsedRealmUrl = url_parse(realmUrl);
|
|
|
|
const url = auth_url(user.server);
|
|
|
|
const options = {
|
2017-01-31 13:07:29 +00:00
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify({
|
|
|
|
data: user.token,
|
2017-02-01 13:18:59 +00:00
|
|
|
path: parsedRealmUrl.pathname,
|
2017-01-31 13:07:29 +00:00
|
|
|
provider: 'realm',
|
|
|
|
app_id: ''
|
|
|
|
}),
|
|
|
|
headers: postHeaders
|
|
|
|
};
|
2017-02-01 13:18:59 +00:00
|
|
|
performFetch(url, options)
|
2017-02-03 15:40:13 +00:00
|
|
|
// in case something lower in the HTTP stack breaks, try again in 10 seconds
|
|
|
|
.catch(() => setTimeout(() => refreshAccessToken(user, localRealmPath, realmUrl), 10 * 1000))
|
|
|
|
.then((response) => response.json().then((json) => { return { response, json }; }))
|
|
|
|
.then((responseAndJson) => {
|
|
|
|
const response = responseAndJson.response;
|
|
|
|
const json = responseAndJson.json;
|
2017-02-07 10:01:26 +00:00
|
|
|
// Look up a fresh instance of the user.
|
|
|
|
// We do this because in React Native Remote Debugging
|
|
|
|
// `Realm.clearTestState()` will have invalidated the user object
|
|
|
|
let newUser = user.constructor.all[user.identity];
|
|
|
|
if (newUser) {
|
|
|
|
let session = newUser._sessionForOnDiskPath(localRealmPath);
|
|
|
|
if (session) {
|
2017-03-24 11:49:28 +00:00
|
|
|
const errorHandler = session.config.error;
|
2017-02-07 10:01:26 +00:00
|
|
|
if (response.status != 200) {
|
|
|
|
let error = new AuthError(json);
|
|
|
|
if (errorHandler) {
|
|
|
|
errorHandler(session, error);
|
|
|
|
} else {
|
2017-06-27 18:32:34 +00:00
|
|
|
print_error('Unhandled session token refresh error', error);
|
2017-02-07 10:01:26 +00:00
|
|
|
}
|
|
|
|
} else if (session.state !== 'invalid') {
|
2017-02-03 15:40:13 +00:00
|
|
|
parsedRealmUrl.set('pathname', json.access_token.token_data.path);
|
|
|
|
session._refreshAccessToken(json.access_token.token, parsedRealmUrl.href);
|
|
|
|
|
2017-03-24 11:49:28 +00:00
|
|
|
if (errorHandler && errorHandler._notifyOnAccessTokenRefreshed) {
|
|
|
|
errorHandler(session, errorHandler._notifyOnAccessTokenRefreshed)
|
|
|
|
}
|
|
|
|
|
2017-02-03 15:40:13 +00:00
|
|
|
const tokenExpirationDate = new Date(json.access_token.token_data.expires * 1000);
|
|
|
|
scheduleAccessTokenRefresh(newUser, localRealmPath, realmUrl, tokenExpirationDate);
|
2017-02-01 22:44:56 +00:00
|
|
|
}
|
2017-06-27 18:32:34 +00:00
|
|
|
} else {
|
|
|
|
print_error(`Unhandled session token refresh error: could not look up session at path ${localRealmPath}`);
|
2017-02-03 15:40:13 +00:00
|
|
|
}
|
2017-02-01 13:18:59 +00:00
|
|
|
}
|
|
|
|
});
|
2017-01-31 13:07:29 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:01:12 +00:00
|
|
|
/**
|
|
|
|
* The base authentication method. It fires a JSON POST to the server parameter plus the auth url
|
|
|
|
* For example, if the server parameter is `http://myapp.com`, this url will post to `http://myapp.com/auth`
|
|
|
|
* @param {object} userConstructor
|
|
|
|
* @param {string} server the http or https server url
|
|
|
|
* @param {object} json the json to post to the auth endpoint
|
|
|
|
* @param {Function} callback an optional callback with an error and user parameter
|
|
|
|
* @returns {Promise} only returns a promise if the callback parameter was omitted
|
|
|
|
*/
|
2017-01-31 21:56:09 +00:00
|
|
|
function _authenticate(userConstructor, server, json, callback) {
|
|
|
|
json.app_id = '';
|
|
|
|
const url = auth_url(server);
|
|
|
|
const options = {
|
|
|
|
method: 'POST',
|
|
|
|
body: JSON.stringify(json),
|
|
|
|
headers: postHeaders,
|
|
|
|
open_timeout: 5000
|
|
|
|
};
|
2017-08-24 18:01:12 +00:00
|
|
|
const promise = performFetch(url, options)
|
2017-07-06 09:27:01 +00:00
|
|
|
.then((response) => {
|
2017-01-31 21:56:09 +00:00
|
|
|
if (response.status !== 200) {
|
|
|
|
return response.json().then((body) => callback(new AuthError(body)));
|
|
|
|
} else {
|
|
|
|
return response.json().then(function (body) {
|
|
|
|
// TODO: validate JSON
|
|
|
|
const token = body.refresh_token.token;
|
|
|
|
const identity = body.refresh_token.token_data.identity;
|
2017-06-17 14:59:15 +00:00
|
|
|
const isAdmin = body.refresh_token.token_data.is_admin;
|
|
|
|
callback(undefined, userConstructor.createUser(server, identity, token, false, isAdmin));
|
2017-07-06 09:27:01 +00:00
|
|
|
})
|
2017-01-31 21:56:09 +00:00
|
|
|
}
|
2017-08-24 18:01:12 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (callback) {
|
|
|
|
promise.then(user => {
|
|
|
|
callback(null, user);
|
2017-01-31 21:56:09 +00:00
|
|
|
})
|
2017-08-24 18:01:12 +00:00
|
|
|
.catch(err => {
|
|
|
|
callback(err)
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
return promise;
|
|
|
|
}
|
2017-01-31 21:56:09 +00:00
|
|
|
}
|
2016-10-20 00:55:46 +00:00
|
|
|
|
2017-08-29 13:23:22 +00:00
|
|
|
const staticMethods = {
|
2017-01-31 21:56:09 +00:00
|
|
|
get current() {
|
|
|
|
const allUsers = this.all;
|
2017-01-31 13:07:29 +00:00
|
|
|
const keys = Object.keys(allUsers);
|
|
|
|
if (keys.length === 0) {
|
|
|
|
return undefined;
|
|
|
|
} else if (keys.length > 1) {
|
|
|
|
throw new Error("Multiple users are logged in");
|
|
|
|
}
|
|
|
|
|
|
|
|
return allUsers[keys[0]];
|
2017-01-31 21:56:09 +00:00
|
|
|
},
|
2017-01-31 13:07:29 +00:00
|
|
|
|
2017-07-10 13:04:55 +00:00
|
|
|
adminUser(token, server) {
|
2017-09-12 13:17:59 +00:00
|
|
|
checkTypes(arguments, ['string', 'string']);
|
2017-07-10 13:04:55 +00:00
|
|
|
const uuid = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
2017-07-06 09:27:01 +00:00
|
|
|
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
2017-01-31 21:56:09 +00:00
|
|
|
return v.toString(16);
|
|
|
|
});
|
2017-07-10 13:04:55 +00:00
|
|
|
return this.createUser(server || '', uuid, token, true);
|
2017-01-31 21:56:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
register(server, username, password, callback) {
|
2017-03-20 11:52:41 +00:00
|
|
|
checkTypes(arguments, ['string', 'string', 'string', 'function']);
|
2017-08-24 18:01:12 +00:00
|
|
|
const json = {
|
2017-07-06 09:27:01 +00:00
|
|
|
provider: 'password',
|
|
|
|
user_info: { password: password, register: true },
|
2017-01-31 21:56:09 +00:00
|
|
|
data: username
|
2017-08-24 18:01:12 +00:00
|
|
|
};
|
|
|
|
if (callback) {
|
|
|
|
_authenticate(this, server, json, callback);
|
|
|
|
} else {
|
|
|
|
return _authenticate(this, server)
|
|
|
|
}
|
2017-01-31 21:56:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
login(server, username, password, callback) {
|
2017-03-20 11:52:41 +00:00
|
|
|
checkTypes(arguments, ['string', 'string', 'string', 'function']);
|
2017-08-24 18:01:12 +00:00
|
|
|
const json = {
|
2017-07-06 09:27:01 +00:00
|
|
|
provider: 'password',
|
|
|
|
user_info: { password: password },
|
2017-01-31 21:56:09 +00:00
|
|
|
data: username
|
2017-08-24 18:01:12 +00:00
|
|
|
};
|
|
|
|
if (callback) {
|
|
|
|
_authenticate(this, server, json, callback);
|
|
|
|
} else {
|
|
|
|
return _authenticate(this, server)
|
|
|
|
}
|
2017-01-31 21:56:09 +00:00
|
|
|
},
|
|
|
|
|
2017-03-17 13:13:03 +00:00
|
|
|
registerWithProvider(server, options, callback) {
|
|
|
|
|
|
|
|
// Compatibility with previous signature:
|
|
|
|
// registerWithProvider(server, provider, providerToken, callback)
|
|
|
|
if (arguments.length === 4) {
|
2017-03-20 11:52:41 +00:00
|
|
|
checkTypes(arguments, ['string', 'string', 'string', 'function']);
|
2017-03-17 13:13:03 +00:00
|
|
|
options = {
|
|
|
|
provider: arguments[1],
|
|
|
|
providerToken: arguments[2]
|
|
|
|
};
|
2017-07-06 09:27:01 +00:00
|
|
|
callback = arguments[3];
|
2017-03-20 11:52:41 +00:00
|
|
|
} else {
|
|
|
|
checkTypes(arguments, ['string', 'object', 'function']);
|
2017-03-17 13:13:03 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:01:12 +00:00
|
|
|
let json = {
|
2017-03-17 13:13:03 +00:00
|
|
|
provider: options.provider,
|
|
|
|
data: options.providerToken,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (options.userInfo) {
|
2017-08-24 18:01:12 +00:00
|
|
|
json.user_info = options.userInfo;
|
2017-03-17 13:13:03 +00:00
|
|
|
}
|
|
|
|
|
2017-08-24 18:01:12 +00:00
|
|
|
if (callback) {
|
|
|
|
_authenticate(this, server, json, callback);
|
|
|
|
} else {
|
|
|
|
return _authenticate(this, server)
|
|
|
|
}
|
2017-01-31 21:56:09 +00:00
|
|
|
},
|
|
|
|
|
2017-02-03 15:40:13 +00:00
|
|
|
_refreshAccessToken: refreshAccessToken
|
2017-08-29 13:23:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const instanceMethods = {
|
2017-01-31 21:56:09 +00:00
|
|
|
openManagementRealm() {
|
|
|
|
let url = url_parse(this.server);
|
|
|
|
if (url.protocol === 'http:') {
|
|
|
|
url.set('protocol', 'realm:');
|
|
|
|
} else if (url.protocol === 'https:') {
|
|
|
|
url.set('protocol', 'realms:');
|
|
|
|
} else {
|
|
|
|
throw new Error(`Unexpected user auth url: ${this.server}`);
|
|
|
|
}
|
2017-01-31 13:07:29 +00:00
|
|
|
|
2017-01-31 21:56:09 +00:00
|
|
|
url.set('pathname', '/~/__management');
|
|
|
|
|
2017-02-08 12:36:43 +00:00
|
|
|
return new this.constructor._realmConstructor({
|
2017-01-31 21:56:09 +00:00
|
|
|
schema: require('./management-schema'),
|
|
|
|
sync: {
|
|
|
|
user: this,
|
|
|
|
url: url.href
|
|
|
|
}
|
|
|
|
});
|
2017-07-03 13:55:18 +00:00
|
|
|
},
|
|
|
|
retrieveAccount(provider, provider_id) {
|
|
|
|
checkTypes(arguments, ['string', 'string']);
|
2017-07-07 13:38:13 +00:00
|
|
|
const url = url_parse(this.server);
|
2017-07-03 13:55:18 +00:00
|
|
|
url.set('pathname', `/api/providers/${provider}/accounts/${provider_id}`);
|
2017-07-07 13:38:13 +00:00
|
|
|
const headers = {
|
2017-07-06 09:27:01 +00:00
|
|
|
Authorization: this.token
|
2017-07-03 13:55:18 +00:00
|
|
|
};
|
|
|
|
const options = {
|
|
|
|
method: 'GET',
|
2017-07-07 13:38:13 +00:00
|
|
|
headers,
|
2017-07-03 13:55:18 +00:00
|
|
|
open_timeout: 5000
|
|
|
|
};
|
|
|
|
return performFetch(url.href, options)
|
2017-07-06 09:27:01 +00:00
|
|
|
.then((response) => {
|
2017-07-03 13:55:18 +00:00
|
|
|
if (response.status !== 200) {
|
2017-07-06 09:27:01 +00:00
|
|
|
return response.json()
|
|
|
|
.then(body => {
|
|
|
|
throw new AuthError(body);
|
|
|
|
});
|
2017-07-03 13:55:18 +00:00
|
|
|
} else {
|
2017-07-06 09:27:01 +00:00
|
|
|
|
2017-07-03 13:55:18 +00:00
|
|
|
return response.json();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2017-08-29 13:23:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Append the permission apis
|
|
|
|
Object.assign(instanceMethods, permissionApis);
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
static: staticMethods,
|
|
|
|
instance: instanceMethods
|
|
|
|
};
|