import { Router } from '@angular/router'; import { Observable } from 'rxjs'; import { filter, find, flatMap, map, 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 { BrowseDefinition } from './browse-definition.model'; import { DSpaceObject } from './dspace-object.model'; /** * 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(find((rd: RemoteData) => rd.hasSucceeded)); export const getSucceededRemoteWithNotEmptyData = () => (source: Observable>): Observable> => source.pipe(find((rd: RemoteData) => rd.hasSucceeded && isNotEmpty(rd.payload))); /** * 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 contains a page not found error * When it does contain such an error, it will redirect the user to a page not found, without altering the current URL * @param router The router used to navigate to a new page */ export const redirectToPageNotFoundOn404 = (router: Router) => (source: Observable>): Observable> => source.pipe( tap((rd: RemoteData) => { if (rd.hasFailed && rd.error.statusCode === 404) { router.navigateByUrl('/404', { skipLocationChange: true }); } })); /** * Operator that redirects the user to the unauthorized page when the boolean received is false * @param router */ export const redirectToUnauthorizedOnFalse = (router: Router) => (source: Observable): Observable => source.pipe( tap((authorized: boolean) => { if (!authorized) { router.navigateByUrl('/401', { skipLocationChange: true }); } })); 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))) );