]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/core/auth/auth.service.ts
Correctly handle actors without follow counters
[github/Chocobozzz/PeerTube.git] / client / src / app / core / auth / auth.service.ts
CommitLineData
67ed6552 1import { Hotkey, HotkeysService } from 'angular2-hotkeys'
db400f44 2import { Observable, ReplaySubject, Subject, throwError as observableThrowError } from 'rxjs'
b1d40cff 3import { catchError, map, mergeMap, share, tap } from 'rxjs/operators'
2295ce6c 4import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http'
df98563e 5import { Injectable } from '@angular/core'
df98563e 6import { Router } from '@angular/router'
9a39392a 7import { Notifier } from '@app/core/notification/notifier.service'
a9bfa85d 8import { objectToUrlEncoded, peertubeLocalStorage, UserTokens } from '@root-helpers/index'
c0e8b12e 9import { HttpStatusCode, MyUser as UserServerModel, OAuthClientLocal, User, UserLogin, UserRefreshToken } from '@shared/models'
63c4db6d 10import { environment } from '../../../environments/environment'
67ed6552 11import { RestExtractor } from '../rest/rest-extractor.service'
2295ce6c
C
12import { AuthStatus } from './auth-status.model'
13import { AuthUser } from './auth-user.model'
14
d592e0a9
C
15interface UserLoginWithUsername extends UserLogin {
16 access_token: string
17 refresh_token: string
18 token_type: string
19 username: string
20}
21
c5911fd3 22type UserLoginWithUserInformation = UserLoginWithUsername & User
b1794c53
C
23
24@Injectable()
25export class AuthService {
63c4db6d
C
26 private static BASE_CLIENT_URL = environment.apiUrl + '/api/v1/oauth-clients/local'
27 private static BASE_TOKEN_URL = environment.apiUrl + '/api/v1/users/token'
dadc90bc 28 private static BASE_REVOKE_TOKEN_URL = environment.apiUrl + '/api/v1/users/revoke-token'
63c4db6d 29 private static BASE_USER_INFORMATION_URL = environment.apiUrl + '/api/v1/users/me'
a20776fc
C
30 private static LOCAL_STORAGE_OAUTH_CLIENT_KEYS = {
31 CLIENT_ID: 'client_id',
32 CLIENT_SECRET: 'client_secret'
33 }
b1794c53 34
df98563e 35 loginChangedSource: Observable<AuthStatus>
2de96f4d 36 userInformationLoaded = new ReplaySubject<boolean>(1)
a9bfa85d 37 tokensRefreshed = new ReplaySubject<void>(1)
c13e2bf3 38 hotkeys: Hotkey[]
b1794c53 39
a20776fc
C
40 private clientId: string = peertubeLocalStorage.getItem(AuthService.LOCAL_STORAGE_OAUTH_CLIENT_KEYS.CLIENT_ID)
41 private clientSecret: string = peertubeLocalStorage.getItem(AuthService.LOCAL_STORAGE_OAUTH_CLIENT_KEYS.CLIENT_SECRET)
df98563e
C
42 private loginChanged: Subject<AuthStatus>
43 private user: AuthUser = null
47f8de28 44 private refreshingTokenObservable: Observable<any>
ccf6ed16 45
df98563e 46 constructor (
d592e0a9 47 private http: HttpClient,
f8b2c1b4 48 private notifier: Notifier,
c13e2bf3 49 private hotkeysService: HotkeysService,
14ad0c27 50 private restExtractor: RestExtractor,
66357162 51 private router: Router
9df52d66 52 ) {
df98563e
C
53 this.loginChanged = new Subject<AuthStatus>()
54 this.loginChangedSource = this.loginChanged.asObservable()
23a5a916 55
c13e2bf3
RK
56 // Set HotKeys
57 this.hotkeys = [
58 new Hotkey('m s', (event: KeyboardEvent): boolean => {
59 this.router.navigate([ '/videos/subscriptions' ])
60 return false
66357162 61 }, undefined, $localize`Go to my subscriptions`),
c13e2bf3 62 new Hotkey('m v', (event: KeyboardEvent): boolean => {
17119e4a 63 this.router.navigate([ '/my-library/videos' ])
c13e2bf3 64 return false
66357162 65 }, undefined, $localize`Go to my videos`),
c13e2bf3 66 new Hotkey('m i', (event: KeyboardEvent): boolean => {
17119e4a 67 this.router.navigate([ '/my-library/video-imports' ])
c13e2bf3 68 return false
66357162 69 }, undefined, $localize`Go to my imports`),
c13e2bf3 70 new Hotkey('m c', (event: KeyboardEvent): boolean => {
17119e4a 71 this.router.navigate([ '/my-library/video-channels' ])
c13e2bf3 72 return false
66357162 73 }, undefined, $localize`Go to my channels`)
c13e2bf3 74 ]
1553e15d 75 }
b1794c53 76
a9bfa85d
C
77 buildAuthUser (userInfo: Partial<User>, tokens: UserTokens) {
78 this.user = new AuthUser(userInfo, tokens)
79 }
80
d592e0a9
C
81 loadClientCredentials () {
82 // Fetch the client_id/client_secret
d592e0a9 83 this.http.get<OAuthClientLocal>(AuthService.BASE_CLIENT_URL)
db400f44 84 .pipe(catchError(res => this.restExtractor.handleError(res)))
1378c0d3
C
85 .subscribe({
86 next: res => {
db400f44
C
87 this.clientId = res.client_id
88 this.clientSecret = res.client_secret
a20776fc
C
89
90 peertubeLocalStorage.setItem(AuthService.LOCAL_STORAGE_OAUTH_CLIENT_KEYS.CLIENT_ID, this.clientId)
91 peertubeLocalStorage.setItem(AuthService.LOCAL_STORAGE_OAUTH_CLIENT_KEYS.CLIENT_SECRET, this.clientSecret)
92
db400f44
C
93 console.log('Client credentials loaded.')
94 },
95
1378c0d3
C
96 error: err => {
97 let errorMessage = err.message
db400f44 98
1378c0d3
C
99 if (err.status === HttpStatusCode.FORBIDDEN_403) {
100 errorMessage = $localize`Cannot retrieve OAuth Client credentials: ${err.text}.
66357162 101Ensure you have correctly configured PeerTube (config/ directory), in particular the "webserver" section.`
db400f44
C
102 }
103
f8b2c1b4 104 // We put a bigger timeout: this is an important message
66357162 105 this.notifier.error(errorMessage, $localize`Error`, 7000)
db400f44 106 }
1378c0d3 107 })
d592e0a9
C
108 }
109
df98563e
C
110 getRefreshToken () {
111 if (this.user === null) return null
bd5c83a8 112
df98563e 113 return this.user.getRefreshToken()
bd5c83a8
C
114 }
115
df98563e 116 getRequestHeaderValue () {
d592e0a9
C
117 const accessToken = this.getAccessToken()
118
119 if (accessToken === null) return null
120
121 return `${this.getTokenType()} ${accessToken}`
1553e15d
C
122 }
123
df98563e
C
124 getAccessToken () {
125 if (this.user === null) return null
bd5c83a8 126
df98563e 127 return this.user.getAccessToken()
1553e15d
C
128 }
129
df98563e
C
130 getTokenType () {
131 if (this.user === null) return null
bd5c83a8 132
df98563e 133 return this.user.getTokenType()
1553e15d
C
134 }
135
df98563e
C
136 getUser () {
137 return this.user
1553e15d
C
138 }
139
df98563e 140 isLoggedIn () {
d592e0a9 141 return !!this.getAccessToken()
1553e15d
C
142 }
143
4a8d113b 144 login (username: string, password: string, token?: string) {
d592e0a9 145 // Form url encoded
cd4d7a2c
C
146 const body = {
147 client_id: this.clientId,
148 client_secret: this.clientSecret,
149 response_type: 'code',
150 grant_type: 'password',
151 scope: 'upload',
50b4dcce 152 username,
cd4d7a2c 153 password
f954b5da 154 }
d592e0a9 155
4a8d113b
C
156 if (token) Object.assign(body, { externalAuthToken: token })
157
d592e0a9 158 const headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
cd4d7a2c 159 return this.http.post<UserLogin>(AuthService.BASE_TOKEN_URL, objectToUrlEncoded(body), { headers })
db400f44
C
160 .pipe(
161 map(res => Object.assign(res, { username })),
162 mergeMap(res => this.mergeUserInformation(res)),
163 map(res => this.handleLogin(res)),
164 catchError(res => this.restExtractor.handleError(res))
165 )
4fd8aa32
C
166 }
167
df98563e 168 logout () {
dadc90bc
C
169 const authHeaderValue = this.getRequestHeaderValue()
170 const headers = new HttpHeaders().set('Authorization', authHeaderValue)
171
74fd2643 172 this.http.post<{ redirectUrl?: string }>(AuthService.BASE_REVOKE_TOKEN_URL, {}, { headers })
1378c0d3
C
173 .subscribe({
174 next: res => {
175 if (res.redirectUrl) {
176 window.location.href = res.redirectUrl
177 }
178 },
dadc90bc 179
1378c0d3
C
180 error: err => console.error(err)
181 })
dadc90bc 182
df98563e 183 this.user = null
724fed29 184
df98563e 185 this.setStatus(AuthStatus.LoggedOut)
c13e2bf3
RK
186
187 this.hotkeysService.remove(this.hotkeys)
bd5c83a8
C
188 }
189
df98563e 190 refreshAccessToken () {
47f8de28
C
191 if (this.refreshingTokenObservable) return this.refreshingTokenObservable
192
df98563e 193 console.log('Refreshing token...')
bd5c83a8 194
df98563e 195 const refreshToken = this.getRefreshToken()
bd5c83a8 196
d592e0a9
C
197 // Form url encoded
198 const body = new HttpParams().set('refresh_token', refreshToken)
199 .set('client_id', this.clientId)
200 .set('client_secret', this.clientSecret)
201 .set('response_type', 'code')
202 .set('grant_type', 'refresh_token')
bd5c83a8 203
d592e0a9 204 const headers = new HttpHeaders().set('Content-Type', 'application/x-www-form-urlencoded')
bd5c83a8 205
47f8de28 206 this.refreshingTokenObservable = this.http.post<UserRefreshToken>(AuthService.BASE_TOKEN_URL, body, { headers })
db400f44
C
207 .pipe(
208 map(res => this.handleRefreshToken(res)),
9df52d66
C
209 tap(() => {
210 this.refreshingTokenObservable = null
211 }),
db400f44
C
212 catchError(err => {
213 this.refreshingTokenObservable = null
214
215 console.error(err)
216 console.log('Cannot refresh token -> logout...')
217 this.logout()
218 this.router.navigate([ '/login' ])
219
1378c0d3 220 return observableThrowError(() => ({
66357162 221 error: $localize`You need to reconnect.`
1378c0d3 222 }))
a20776fc
C
223 }),
224 share()
db400f44 225 )
47f8de28
C
226
227 return this.refreshingTokenObservable
4fd8aa32
C
228 }
229
d592e0a9 230 refreshUserInformation () {
c199c427 231 const obj: UserLoginWithUsername = {
33c4972d
C
232 access_token: this.user.getAccessToken(),
233 refresh_token: null,
234 token_type: this.user.getTokenType(),
235 username: this.user.username
df98563e 236 }
af5e743b 237
d592e0a9 238 this.mergeUserInformation(obj)
1378c0d3
C
239 .subscribe({
240 next: res => {
db400f44 241 this.user.patch(res)
cadb46d8 242
db400f44
C
243 this.userInformationLoaded.next(true)
244 }
1378c0d3 245 })
af5e743b
C
246 }
247
d592e0a9
C
248 private mergeUserInformation (obj: UserLoginWithUsername): Observable<UserLoginWithUserInformation> {
249 // User is not loaded yet, set manually auth header
250 const headers = new HttpHeaders().set('Authorization', `${obj.token_type} ${obj.access_token}`)
251
bcd9f81e 252 return this.http.get<UserServerModel>(AuthService.BASE_USER_INFORMATION_URL, { headers })
db400f44 253 .pipe(map(res => Object.assign(obj, res)))
b1794c53
C
254 }
255
d592e0a9 256 private handleLogin (obj: UserLoginWithUserInformation) {
7da18e44 257 const hashTokens = {
df98563e
C
258 accessToken: obj.access_token,
259 tokenType: obj.token_type,
260 refreshToken: obj.refresh_token
261 }
bd5c83a8 262
ce5496d6 263 this.user = new AuthUser(obj, hashTokens)
bd5c83a8 264
df98563e 265 this.setStatus(AuthStatus.LoggedIn)
efc32059 266 this.userInformationLoaded.next(true)
c13e2bf3
RK
267
268 this.hotkeysService.add(this.hotkeys)
bd5c83a8
C
269 }
270
d592e0a9 271 private handleRefreshToken (obj: UserRefreshToken) {
df98563e 272 this.user.refreshTokens(obj.access_token, obj.refresh_token)
a9bfa85d 273 this.tokensRefreshed.next()
bd5c83a8 274 }
629d8d6f 275
df98563e
C
276 private setStatus (status: AuthStatus) {
277 this.loginChanged.next(status)
629d8d6f 278 }
b1794c53 279}