2015-06-23 17:41:25 +02:00
|
|
|
/*
|
2016-01-07 05:06:39 +01:00
|
|
|
Copyright 2015, 2016 OpenMarket Ltd
|
2015-06-23 17:41:25 +02:00
|
|
|
|
|
|
|
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';
|
|
|
|
|
2016-07-21 18:57:55 +02:00
|
|
|
import Matrix from 'matrix-js-sdk';
|
2016-08-03 17:45:23 +02:00
|
|
|
import utils from 'matrix-js-sdk/lib/utils';
|
2016-09-08 04:02:26 +02:00
|
|
|
import EventTimeline from 'matrix-js-sdk/lib/models/event-timeline';
|
|
|
|
import EventTimelineSet from 'matrix-js-sdk/lib/models/event-timeline-set';
|
2015-06-09 18:40:42 +02:00
|
|
|
|
2016-07-21 18:57:55 +02:00
|
|
|
const localStorage = window.localStorage;
|
2015-07-20 14:19:47 +02:00
|
|
|
|
2016-08-03 11:46:42 +02:00
|
|
|
interface MatrixClientCreds {
|
|
|
|
homeserverUrl: string,
|
|
|
|
identityServerUrl: string,
|
|
|
|
userId: string,
|
2016-08-11 15:21:52 +02:00
|
|
|
deviceId: string,
|
2016-08-03 11:46:42 +02:00
|
|
|
accessToken: string,
|
|
|
|
guest: boolean,
|
|
|
|
}
|
|
|
|
|
2016-07-22 16:47:47 +02:00
|
|
|
/**
|
|
|
|
* Wrapper object for handling the js-sdk Matrix Client object in the react-sdk
|
|
|
|
* Handles the creation/initialisation of client objects.
|
|
|
|
* This module provides a singleton instance of this class so the 'current'
|
|
|
|
* Matrix Client object is available easily.
|
|
|
|
*/
|
2016-07-21 18:57:55 +02:00
|
|
|
class MatrixClientPeg {
|
2016-07-22 16:47:47 +02:00
|
|
|
constructor() {
|
2016-07-21 18:57:55 +02:00
|
|
|
this.matrixClient = null;
|
2016-08-02 15:04:20 +02:00
|
|
|
|
2016-08-03 18:23:09 +02:00
|
|
|
// These are the default options used when when the
|
|
|
|
// client is started in 'start'. These can be altered
|
|
|
|
// at any time up to after the 'will_start_client'
|
|
|
|
// event is finished processing.
|
2016-08-02 15:04:20 +02:00
|
|
|
this.opts = {
|
|
|
|
initialSyncLimit: 20,
|
|
|
|
};
|
2015-12-04 11:37:53 +01:00
|
|
|
}
|
|
|
|
|
2016-06-12 13:32:46 +02:00
|
|
|
get(): MatrixClient {
|
2016-07-21 18:57:55 +02:00
|
|
|
return this.matrixClient;
|
2015-09-28 18:46:49 +02:00
|
|
|
}
|
2015-06-09 18:40:42 +02:00
|
|
|
|
2015-09-28 18:46:49 +02:00
|
|
|
unset() {
|
2016-07-21 18:57:55 +02:00
|
|
|
this.matrixClient = null;
|
2015-09-28 18:46:49 +02:00
|
|
|
}
|
2015-09-16 14:48:24 +02:00
|
|
|
|
2016-07-22 16:47:47 +02:00
|
|
|
/**
|
|
|
|
* Replace this MatrixClientPeg's client with a client instance that has
|
|
|
|
* Home Server / Identity Server URLs and active credentials
|
|
|
|
*/
|
2016-08-03 11:46:42 +02:00
|
|
|
replaceUsingCreds(creds: MatrixClientCreds) {
|
2016-08-11 14:50:38 +02:00
|
|
|
this._createClient(creds);
|
2016-07-25 17:28:28 +02:00
|
|
|
}
|
|
|
|
|
2016-08-03 17:39:47 +02:00
|
|
|
start() {
|
2016-08-03 17:45:23 +02:00
|
|
|
const opts = utils.deepCopy(this.opts);
|
2016-08-03 18:23:09 +02:00
|
|
|
// the react sdk doesn't work without this, so don't allow
|
2016-08-03 17:39:47 +02:00
|
|
|
opts.pendingEventOrdering = "detached";
|
|
|
|
this.get().startClient(opts);
|
2016-08-03 17:41:22 +02:00
|
|
|
}
|
2016-08-03 17:39:47 +02:00
|
|
|
|
2016-08-03 11:46:42 +02:00
|
|
|
getCredentials(): MatrixClientCreds {
|
2016-08-02 15:04:20 +02:00
|
|
|
return {
|
|
|
|
homeserverUrl: this.matrixClient.baseUrl,
|
|
|
|
identityServerUrl: this.matrixClient.idBaseUrl,
|
|
|
|
userId: this.matrixClient.credentials.userId,
|
2016-08-11 15:21:52 +02:00
|
|
|
deviceId: this.matrixClient.getDeviceId(),
|
2016-08-02 15:04:20 +02:00
|
|
|
accessToken: this.matrixClient.getAccessToken(),
|
|
|
|
guest: this.matrixClient.isGuest(),
|
|
|
|
};
|
2016-07-21 18:57:55 +02:00
|
|
|
}
|
|
|
|
|
2016-08-11 14:50:38 +02:00
|
|
|
_createClient(creds: MatrixClientCreds) {
|
2016-07-21 18:57:55 +02:00
|
|
|
var opts = {
|
2016-08-11 14:50:38 +02:00
|
|
|
baseUrl: creds.homeserverUrl,
|
|
|
|
idBaseUrl: creds.identityServerUrl,
|
|
|
|
accessToken: creds.accessToken,
|
|
|
|
userId: creds.userId,
|
2016-08-11 15:21:52 +02:00
|
|
|
deviceId: creds.deviceId,
|
2016-07-21 18:57:55 +02:00
|
|
|
timelineSupport: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
if (localStorage) {
|
|
|
|
opts.sessionStore = new Matrix.WebStorageSessionStore(localStorage);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.matrixClient = Matrix.createClient(opts);
|
|
|
|
|
|
|
|
// we're going to add eventlisteners for each matrix event tile, so the
|
|
|
|
// potential number of event listeners is quite high.
|
|
|
|
this.matrixClient.setMaxListeners(500);
|
2016-07-25 17:20:03 +02:00
|
|
|
|
2016-08-11 14:50:38 +02:00
|
|
|
this.matrixClient.setGuest(Boolean(creds.guest));
|
2016-09-08 04:02:26 +02:00
|
|
|
|
2016-09-08 23:48:44 +02:00
|
|
|
var notifTimelineSet = new EventTimelineSet(null, {
|
2016-09-08 04:02:26 +02:00
|
|
|
timelineSupport: true
|
|
|
|
});
|
|
|
|
// XXX: what is our initial pagination token?! it somehow needs to be synchronised with /sync.
|
|
|
|
notifTimelineSet.getLiveTimeline().setPaginationToken("", EventTimeline.BACKWARDS);
|
|
|
|
this.matrixClient.setNotifTimelineSet(notifTimelineSet);
|
2016-07-21 18:57:55 +02:00
|
|
|
}
|
2015-09-28 18:46:49 +02:00
|
|
|
}
|
2015-06-09 18:40:42 +02:00
|
|
|
|
2016-07-21 18:57:55 +02:00
|
|
|
if (!global.mxMatrixClientPeg) {
|
2016-07-22 16:47:47 +02:00
|
|
|
global.mxMatrixClientPeg = new MatrixClientPeg();
|
2015-09-28 18:46:49 +02:00
|
|
|
}
|
2016-07-21 18:57:55 +02:00
|
|
|
module.exports = global.mxMatrixClientPeg;
|