mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-28 11:32:46 +03:00
50 lines
1.6 KiB
JavaScript
50 lines
1.6 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 SearchManager from "~/node_common/managers/search";
|
|
import * as RequestUtilities from "~/node_common/request-utilities";
|
|
|
|
export default async (req, res) => {
|
|
const userInfo = await RequestUtilities.checkAuthorizationInternal(req, res);
|
|
if (!userInfo) return;
|
|
const { id, user } = userInfo;
|
|
|
|
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 });
|
|
}
|
|
|
|
if (slate.ownerId !== id) {
|
|
return res.status(403).send({ decorator: "SERVER_DELETE_SLATE_NOT_ALLOWED", 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.deleteSlate(slate);
|
|
|
|
if (slate.isPublic) {
|
|
let updatedFiles = await Utilities.removeFromPublicCollectionUpdatePrivacy({
|
|
files: slate.objects,
|
|
});
|
|
SearchManager.updateFile(updatedFiles);
|
|
}
|
|
|
|
return res.status(200).send({ decorator: "SERVER_DELETE_SLATE", error: false });
|
|
};
|