From: Chocobozzz Date: Thu, 22 Apr 2021 09:29:06 +0000 (+0200) Subject: Add getAuthHeader client helper X-Git-Tag: v3.2.0-rc.1~150 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=4eca42ffb4a1f17779d931b84da96ef8d9b3997e;p=github%2FChocobozzz%2FPeerTube.git Add getAuthHeader client helper --- diff --git a/client/src/app/core/plugins/plugin.service.ts b/client/src/app/core/plugins/plugin.service.ts index ee80d4d39..6a1a46e73 100644 --- a/client/src/app/core/plugins/plugin.service.ts +++ b/client/src/app/core/plugins/plugin.service.ts @@ -271,6 +271,13 @@ export class PluginService implements ClientHook { return this.authService.isLoggedIn() }, + getAuthHeader: () => { + if (!this.authService.isLoggedIn()) return undefined + + const value = this.authService.getRequestHeaderValue() + return { 'Authorization': value } + }, + notifier: { info: (text: string, title?: string, timeout?: number) => this.notifier.info(text, title, timeout), error: (text: string, title?: string, timeout?: number) => this.notifier.error(text, title, timeout), diff --git a/client/src/types/register-client-option.model.ts b/client/src/types/register-client-option.model.ts index 16c921344..8802edc32 100644 --- a/client/src/types/register-client-option.model.ts +++ b/client/src/types/register-client-option.model.ts @@ -21,6 +21,8 @@ export type RegisterClientHelpers = { isLoggedIn: () => boolean + getAuthHeader: () => { 'Authorization': string } | undefined + getSettings: () => Promise<{ [ name: string ]: string }> getServerConfig: () => Promise