2019-02-11 02:10:11 +05:30
|
|
|
import {
|
|
|
|
HomeServerError,
|
2019-03-08 16:56:59 +05:30
|
|
|
RequestAbortError,
|
|
|
|
NetworkError
|
2019-02-11 02:10:11 +05:30
|
|
|
} from "./error.js";
|
2019-02-11 01:55:29 +05:30
|
|
|
|
2019-02-05 03:56:24 +05:30
|
|
|
class RequestWrapper {
|
2018-12-21 19:05:24 +05:30
|
|
|
constructor(promise, controller) {
|
|
|
|
this._promise = promise;
|
|
|
|
this._controller = controller;
|
|
|
|
}
|
|
|
|
|
|
|
|
abort() {
|
|
|
|
this._controller.abort();
|
|
|
|
}
|
|
|
|
|
2019-02-05 03:56:24 +05:30
|
|
|
response() {
|
2018-12-21 19:05:24 +05:30
|
|
|
return this._promise;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-07 05:55:12 +05:30
|
|
|
export default class HomeServerApi {
|
2018-12-21 19:05:24 +05:30
|
|
|
constructor(homeserver, accessToken) {
|
2019-03-09 00:33:47 +05:30
|
|
|
// store these both in a closure somehow so it's harder to get at in case of XSS?
|
|
|
|
// one could change the homeserver as well so the token gets sent there, so both must be protected from read/write
|
|
|
|
this._homeserver = homeserver;
|
2018-12-21 19:05:24 +05:30
|
|
|
this._accessToken = accessToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
_url(csPath) {
|
2019-02-05 03:56:24 +05:30
|
|
|
return `${this._homeserver}/_matrix/client/r0${csPath}`;
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
|
|
|
|
2019-02-05 03:56:24 +05:30
|
|
|
_request(method, csPath, queryParams = {}, body) {
|
2018-12-21 19:05:24 +05:30
|
|
|
const queryString = Object.entries(queryParams)
|
2019-05-12 23:56:20 +05:30
|
|
|
.filter(([, value]) => value !== undefined)
|
2019-02-05 03:56:24 +05:30
|
|
|
.map(([name, value]) => `${encodeURIComponent(name)}=${encodeURIComponent(value)}`)
|
2018-12-21 19:05:24 +05:30
|
|
|
.join("&");
|
|
|
|
const url = this._url(`${csPath}?${queryString}`);
|
2019-02-05 03:56:24 +05:30
|
|
|
let bodyString;
|
|
|
|
const headers = new Headers();
|
|
|
|
if (this._accessToken) {
|
|
|
|
headers.append("Authorization", `Bearer ${this._accessToken}`);
|
|
|
|
}
|
2018-12-21 19:05:24 +05:30
|
|
|
headers.append("Accept", "application/json");
|
2019-02-05 03:56:24 +05:30
|
|
|
if (body) {
|
2018-12-21 19:05:24 +05:30
|
|
|
headers.append("Content-Type", "application/json");
|
2019-02-05 03:56:24 +05:30
|
|
|
bodyString = JSON.stringify(body);
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
|
|
|
const controller = new AbortController();
|
|
|
|
// TODO: set authenticated headers with second arguments, cache them
|
2019-02-05 03:56:24 +05:30
|
|
|
let promise = fetch(url, {
|
|
|
|
method,
|
|
|
|
headers,
|
|
|
|
body: bodyString,
|
|
|
|
signal: controller.signal
|
|
|
|
});
|
2019-02-11 01:55:29 +05:30
|
|
|
promise = promise.then(async (response) => {
|
2018-12-21 19:05:24 +05:30
|
|
|
if (response.ok) {
|
2019-02-11 01:55:29 +05:30
|
|
|
return await response.json();
|
2018-12-21 19:05:24 +05:30
|
|
|
} else {
|
|
|
|
switch (response.status) {
|
|
|
|
default:
|
2019-02-11 01:55:29 +05:30
|
|
|
throw new HomeServerError(method, url, await response.json())
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
|
|
|
}
|
2019-02-11 02:10:11 +05:30
|
|
|
}, err => {
|
2019-03-08 16:56:59 +05:30
|
|
|
if (err.name === "AbortError") {
|
|
|
|
throw new RequestAbortError();
|
|
|
|
} else if (err instanceof TypeError) {
|
|
|
|
// Network errors are reported as TypeErrors, see
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch#Checking_that_the_fetch_was_successful
|
|
|
|
// this can either mean user is offline, server is offline, or a CORS error (server misconfiguration).
|
|
|
|
//
|
|
|
|
// One could check navigator.onLine to rule out the first
|
|
|
|
// but the 2 later ones are indistinguishable from javascript.
|
|
|
|
throw new NetworkError(err.message);
|
|
|
|
}
|
|
|
|
throw err;
|
2018-12-21 19:05:24 +05:30
|
|
|
});
|
2019-02-05 03:56:24 +05:30
|
|
|
return new RequestWrapper(promise, controller);
|
|
|
|
}
|
|
|
|
|
|
|
|
_post(csPath, queryParams, body) {
|
|
|
|
return this._request("POST", csPath, queryParams, body);
|
|
|
|
}
|
|
|
|
|
|
|
|
_get(csPath, queryParams, body) {
|
|
|
|
return this._request("GET", csPath, queryParams, body);
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
|
|
|
|
2019-02-11 01:55:29 +05:30
|
|
|
sync(since, filter, timeout) {
|
|
|
|
return this._get("/sync", {since, timeout, filter});
|
2019-02-05 03:56:24 +05:30
|
|
|
}
|
|
|
|
|
2019-03-09 05:11:06 +05:30
|
|
|
// params is from, dir and optionally to, limit, filter.
|
|
|
|
messages(roomId, params) {
|
|
|
|
return this._get(`/rooms/${roomId}/messages`, params);
|
|
|
|
}
|
|
|
|
|
2019-02-05 03:56:24 +05:30
|
|
|
passwordLogin(username, password) {
|
|
|
|
return this._post("/login", undefined, {
|
|
|
|
"type": "m.login.password",
|
|
|
|
"identifier": {
|
|
|
|
"type": "m.id.user",
|
|
|
|
"user": username
|
|
|
|
},
|
|
|
|
"password": password
|
|
|
|
});
|
2018-12-21 19:05:24 +05:30
|
|
|
}
|
2019-03-08 16:56:59 +05:30
|
|
|
}
|