mirror of
https://github.com/plankanban/planka.git
synced 2025-07-20 13:49:43 +02:00
76 lines
1.8 KiB
JavaScript
76 lines
1.8 KiB
JavaScript
|
/*!
|
||
|
* Copyright (c) 2024 PLANKA Software GmbH
|
||
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
||
|
*/
|
||
|
|
||
|
module.exports = {
|
||
|
inputs: {
|
||
|
record: {
|
||
|
type: 'ref',
|
||
|
required: true,
|
||
|
},
|
||
|
project: {
|
||
|
type: 'ref',
|
||
|
required: true,
|
||
|
},
|
||
|
actorUser: {
|
||
|
type: 'ref',
|
||
|
required: true,
|
||
|
},
|
||
|
request: {
|
||
|
type: 'ref',
|
||
|
},
|
||
|
},
|
||
|
|
||
|
async fn(inputs) {
|
||
|
const scoper = sails.helpers.projects.makeScoper.with({
|
||
|
record: inputs.project,
|
||
|
});
|
||
|
|
||
|
if (inputs.project.backgroundType === Project.BackgroundTypes.IMAGE) {
|
||
|
if (inputs.record.id === inputs.project.backgroundImageId) {
|
||
|
await sails.helpers.projects.updateOne.with({
|
||
|
scoper,
|
||
|
record: inputs.project,
|
||
|
values: {
|
||
|
backgroundType: null,
|
||
|
},
|
||
|
actorUser: inputs.actorUser,
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const backgroundImage = await BackgroundImage.qm.deleteOne(inputs.record.id);
|
||
|
|
||
|
if (backgroundImage) {
|
||
|
sails.helpers.backgroundImages.removeRelatedFiles(backgroundImage);
|
||
|
|
||
|
const projectRelatedUserIds = await scoper.getProjectRelatedUserIds();
|
||
|
|
||
|
projectRelatedUserIds.forEach((userId) => {
|
||
|
sails.sockets.broadcast(
|
||
|
`user:${userId}`,
|
||
|
'backgroundImageDelete',
|
||
|
{
|
||
|
item: sails.helpers.backgroundImages.presentOne(backgroundImage),
|
||
|
},
|
||
|
inputs.request,
|
||
|
);
|
||
|
});
|
||
|
|
||
|
sails.helpers.utils.sendWebhooks.with({
|
||
|
event: 'backgroundImageDelete',
|
||
|
buildData: () => ({
|
||
|
item: sails.helpers.backgroundImages.presentOne(backgroundImage),
|
||
|
included: {
|
||
|
projects: [inputs.project],
|
||
|
},
|
||
|
}),
|
||
|
user: inputs.actorUser,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
return backgroundImage;
|
||
|
},
|
||
|
};
|