]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+my-account/my-account-applications/my-account-applications.component.ts
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +my-account / my-account-applications / my-account-applications.component.ts
CommitLineData
afff310e 1import { Component, OnInit } from '@angular/core'
5beb89f2 2import { AuthService, Notifier, ConfirmService, ScopedTokensService } from '@app/core'
afff310e
RK
3import { VideoService } from '@app/shared/shared-main'
4import { FeedFormat } from '@shared/models'
5beb89f2
RK
5import { ScopedToken } from '@shared/models/users/user-scoped-token'
6import { environment } from '../../../environments/environment'
afff310e
RK
7
8@Component({
9 selector: 'my-account-applications',
10 templateUrl: './my-account-applications.component.html',
11 styleUrls: [ './my-account-applications.component.scss' ]
12})
13export class MyAccountApplicationsComponent implements OnInit {
14 feedUrl: string
15 feedToken: string
16
04b2996b 17 private baseURL = environment.originServerUrl || window.location.origin
afff310e
RK
18
19 constructor (
20 private authService: AuthService,
5beb89f2 21 private scopedTokensService: ScopedTokensService,
afff310e
RK
22 private videoService: VideoService,
23 private notifier: Notifier,
24 private confirmService: ConfirmService
25 ) {}
26
27 ngOnInit () {
28 this.feedUrl = this.baseURL
5beb89f2
RK
29 this.scopedTokensService.getScopedTokens()
30 .subscribe(
31 tokens => this.regenApplications(tokens),
afff310e 32
5beb89f2
RK
33 err => {
34 this.notifier.error(err.message)
35 }
36 )
afff310e
RK
37 }
38
39 async renewToken () {
5beb89f2
RK
40 const res = await this.confirmService.confirm(
41 $localize`Renewing the token will disallow previously configured clients from retrieving the feed until they use the new token. Proceed?`,
42 $localize`Renew token`
43 )
afff310e
RK
44 if (res === false) return
45
5beb89f2
RK
46 this.scopedTokensService.renewScopedTokens().subscribe(
47 tokens => {
48 this.regenApplications(tokens)
49 this.notifier.success($localize`Token renewed. Update your client configuration accordingly.`)
50 },
51
52 err => {
53 this.notifier.error(err.message)
54 }
55 )
56
57 }
58
59 private regenApplications (tokens: ScopedToken) {
60 const user = this.authService.getUser()
61 const feeds = this.videoService.getVideoSubscriptionFeedUrls(user.account.id, tokens.feedToken)
62 this.feedUrl = this.baseURL + feeds.find(f => f.format === FeedFormat.RSS).url
63 this.feedToken = tokens.feedToken
afff310e
RK
64 }
65}