X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Frouting%2Fredirect.service.ts;h=cf690a4d06ecc86851d7edaa6749901f28981788;hb=35f676e5d3e5e242e84ed63da2cc78117079c7cb;hp=abe044d7306e007dbab9ef61084b345fdff0a53e;hpb=108a66f0dac7586f2f7871c6bb77f73cb924f2b3;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/routing/redirect.service.ts b/client/src/app/core/routing/redirect.service.ts index abe044d73..cf690a4d0 100644 --- a/client/src/app/core/routing/redirect.service.ts +++ b/client/src/app/core/routing/redirect.service.ts @@ -1,48 +1,96 @@ import { Injectable } from '@angular/core' -import { Router } from '@angular/router' +import { NavigationCancel, NavigationEnd, Router } from '@angular/router' import { ServerService } from '../server' @Injectable() export class RedirectService { // Default route could change according to the instance configuration static INIT_DEFAULT_ROUTE = '/videos/trending' - static DEFAULT_ROUTE = RedirectService.INIT_DEFAULT_ROUTE + static INIT_DEFAULT_TRENDING_ALGORITHM = 'most-viewed' + + private previousUrl: string + private currentUrl: string + + private redirectingToHomepage = false + private defaultTrendingAlgorithm = RedirectService.INIT_DEFAULT_TRENDING_ALGORITHM + private defaultRoute = RedirectService.INIT_DEFAULT_ROUTE constructor ( private router: Router, private serverService: ServerService ) { // The config is first loaded from the cache so try to get the default route - const config = this.serverService.getConfig() - if (config && config.instance && config.instance.defaultClientRoute) { - RedirectService.DEFAULT_ROUTE = config.instance.defaultClientRoute + const tmpConfig = this.serverService.getTmpConfig() + if (tmpConfig?.instance?.defaultClientRoute) { + this.defaultRoute = tmpConfig.instance.defaultClientRoute } + if (tmpConfig?.trending?.videos?.algorithms?.default) { + this.defaultTrendingAlgorithm = tmpConfig.trending.videos.algorithms.default + } + + // Load default route + this.serverService.getConfig() + .subscribe(config => { + const defaultRouteConfig = config.instance.defaultClientRoute + const defaultTrendingConfig = config.trending.videos.algorithms.default - this.serverService.configLoaded - .subscribe(() => { - const defaultRouteConfig = this.serverService.getConfig().instance.defaultClientRoute + if (defaultRouteConfig) this.defaultRoute = defaultRouteConfig + if (defaultTrendingConfig) this.defaultTrendingAlgorithm = defaultTrendingConfig + }) - if (defaultRouteConfig) { - RedirectService.DEFAULT_ROUTE = defaultRouteConfig - } - }) + // Track previous url + this.currentUrl = this.router.url + router.events.subscribe(event => { + if (event instanceof NavigationEnd || event instanceof NavigationCancel) { + this.previousUrl = this.currentUrl + this.currentUrl = event.url + } + }) } - redirectToHomepage () { - console.log('Redirecting to %s...', RedirectService.DEFAULT_ROUTE) + getDefaultRoute () { + return this.defaultRoute + } + + getDefaultTrendingAlgorithm () { + return this.defaultTrendingAlgorithm + } - this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { replaceUrl: true }) - .catch(() => { - console.error( - 'Cannot navigate to %s, resetting default route to %s.', - RedirectService.DEFAULT_ROUTE, - RedirectService.INIT_DEFAULT_ROUTE - ) + redirectToPreviousRoute () { + const exceptions = [ + '/verify-account', + '/reset-password' + ] - RedirectService.DEFAULT_ROUTE = RedirectService.INIT_DEFAULT_ROUTE - return this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { replaceUrl: true }) - }) + if (this.previousUrl) { + const isException = exceptions.find(e => this.previousUrl.startsWith(e)) + if (!isException) return this.router.navigateByUrl(this.previousUrl) + } + return this.redirectToHomepage() } + redirectToHomepage (skipLocationChange = false) { + if (this.redirectingToHomepage) return + + this.redirectingToHomepage = true + + console.log('Redirecting to %s...', this.defaultRoute) + + this.router.navigateByUrl(this.defaultRoute, { skipLocationChange }) + .then(() => this.redirectingToHomepage = false) + .catch(() => { + this.redirectingToHomepage = false + + console.error( + 'Cannot navigate to %s, resetting default route to %s.', + this.defaultRoute, + RedirectService.INIT_DEFAULT_ROUTE + ) + + this.defaultRoute = RedirectService.INIT_DEFAULT_ROUTE + return this.router.navigateByUrl(this.defaultRoute, { skipLocationChange }) + }) + + } }