]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/user-subscription/subscribe-button.component.ts
Redirect to the last url on login
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / user-subscription / subscribe-button.component.ts
CommitLineData
22a16e36 1import { Component, Input, OnInit } from '@angular/core'
660d11e9
RK
2import { Router } from '@angular/router'
3import { AuthService } from '@app/core'
22a16e36
C
4import { UserSubscriptionService } from '@app/shared/user-subscription/user-subscription.service'
5import { VideoChannel } from '@app/shared/video-channel/video-channel.model'
6import { NotificationsService } from 'angular2-notifications'
7import { I18n } from '@ngx-translate/i18n-polyfill'
39ba2e8e
C
8import { VideoService } from '@app/shared/video/video.service'
9import { FeedFormat } from '../../../../../shared/models/feeds'
22a16e36
C
10
11@Component({
12 selector: 'my-subscribe-button',
13 templateUrl: './subscribe-button.component.html',
14 styleUrls: [ './subscribe-button.component.scss' ]
15})
16export class SubscribeButtonComponent implements OnInit {
17 @Input() videoChannel: VideoChannel
18 @Input() displayFollowers = false
f37dc0dd 19 @Input() size: 'small' | 'normal' = 'normal'
22a16e36
C
20
21 subscribed: boolean
22
23 constructor (
660d11e9
RK
24 private authService: AuthService,
25 private router: Router,
22a16e36
C
26 private notificationsService: NotificationsService,
27 private userSubscriptionService: UserSubscriptionService,
39ba2e8e
C
28 private i18n: I18n,
29 private videoService: VideoService
22a16e36
C
30 ) { }
31
32 get uri () {
33 return this.videoChannel.name + '@' + this.videoChannel.host
34 }
35
660d11e9
RK
36 get uriAccount () {
37 return this.videoChannel.ownerAccount.name + '@' + this.videoChannel.host
38 }
39
22a16e36 40 ngOnInit () {
660d11e9
RK
41 if (this.isUserLoggedIn()) {
42 this.userSubscriptionService.isSubscriptionExists(this.uri)
43 .subscribe(
44 res => this.subscribed = res[this.uri],
22a16e36 45
660d11e9
RK
46 err => this.notificationsService.error(this.i18n('Error'), err.message)
47 )
48 }
22a16e36
C
49 }
50
51 subscribe () {
660d11e9 52 if (this.isUserLoggedIn()) {
dae5ca24 53 return this.localSubscribe()
660d11e9 54 }
dae5ca24
C
55
56 return this.gotoLogin()
660d11e9
RK
57 }
58
59 localSubscribe () {
22a16e36
C
60 this.userSubscriptionService.addSubscription(this.uri)
61 .subscribe(
62 () => {
63 this.subscribed = true
64
65 this.notificationsService.success(
66 this.i18n('Subscribed'),
67 this.i18n('Subscribed to {{nameWithHost}}', { nameWithHost: this.videoChannel.displayName })
68 )
69 },
70
71 err => this.notificationsService.error(this.i18n('Error'), err.message)
72 )
73 }
74
75 unsubscribe () {
660d11e9
RK
76 if (this.isUserLoggedIn()) {
77 this.localUnsubscribe()
78 }
79 }
80
81 localUnsubscribe () {
22a16e36
C
82 this.userSubscriptionService.deleteSubscription(this.uri)
83 .subscribe(
84 () => {
85 this.subscribed = false
86
87 this.notificationsService.success(
88 this.i18n('Unsubscribed'),
89 this.i18n('Unsubscribed from {{nameWithHost}}', { nameWithHost: this.videoChannel.displayName })
90 )
91 },
92
93 err => this.notificationsService.error(this.i18n('Error'), err.message)
94 )
95 }
660d11e9
RK
96
97 isUserLoggedIn () {
98 return this.authService.isLoggedIn()
99 }
100
101 gotoLogin () {
102 this.router.navigate([ '/login' ])
103 }
104
105 rssOpen () {
39ba2e8e
C
106 const rssFeed = this.videoService
107 .getVideoChannelFeedUrls(this.videoChannel.id)
108 .find(i => i.format === FeedFormat.RSS)
109
110 window.open(rssFeed.url)
660d11e9 111 }
22a16e36 112}