X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fcore%2Frouting%2Fredirect.service.ts;h=2b8cbaa59f72df2448a033e733881a48a074cca6;hb=371d4c60639e405ce8a503bea1395e9102fbba84;hp=3218040bf1c43479ad617be79b7323f288aeab95;hpb=d43c6b1ffc5e6c895f9e9f9de6625f17a9755c20;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 3218040bf..2b8cbaa59 100644 --- a/client/src/app/core/routing/redirect.service.ts +++ b/client/src/app/core/routing/redirect.service.ts @@ -1,37 +1,46 @@ +import * as debug from 'debug' import { Injectable } from '@angular/core' import { NavigationCancel, NavigationEnd, Router } from '@angular/router' import { ServerService } from '../server' +import { SessionStorageService } from '../wrappers/storage.service' + +const logger = debug('peertube:router:RedirectService') @Injectable() export class RedirectService { + private static SESSION_STORAGE_LATEST_SESSION_URL_KEY = 'redirect-latest-session-url' + // 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 latestSessionUrl: string + private redirectingToHomepage = false + private defaultTrendingAlgorithm = RedirectService.INIT_DEFAULT_TRENDING_ALGORITHM + private defaultRoute = RedirectService.INIT_DEFAULT_ROUTE constructor ( private router: Router, - private serverService: ServerService + private serverService: ServerService, + private storage: SessionStorageService ) { // The config is first loaded from the cache so try to get the default route - const tmpConfig = this.serverService.getTmpConfig() - if (tmpConfig && tmpConfig.instance && tmpConfig.instance.defaultClientRoute) { - RedirectService.DEFAULT_ROUTE = tmpConfig.instance.defaultClientRoute + const config = this.serverService.getHTMLConfig() + if (config?.instance?.defaultClientRoute) { + this.defaultRoute = config.instance.defaultClientRoute + } + if (config?.trending?.videos?.algorithms?.default) { + this.defaultTrendingAlgorithm = config.trending.videos.algorithms.default } - // Load default route - this.serverService.getConfig() - .subscribe(config => { - const defaultRouteConfig = config.instance.defaultClientRoute + this.latestSessionUrl = this.storage.getItem(RedirectService.SESSION_STORAGE_LATEST_SESSION_URL_KEY) + this.storage.removeItem(RedirectService.SESSION_STORAGE_LATEST_SESSION_URL_KEY) - if (defaultRouteConfig) { - RedirectService.DEFAULT_ROUTE = defaultRouteConfig - } - }) + logger('Loaded latest session URL %s', this.latestSessionUrl) // Track previous url this.currentUrl = this.router.url @@ -39,22 +48,33 @@ export class RedirectService { if (event instanceof NavigationEnd || event instanceof NavigationCancel) { this.previousUrl = this.currentUrl this.currentUrl = event.url + + logger('Previous URL is %s, current URL is %s', this.previousUrl, this.currentUrl) + logger('Setting %s as latest URL in session storage.', this.currentUrl) + + this.storage.setItem(RedirectService.SESSION_STORAGE_LATEST_SESSION_URL_KEY, this.currentUrl) } }) } - redirectToPreviousRoute () { - const exceptions = [ - '/verify-account', - '/reset-password' - ] + getDefaultRoute () { + return this.defaultRoute + } - if (this.previousUrl) { - const isException = exceptions.find(e => this.previousUrl.startsWith(e)) - if (!isException) return this.router.navigateByUrl(this.previousUrl) - } + getDefaultTrendingAlgorithm () { + return this.defaultTrendingAlgorithm + } - return this.redirectToHomepage() + redirectToLatestSessionRoute () { + return this.doRedirect(this.latestSessionUrl) + } + + redirectToPreviousRoute (fallbackRoute?: string) { + return this.doRedirect(this.previousUrl, fallbackRoute) + } + + getPreviousUrl () { + return this.previousUrl } redirectToHomepage (skipLocationChange = false) { @@ -62,22 +82,50 @@ export class RedirectService { this.redirectingToHomepage = true - console.log('Redirecting to %s...', RedirectService.DEFAULT_ROUTE) + console.log('Redirecting to %s...', this.defaultRoute) - this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { skipLocationChange }) + 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.', - RedirectService.DEFAULT_ROUTE, + this.defaultRoute, RedirectService.INIT_DEFAULT_ROUTE ) - RedirectService.DEFAULT_ROUTE = RedirectService.INIT_DEFAULT_ROUTE - return this.router.navigate([ RedirectService.DEFAULT_ROUTE ], { skipLocationChange }) + this.defaultRoute = RedirectService.INIT_DEFAULT_ROUTE + return this.router.navigateByUrl(this.defaultRoute, { skipLocationChange }) }) } + + private doRedirect (redirectUrl: string, fallbackRoute?: string) { + logger('Redirecting on %s', redirectUrl) + + if (this.isValidRedirection(redirectUrl)) { + return this.router.navigateByUrl(redirectUrl) + } + + logger('%s is not a valid redirection, try fallback route %s', redirectUrl, fallbackRoute) + if (fallbackRoute) { + return this.router.navigateByUrl(fallbackRoute) + } + + logger('There was no fallback route, redirecting to homepage') + return this.redirectToHomepage() + } + + private isValidRedirection (redirectUrl: string) { + const exceptions = [ + '/verify-account', + '/reset-password', + '/login' + ] + + if (!redirectUrl || redirectUrl === '/') return false + + return exceptions.every(e => !redirectUrl.startsWith(e)) + } }