Skip to content

Commit

Permalink
feat: custom msg upon 401 response
Browse files Browse the repository at this point in the history
  • Loading branch information
kontrollanten authored and Chocobozzz committed Jul 8, 2022
1 parent edd7b12 commit 004df51
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
17 changes: 16 additions & 1 deletion client/src/app/+page-not-found/page-not-found.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="root">
<div *ngIf="status !== 403 && status !== 418" class="box">
<div *ngIf="status !== 401 && status !== 403 && status !== 418" class="box">
<strong>{{ status }}.</strong>
<span class="ms-1 muted" i18n>That's an error.</span>

Expand All @@ -22,6 +22,21 @@
</div>
</div>

<div *ngIf="status === 401" class="box">
<strong>{{ status }}.</strong>
<span class="ms-1 muted" i18n>You are not authorized here.</span>

<div class="text mt-4">
<ng-container *ngIf="type === 'video'" i18n>You might need to login to see the video.</ng-container>
<ng-container *ngIf="type !== 'video'" i18n>You might need to login to see the resource.</ng-container>
</div>

<a class="peertube-button-link orange-button mt-5" i18n routerLink="/login">
Login
</a>

</div>

<div *ngIf="status === 403" class="box">
<strong>{{ status }}.</strong>
<span class="ms-1 muted" i18n>You are not authorized here.</span>
Expand Down
2 changes: 2 additions & 0 deletions client/src/app/core/routing/redirect.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ export class RedirectService {
this.currentUrl = this.router.url
router.events.subscribe(event => {
if (event instanceof NavigationEnd || event instanceof NavigationCancel) {
if (event.url === '/404') return

this.previousUrl = this.currentUrl
this.currentUrl = event.url

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export class AuthInterceptor implements HttpInterceptor {
return req.clone({ headers: req.headers.set('Authorization', authHeaderValue) })
}

private handleNotAuthenticated (err: HttpErrorResponse, path = '/login'): Observable<any> {
this.router.navigateByUrl(path)
private handleNotAuthenticated (err: HttpErrorResponse): Observable<any> {
this.router.navigate([ '/404' ], { state: { obj: err }, skipLocationChange: true })
return of(err.message)
}
}
Expand Down

0 comments on commit 004df51

Please sign in to comment.