module.exports = Self => {
    Self.remoteMethodCtx('removeFile', {
        description: 'Removes a claim document',
        accessType: 'WRITE',
        accepts: {
            arg: 'id',
            type: 'number',
            description: 'The document id',
            http: {source: 'path'}
        },
        returns: {
            type: 'object',
            root: true
        },
        http: {
            path: `/:id/removeFile`,
            verb: 'POST'
        }
    });

    Self.removeFile = async(ctx, id, options) => {
        let tx;
        let myOptions = {};

        if (typeof options == 'object')
            Object.assign(myOptions, options);

        if (!myOptions.transaction) {
            tx = await Self.beginTransaction({});
            myOptions.transaction = tx;
        }

        try {
            const models = Self.app.models;
            const targetClaimDms = await models.ClaimDms.findById(id, null, myOptions);
            const targetDms = await models.Dms.findById(targetClaimDms.dmsFk, null, myOptions);
            const trashDmsType = await models.DmsType.findOne({where: {code: 'trash'}}, myOptions);

            await models.Dms.removeFile(ctx, targetClaimDms.dmsFk, myOptions);
            await targetClaimDms.destroy(myOptions);

            await targetDms.updateAttribute('dmsTypeFk', trashDmsType.id, myOptions);

            if (tx) await tx.commit();

            return targetDms;
        } catch (e) {
            if (tx) await tx.rollback();
            throw e;
        }
    };
};