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
EntityManager
EntityManagerRequiredImplementation 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.
TResult
objectRequiredTError
objectRequiredParameters
work
(transactionManager: EntityManager) => Promise<TResult>RequiredisolationOrErrorHandler
IsolationLevel | (error: TError) => Promise<void | TResult>maybeErrorHandlerOrDontFail
(error: TError) => Promise<void | TResult>Returns
Promise
<TResult
>
Promise
Promise<TResult>RequiredImplementation of
Inherited from
TransactionBaseService.atomicPhase_
delete
Abstract
delete(fileData
): Promise
<void
>
remove file from fileservice
Parameters
Returns
Promise
<void
>
Promise
Promise<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
>
Promise
Promise<string>Requiredpresigned url to download the file
Promise
Promise<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
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
boolean
booleanImplementation of
IFileService.shouldRetryTransaction_
Inherited from
TransactionBaseService.shouldRetryTransaction_
upload
Abstract
upload(fileData
): Promise
<FileServiceUploadResult
>
upload file to fileservice
Parameters
fileData
FileRequiredReturns
Promise
<FileServiceUploadResult
>
Implementation of
uploadProtected
Abstract
uploadProtected(fileData
): Promise
<FileServiceUploadResult
>
upload private file to fileservice
Parameters
fileData
FileRequiredReturns
Promise
<FileServiceUploadResult
>
Implementation of
withTransaction
withTransaction(transactionManager?
): AbstractFileService
Parameters
transactionManager
EntityManager