]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add getAuthHeader client helper
authorChocobozzz <me@florianbigard.com>
Thu, 22 Apr 2021 09:29:06 +0000 (11:29 +0200)
committerChocobozzz <me@florianbigard.com>
Thu, 22 Apr 2021 09:29:06 +0000 (11:29 +0200)
client/src/app/core/plugins/plugin.service.ts
client/src/types/register-client-option.model.ts

index ee80d4d39bc8d5314b472ad27dd045e720141225..6a1a46e73c875dfa625aefd9a2f153dd8a3677a7 100644 (file)
@@ -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),
index 16c92134422107824555943800d0349d03a8463b..8802edc3299461fde42baf867a53f45786f16339 100644 (file)
@@ -21,6 +21,8 @@ export type RegisterClientHelpers = {
 
   isLoggedIn: () => boolean
 
+  getAuthHeader: () => { 'Authorization': string } | undefined
+
   getSettings: () => Promise<{ [ name: string ]: string }>
 
   getServerConfig: () => Promise<ServerConfig>