mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 01:29:35 +02:00
[misc] move the linting setup to the root of the monorepo GitOrigin-RevId: 1633e2a58598add0b727738cd3bfba0ab7bae781
97 lines
2.3 KiB
JavaScript
97 lines
2.3 KiB
JavaScript
const { NotImplementedError } = require('./Errors')
|
|
|
|
module.exports = class AbstractPersistor {
|
|
async sendFile(location, target, source) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'sendFile',
|
|
location,
|
|
target,
|
|
source,
|
|
})
|
|
}
|
|
|
|
async sendStream(location, target, sourceStream, opts = {}) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'sendStream',
|
|
location,
|
|
target,
|
|
opts,
|
|
})
|
|
}
|
|
|
|
// opts may be {start: Number, end: Number}
|
|
async getObjectStream(location, name, opts) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'getObjectStream',
|
|
location,
|
|
name,
|
|
opts,
|
|
})
|
|
}
|
|
|
|
async getRedirectUrl(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'getRedirectUrl',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
|
|
async getObjectSize(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'getObjectSize',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
|
|
async getObjectMd5Hash(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'getObjectMd5Hash',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
|
|
async copyObject(location, fromName, toName) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'copyObject',
|
|
location,
|
|
fromName,
|
|
toName,
|
|
})
|
|
}
|
|
|
|
async deleteObject(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'deleteObject',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
|
|
async deleteDirectory(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'deleteDirectory',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
|
|
async checkIfObjectExists(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'checkIfObjectExists',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
|
|
async directorySize(location, name) {
|
|
throw new NotImplementedError('method not implemented in persistor', {
|
|
method: 'directorySize',
|
|
location,
|
|
name,
|
|
})
|
|
}
|
|
}
|