mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-02 21:35:26 +03:00
73 lines
2.1 KiB
JavaScript
73 lines
2.1 KiB
JavaScript
import * as Utilities from "~/node_common/utilities";
|
|
import * as Data from "~/node_common/data";
|
|
import * as Strings from "~/common/strings";
|
|
import * as ViewerManager from "~/node_common/managers/viewer";
|
|
import * as SearchManager from "~/node_common/managers/search";
|
|
|
|
export default async (req, res) => {
|
|
const id = Utilities.getIdFromCookie(req);
|
|
if (!id) {
|
|
return res.status(401).send({ decorator: "SERVER_NOT_AUTHENTICATED", error: true });
|
|
}
|
|
|
|
const user = await Data.getUserById({
|
|
id,
|
|
});
|
|
|
|
if (!user) {
|
|
return res.status(404).send({
|
|
decorator: "SERVER_USER_NOT_FOUND",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
if (user.error) {
|
|
return res.status(500).send({
|
|
decorator: "SERVER_USER_NOT_FOUND",
|
|
error: true,
|
|
});
|
|
}
|
|
const slate = await Data.getSlateById({ id: req.body.data.id, includeFiles: true });
|
|
|
|
if (!slate) {
|
|
return res.status(404).send({ decorator: "SERVER_DELETE_SLATE_SLATE_NOT_FOUND", error: true });
|
|
}
|
|
|
|
if (slate.error) {
|
|
return res.status(500).send({ decorator: "SERVER_DELETE_SLATE_SLATE_NOT_FOUND", error: true });
|
|
}
|
|
|
|
const deleteResponse = await Data.deleteSlateById({ id: slate.id });
|
|
|
|
if (!deleteResponse) {
|
|
return res.status(404).send({ decorator: "SERVER_DELETE_SLATE_FAILED", error: true });
|
|
}
|
|
|
|
if (deleteResponse.error) {
|
|
return res.status(500).send({ decorator: "SERVER_DELETE_SLATE_FAILED", error: true });
|
|
}
|
|
|
|
ViewerManager.hydratePartial(id, { slates: true });
|
|
|
|
SearchManager.updateSlate(slate, "REMOVE");
|
|
|
|
if (slate.isPublic) {
|
|
//NOTE(martina): if any of the files in it are now private (because they are no longer in any public slates) remove them from search
|
|
const files = slate.objects;
|
|
|
|
const publicFiles = await Data.getFilesByIds({
|
|
ids: files.map((file) => file.id),
|
|
publicOnly: true,
|
|
});
|
|
const publicIds = publicFiles.map((file) => file.id);
|
|
|
|
let privateFiles = files.filter((file) => !publicIds.includes(file.id));
|
|
|
|
if (privateFiles.length) {
|
|
SearchManager.updateFile(privateFiles, "REMOVE");
|
|
}
|
|
}
|
|
|
|
return res.status(200).send({ decorator: "SERVER_DELETE_SLATE", error: false });
|
|
};
|