import { Router, UrlTree } from '@angular/router'; import { Observable, combineLatest as observableCombineLatest } from 'rxjs'; import { filter, find, flatMap, map, switchMap, take, tap } from 'rxjs/operators'; import { hasValue, hasValueOperator, isNotEmpty } from '../../shared/empty.util'; import { SearchResult } from '../../shared/search/search-result.model'; import { DSOSuccessResponse, RestResponse } from '../cache/response.models'; import { PaginatedList } from '../data/paginated-list'; import { RemoteData } from '../data/remote-data'; import { RestRequest } from '../data/request.models'; import { RequestEntry } from '../data/request.reducer'; import { RequestService } from '../data/request.service'; import { MetadataField } from '../metadata/metadata-field.model'; import { MetadataSchema } from '../metadata/metadata-schema.model'; import { BrowseDefinition } from './browse-definition.model'; import { DSpaceObject } from './dspace-object.model'; import { getForbiddenRoute, getPageNotFoundRoute } from '../../app-routing-paths'; import { getEndUserAgreementPath } from '../../info/info-routing-paths'; import { AuthService } from '../auth/auth.service'; /** * This file contains custom RxJS operators that can be used in multiple places */ export const getRequestFromRequestHref = (requestService: RequestService) => (source: Observable): Observable => source.pipe( flatMap((href: string) => requestService.getByHref(href)), hasValueOperator() ); export const getRequestFromRequestUUID = (requestService: RequestService) => (source: Observable): Observable => source.pipe( flatMap((uuid: string) => requestService.getByUUID(uuid)), hasValueOperator() ); export const filterSuccessfulResponses = () => (source: Observable): Observable => source.pipe( getResponseFromEntry(), filter((response: RestResponse) => response.isSuccessful === true), ); export const getResponseFromEntry = () => (source: Observable): Observable => source.pipe( filter((entry: RequestEntry) => hasValue(entry) && hasValue(entry.response)), map((entry: RequestEntry) => entry.response) ); export const getResourceLinksFromResponse = () => (source: Observable): Observable => source.pipe( filterSuccessfulResponses(), map((response: DSOSuccessResponse) => response.resourceSelfLinks), ); export const configureRequest = (requestService: RequestService) => (source: Observable): Observable => source.pipe(tap((request: RestRequest) => requestService.configure(request))); export const getRemoteDataPayload = () => (source: Observable>): Observable => source.pipe(map((remoteData: RemoteData) => remoteData.payload)); export const getPaginatedListPayload = () => (source: Observable>): Observable => source.pipe(map((list: PaginatedList) => list.page)); export const getSucceededRemoteData = () => (source: Observable>): Observable> => source.pipe(filter((rd: RemoteData) => rd.hasSucceeded), take(1)); export const getSucceededRemoteWithNotEmptyData = () => (source: Observable>): Observable> => source.pipe(find((rd: RemoteData) => rd.hasSucceeded && isNotEmpty(rd.payload))); export const getSucceededOrNoContentResponse = () => (source: Observable>): Observable> => source.pipe(find((rd: RemoteData) => rd.hasSucceeded || rd.hasNoContent)); /** * Get the first successful remotely retrieved object * * You usually don't want to use this, it is a code smell. * Work with the RemoteData object instead, that way you can * handle loading and errors correctly. * * These operators were created as a first step in refactoring * out all the instances where this is used incorrectly. */ export const getFirstSucceededRemoteDataPayload = () => (source: Observable>): Observable => source.pipe( getSucceededRemoteData(), getRemoteDataPayload() ); /** * Get the first successful remotely retrieved object with not empty payload * * You usually don't want to use this, it is a code smell. * Work with the RemoteData object instead, that way you can * handle loading and errors correctly. * * These operators were created as a first step in refactoring * out all the instances where this is used incorrectly. */ export const getFirstSucceededRemoteDataWithNotEmptyPayload = () => (source: Observable>): Observable => source.pipe( getSucceededRemoteWithNotEmptyData(), getRemoteDataPayload() ); /** * Get the all successful remotely retrieved objects * * You usually don't want to use this, it is a code smell. * Work with the RemoteData object instead, that way you can * handle loading and errors correctly. * * These operators were created as a first step in refactoring * out all the instances where this is used incorrectly. */ export const getAllSucceededRemoteDataPayload = () => (source: Observable>): Observable => source.pipe( getAllSucceededRemoteData(), getRemoteDataPayload() ); /** * Get the first successful remotely retrieved paginated list * as an array * * You usually don't want to use this, it is a code smell. * Work with the RemoteData object instead, that way you can * handle loading and errors correctly. * * You also don't want to ignore pagination and simply use the * page as an array. * * These operators were created as a first step in refactoring * out all the instances where this is used incorrectly. */ export const getFirstSucceededRemoteListPayload = () => (source: Observable>>): Observable => source.pipe( getSucceededRemoteData(), getRemoteDataPayload(), getPaginatedListPayload() ); /** * Get all successful remotely retrieved paginated lists * as arrays * * You usually don't want to use this, it is a code smell. * Work with the RemoteData object instead, that way you can * handle loading and errors correctly. * * You also don't want to ignore pagination and simply use the * page as an array. * * These operators were created as a first step in refactoring * out all the instances where this is used incorrectly. */ export const getAllSucceededRemoteListPayload = () => (source: Observable>>): Observable => source.pipe( getAllSucceededRemoteData(), getRemoteDataPayload(), getPaginatedListPayload() ); /** * Operator that checks if a remote data object returned a 401 or 404 error * When it does contain such an error, it will redirect the user to the related error page, without altering the current URL * @param router The router used to navigate to a new page * @param authService Service to check if the user is authenticated */ export const redirectOn4xx = (router: Router, authService: AuthService) => (source: Observable>): Observable> => observableCombineLatest(source, authService.isAuthenticated()).pipe( map(([rd, isAuthenticated]: [RemoteData, boolean]) => { if (rd.hasFailed) { if (rd.error.statusCode === 404) { router.navigateByUrl(getPageNotFoundRoute(), {skipLocationChange: true}); } else if (rd.error.statusCode === 403 || rd.error.statusCode === 401) { if (isAuthenticated) { router.navigateByUrl(getForbiddenRoute(), {skipLocationChange: true}); } else { authService.setRedirectUrl(router.url); router.navigateByUrl('login'); } } } return rd; })); /** * Operator that returns a UrlTree to a forbidden page or the login page when the boolean received is false * @param router The router used to navigate to a forbidden page * @param authService The AuthService used to determine whether or not the user is logged in * @param redirectUrl The URL to redirect back to after logging in */ export const returnForbiddenUrlTreeOrLoginOnFalse = (router: Router, authService: AuthService, redirectUrl: string) => (source: Observable): Observable => observableCombineLatest(source, authService.isAuthenticated()).pipe( map(([authorized, authenticated]: [boolean, boolean]) => { if (authorized) { return authorized; } else { if (authenticated) { return router.parseUrl(getForbiddenRoute()); } else { authService.setRedirectUrl(redirectUrl); return router.parseUrl('login'); } } })); /** * Operator that returns a UrlTree to the unauthorized page when the boolean received is false * @param router Router * @param redirect Redirect URL to add to the UrlTree. This is used to redirect back to the original route after the * user accepts the agreement. */ export const returnEndUserAgreementUrlTreeOnFalse = (router: Router, redirect: string) => (source: Observable): Observable => source.pipe( map((hasAgreed: boolean) => { const queryParams = { redirect: encodeURIComponent(redirect) }; return hasAgreed ? hasAgreed : router.createUrlTree([getEndUserAgreementPath()], { queryParams }); })); export const getFinishedRemoteData = () => (source: Observable>): Observable> => source.pipe(find((rd: RemoteData) => !rd.isLoading)); export const getAllSucceededRemoteData = () => (source: Observable>): Observable> => source.pipe(filter((rd: RemoteData) => rd.hasSucceeded)); export const toDSpaceObjectListRD = () => (source: Observable>>>): Observable>> => source.pipe( filter((rd: RemoteData>>) => rd.hasSucceeded), map((rd: RemoteData>>) => { const dsoPage: T[] = rd.payload.page.filter((result) => hasValue(result)).map((searchResult: SearchResult) => searchResult.indexableObject); const payload = Object.assign(rd.payload, { page: dsoPage }) as PaginatedList; return Object.assign(rd, { payload: payload }); }) ); /** * Get the browse links from a definition by ID given an array of all definitions * @param {string} definitionID * @returns {(source: Observable>) => Observable} */ export const getBrowseDefinitionLinks = (definitionID: string) => (source: Observable>): Observable => source.pipe( getRemoteDataPayload(), map((browseDefinitions: BrowseDefinition[]) => browseDefinitions .find((def: BrowseDefinition) => def.id === definitionID) ), map((def: BrowseDefinition) => { if (isNotEmpty(def)) { return def._links; } else { throw new Error(`No metadata browse definition could be found for id '${definitionID}'`); } }) ); /** * Get the first occurrence of an object within a paginated list */ export const getFirstOccurrence = () => (source: Observable>>): Observable> => source.pipe( map((rd) => Object.assign(rd, { payload: rd.payload.page.length > 0 ? rd.payload.page[0] : undefined })) ); /** * Operator for turning the current page of bitstreams into an array */ export const paginatedListToArray = () => (source: Observable>>): Observable => source.pipe( hasValueOperator(), map((objectRD: RemoteData>) => objectRD.payload.page.filter((object: T) => hasValue(object))) ); /** * Operator for turning a list of metadata fields into an array of string representing their schema.element.qualifier string */ export const metadataFieldsToString = () => (source: Observable>>): Observable => source.pipe( hasValueOperator(), map((fieldRD: RemoteData>) => { return fieldRD.payload.page.filter((object: MetadataField) => hasValue(object)) }), switchMap((fields: MetadataField[]) => { const fieldSchemaArray = fields.map((field: MetadataField) => { return field.schema.pipe( getFirstSucceededRemoteDataPayload(), map((schema: MetadataSchema) => ({ field, schema })) ); }); return observableCombineLatest(fieldSchemaArray); }), map((fieldSchemaArray: Array<{ field: MetadataField, schema: MetadataSchema }>): string[] => { return fieldSchemaArray.map((fieldSchema: { field: MetadataField, schema: MetadataSchema }) => fieldSchema.schema.prefix + '.' + fieldSchema.field.toString()) }) );