mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
|
|
module.exports = {
|
||
|
|
|
||
|
|
|
||
|
|
friendlyName: 'Delete software',
|
||
|
|
|
||
|
|
|
||
|
|
description: 'Deletes deployed software for all teams on a Fleet instance, or undeployed software in the app\'s database',
|
||
|
|
|
||
|
|
inputs: {
|
||
|
|
software: {
|
||
|
|
type: {},
|
||
|
|
description: 'The software that will be deleted.',
|
||
|
|
required: true,
|
||
|
|
}
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
exits: {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
fn: async function ({software}) {
|
||
|
|
// If the provided software does not have a teams array and has an ID, it is an undeployed software that will be deleted.
|
||
|
|
if(software.id && !software.teams){
|
||
|
|
await sails.rm(sails.config.uploads.prefixForFileDeletion+software.uploadFd);
|
||
|
|
await UndeployedSoftware.destroy({id: software.id});
|
||
|
|
} else {// Otherwise, this is a deployed software, and we'll use information from the teams array to remove the software.
|
||
|
|
for(let team of software.teams){
|
||
|
|
await sails.helpers.http.sendHttpRequest.with({
|
||
|
|
method: 'DELETE',
|
||
|
|
baseUrl: sails.config.custom.fleetBaseUrl,
|
||
|
|
url: `/api/v1/fleet/software/titles/${software.fleetApid}/available_for_install?team_id=${team.fleetApid}`,
|
||
|
|
headers: {
|
||
|
|
Authorization: `Bearer ${sails.config.custom.fleetApiToken}`,
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
// All done.
|
||
|
|
return;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
};
|