X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/10ed13601df5259b7723aaa2b613d43196039a50..35d6c5a870aeff7bb2cbf6ec80d306debad872c1:/src/models/resource.ts diff --git a/src/models/resource.ts b/src/models/resource.ts index c2c2771bc3..4708a9dac8 100644 --- a/src/models/resource.ts +++ b/src/models/resource.ts @@ -2,8 +2,6 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { ApiClientAuthorization } from '~/models/api-client-authorization'; - export interface Resource { uuid: string; ownerUuid: string; @@ -59,8 +57,9 @@ export enum ResourceObjectType { NODE = '7ekkf' } -export const RESOURCE_UUID_PATTERN = '.{5}-.{5}-.{15}'; -export const RESOURCE_UUID_REGEX = new RegExp(RESOURCE_UUID_PATTERN); +export const RESOURCE_UUID_PATTERN = '[a-z0-9]{5}-[a-z0-9]{5}-[a-z0-9]{15}'; +export const RESOURCE_UUID_REGEX = new RegExp("^" + RESOURCE_UUID_PATTERN + "$"); +export const COLLECTION_PDH_REGEX = /^[a-f0-9]{32}\+\d+$/; export const isResourceUuid = (uuid: string) => RESOURCE_UUID_REGEX.test(uuid); @@ -104,6 +103,7 @@ export const extractUuidKind = (uuid: string = '') => { case ResourceObjectType.LINK: return ResourceKind.LINK; default: - return undefined; + const match = COLLECTION_PDH_REGEX.exec(uuid); + return match ? ResourceKind.COLLECTION : undefined; } };