Added missing client part for cookie checking on login

This commit is contained in:
Finn Stutzenstein 2020-09-07 08:36:02 +02:00
parent fb27f8ce8a
commit 7446effe0f
No known key found for this signature in database
GPG Key ID: 9042F605C6324654
1 changed files with 11 additions and 2 deletions

View File

@ -10,6 +10,12 @@ import { HttpService } from './http.service';
import { OpenSlidesService } from './openslides.service';
import { StorageService } from './storage.service';
interface LoginData {
username: string;
password: string;
cookies?: boolean;
}
/**
* Authenticates an OpenSlides user with username and password
*/
@ -47,11 +53,14 @@ export class AuthService {
earlySuccessCallback: () => void
): Promise<void> {
if (authType === 'default') {
const user = {
const data: LoginData = {
username: username,
password: password
};
const response = await this.http.post<WhoAmI>(environment.urlPrefix + '/users/login/', user);
if (!navigator.cookieEnabled) {
data.cookies = false;
}
const response = await this.http.post<WhoAmI>(environment.urlPrefix + '/users/login/', data);
earlySuccessCallback();
await this.OpenSlides.shutdown();
await this.operator.setWhoAmI(response);