Compare commits

...
This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.

2 commits

Author SHA1 Message Date
Richard Lewis
7c53c85aa5 Formatting 2021-07-06 20:05:56 +01:00
Richard Lewis
b274607f41 Allow registering and logging in as guest 2021-06-04 20:53:37 +01:00
3 changed files with 14 additions and 3 deletions

View file

@ -97,7 +97,7 @@ export class SessionContainer {
});
}
async startWithLogin(homeServer, username, password) {
async startWithLogin(homeServer, username, password, guest = false) {
if (this._status.get() !== LoadStatus.NotLoading) {
return;
}
@ -109,7 +109,12 @@ export class SessionContainer {
try {
const request = this._platform.request;
const hsApi = new HomeServerApi({homeServer, request});
const loginData = await hsApi.passwordLogin(username, password, "Hydrogen", {log}).response();
let loginData;
if (guest === true) {
loginData = await hsApi.guestLogin("Hydrogen", {log}).response();
} else {
loginData = await hsApi.passwordLogin(username, password, "Hydrogen", {log}).response();
}
const sessionId = this.createNewSessionId();
sessionInfo = {
id: sessionId,

View file

@ -142,6 +142,12 @@ export class HomeServerApi {
}, options);
}
guestLogin(initialDeviceDisplayName, options = null) {
return this._unauthedRequest("POST", this._url(`/register`), {kind: 'guest'}, {
"initial_device_display_name": initialDeviceDisplayName
}, options);
}
createFilter(userId, filter, options = null) {
return this._post(`/user/${encodeURIComponent(userId)}/filter`, null, filter, options);
}

View file

@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
const container = document.querySelector(".hydrogen");
export function spinner(t, extraClasses = undefined) {
const container = document.querySelector(".hydrogen");
if (container.classList.contains("legacy")) {
return t.div({className: "spinner"}, [
t.div(),