2019-11-22 09:42:05 +00:00
|
|
|
module.exports = Self => {
|
|
|
|
Self.remoteMethodCtx('removeFile', {
|
2019-11-22 12:46:38 +00:00
|
|
|
description: 'Removes a worker document',
|
2019-11-22 09:42:05 +00:00
|
|
|
accessType: 'WRITE',
|
|
|
|
accepts: {
|
|
|
|
arg: 'id',
|
|
|
|
type: 'Number',
|
2020-03-02 06:50:07 +00:00
|
|
|
description: 'The worker document id',
|
2019-11-22 09:42:05 +00:00
|
|
|
http: {source: 'path'}
|
|
|
|
},
|
|
|
|
returns: {
|
|
|
|
type: 'Object',
|
|
|
|
root: true
|
|
|
|
},
|
|
|
|
http: {
|
|
|
|
path: `/:id/removeFile`,
|
|
|
|
verb: 'POST'
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-12-12 11:09:06 +00:00
|
|
|
Self.removeFile = async(ctx, id, options) => {
|
2019-11-22 09:42:05 +00:00
|
|
|
const models = Self.app.models;
|
2023-12-12 11:09:06 +00:00
|
|
|
let tx;
|
|
|
|
try {
|
|
|
|
const myOptions = {};
|
2019-11-22 09:42:05 +00:00
|
|
|
|
2023-12-12 11:09:06 +00:00
|
|
|
if (typeof options == 'object')
|
|
|
|
Object.assign(myOptions, options);
|
2019-11-22 09:42:05 +00:00
|
|
|
|
2023-12-12 11:09:06 +00:00
|
|
|
if (!myOptions.transaction) {
|
|
|
|
tx = await Self.beginTransaction({});
|
|
|
|
myOptions.transaction = tx;
|
|
|
|
}
|
|
|
|
// const workerDms = await Self.findById(id);
|
|
|
|
myOptions.model = 'WorkerDms';
|
|
|
|
await models.Dms.removeFile(ctx, id, myOptions);
|
|
|
|
// await workerDms.destroy();
|
|
|
|
if (tx) await tx.commit();
|
|
|
|
|
|
|
|
return workerDms;
|
|
|
|
} catch (e) {
|
|
|
|
await tx.rollback();
|
|
|
|
throw e;
|
|
|
|
}
|
2019-11-22 09:42:05 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|