PeerTube/client/src/app/shared/shared-main/router/actor-redirect-guard.servic...

42 lines
1.1 KiB
TypeScript

import { forkJoin, of } from 'rxjs'
import { catchError, map } from 'rxjs/operators'
import { Injectable } from '@angular/core'
import { ActivatedRouteSnapshot, Router } from '@angular/router'
import { AccountService } from '../account'
import { VideoChannelService } from '../video-channel'
@Injectable()
export class ActorRedirectGuard {
constructor (
private router: Router,
private accountService: AccountService,
private channelService: VideoChannelService
) {}
canActivate (route: ActivatedRouteSnapshot) {
const actorName = route.params.actorName
return forkJoin([
this.accountService.getAccount(actorName).pipe(this.orUndefined()),
this.channelService.getVideoChannel(actorName).pipe(this.orUndefined())
]).pipe(
map(([ account, channel ]) => {
if (account) {
return this.router.parseUrl(`/a/${actorName}`)
}
if (channel) {
return this.router.parseUrl(`/c/${actorName}`)
}
return this.router.parseUrl('/404')
})
)
}
private orUndefined () {
return catchError(() => of(undefined))
}
}