element-web/src/MatrixClientPeg.js

34 lines
789 B
JavaScript
Raw Normal View History

// A thing that holds your Matrix Client
var Matrix = require("matrix-js-sdk");
var matrixClient = null;
2015-06-12 14:12:39 +02:00
var localStorage = window.localStorage;
if (localStorage) {
var hs_url = localStorage.getItem("mx_hs_url");
var access_token = localStorage.getItem("mx_access_token");
var user_id = localStorage.getItem("mx_user_id");
if (access_token && user_id && hs_url) {
matrixClient = Matrix.createClient({
baseUrl: hs_url,
accessToken: access_token,
userId: user_id
});
}
}
module.exports = {
get: function() {
return matrixClient;
},
replace: function(cli) {
matrixClient = cli;
},
replaceUsingUrl: function(hs_url) {
matrixClient = Matrix.createClient(hs_url);
}
};