Skip to content
Snippets Groups Projects
AuthService.ts 1.49 KiB
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { CancelablePromise } from '../core/CancelablePromise';
import { OpenAPI } from '../core/OpenAPI';
import { request as __request } from '../core/request';

export class AuthService {

    /**
     * Redirect to LifeScience OIDC Login
     * Redirect route to OIDC provider to kickstart the login process.
     * @returns void
     * @throws ApiError
     */
    public static authLogin(): CancelablePromise<void> {
        return __request(OpenAPI, {
            method: 'GET',
            url: '/auth/login',
            errors: {
                302: `Successful Response`,
            },
        });
    }

    /**
     * LifeScience Login Callback
     * Callback for the Life Science Identity Provider.
     *
     * Visit the route login route to start the login process.
     *
     * If the user is already known to the system, then a JWT token will be created and sent via the 'set-cookie' header.
     * The key for this Cookie is 'bearer'.
     *
     * If the user is new, he will be created and then a JWT token is issued.
     *
     * This JWT has to be sent to all authorized endpoints via the HTTPBearer scheme.
     * @returns void
     * @throws ApiError
     */
    public static authLoginCallback(): CancelablePromise<void> {
        return __request(OpenAPI, {
            method: 'GET',
            url: '/auth/callback',
            errors: {
                302: `Successful Response`,
            },
        });
    }

}