mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-13 05:56:06 +03:00
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import * as Utilities from "~/node_common/utilities";
|
|
import * as Data from "~/node_common/data";
|
|
import * as Strings from "~/common/strings";
|
|
|
|
export default async (req, res) => {
|
|
const id = Utilities.getIdFromCookie(req);
|
|
if (!id) {
|
|
return res.status(500).send({ decorator: "SERVER_GET_SLATE", error: true });
|
|
}
|
|
|
|
const user = await Data.getUserById({
|
|
id,
|
|
});
|
|
|
|
if (!user) {
|
|
return res.status(404).send({
|
|
decorator: "SERVER_GET_SLATE_USER_NOT_FOUND",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
if (user.error) {
|
|
return res.status(500).send({
|
|
decorator: "SERVER_GET_SLATE_USER_NOT_FOUND",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
const response = await Data.getSlateById({ id: req.body.data.id });
|
|
|
|
if (!response) {
|
|
return res
|
|
.status(404)
|
|
.send({ decorator: "SERVER_GET_SLATE_NOT_FOUND", error: true });
|
|
}
|
|
|
|
if (response.error) {
|
|
return res
|
|
.status(500)
|
|
.send({ decorator: "SERVER_GET_SLATE_NOT_FOUND", error: true });
|
|
}
|
|
|
|
return res
|
|
.status(200)
|
|
.send({ decorator: "SERVER_UPDATE_SLATE", slate: response });
|
|
};
|