AbstractFileService
internal.internal.AbstractFileService
Implements
Properties
__configModule__Record<string, unknown>__container__anyRequired__moduleDeclaration__Record<string, unknown>manager_EntityManagerRequiredtransactionManager_undefined | EntityManagerRequiredAccessors
activeManager_
Protected get activeManager_(): EntityManager
Returns
EntityManager
EntityManagerEntityManagerRequiredImplementation of
IFileService.activeManager_
Inherited from
TransactionBaseService.activeManager_
Methods
atomicPhase_
Protected atomicPhase_<TResult, TError>(work, isolationOrErrorHandler?, maybeErrorHandlerOrDontFail?): Promise<TResult>
Wraps some work within a transactional block. If the service already has a transaction manager attached this will be reused, otherwise a new transaction manager is created.
TResultobjectRequiredTErrorobjectRequiredParameters
work(transactionManager: EntityManager) => Promise<TResult>RequiredisolationOrErrorHandlerIsolationLevel | (error: TError) => Promise<void | TResult>maybeErrorHandlerOrDontFail(error: TError) => Promise<void | TResult>Returns
Promise<TResult>
PromisePromise<TResult>RequiredImplementation of
Inherited from
TransactionBaseService.atomicPhase_
delete
Abstract delete(fileData): Promise<void>
remove file from fileservice
Parameters
Returns
Promise<void>
PromisePromise<void>RequiredImplementation of
getDownloadStream
Abstract getDownloadStream(fileData): Promise<ReadableStream>
download file from fileservice as stream
Parameters
Returns
Promise<ReadableStream>
readable stream of the file to download
Implementation of
IFileService.getDownloadStream
getPresignedDownloadUrl
Abstract getPresignedDownloadUrl(fileData): Promise<string>
Generate a presigned download url to obtain a file
Parameters
Returns
Promise<string>
PromisePromise<string>Requiredpresigned url to download the file
PromisePromise<string>RequiredImplementation of
IFileService.getPresignedDownloadUrl
getUploadStreamDescriptor
Abstract getUploadStreamDescriptor(fileData): Promise<FileServiceGetUploadStreamResult>
upload file to fileservice from stream
Parameters
Returns
Promise<FileServiceGetUploadStreamResult>
Implementation of
IFileService.getUploadStreamDescriptor
shouldRetryTransaction_
Protected shouldRetryTransaction_(err): boolean
Parameters
errRecord<string, unknown> | { code: string }RequiredReturns
boolean
booleanbooleanImplementation of
IFileService.shouldRetryTransaction_
Inherited from
TransactionBaseService.shouldRetryTransaction_
upload
Abstract upload(fileData): Promise<FileServiceUploadResult>
upload file to fileservice
Parameters
fileDataFileRequiredReturns
Promise<FileServiceUploadResult>
Implementation of
uploadProtected
Abstract uploadProtected(fileData): Promise<FileServiceUploadResult>
upload private file to fileservice
Parameters
fileDataFileRequiredReturns
Promise<FileServiceUploadResult>
Implementation of
withTransaction
withTransaction(transactionManager?): AbstractFileService
Parameters
transactionManagerEntityManager