mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-02 08:56:02 +03:00
95 lines
2.2 KiB
JavaScript
95 lines
2.2 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";
|
||
|
import * as Monitor from "~/node_common/monitor";
|
||
|
|
||
|
export default async (req, res) => {
|
||
|
if (Strings.isEmpty(req.headers.authorization)) {
|
||
|
return res.status(404).send({
|
||
|
decorator: "NO_API_KEY_PROVIDED",
|
||
|
error: true,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
const parsed = Strings.getKey(req.headers.authorization);
|
||
|
|
||
|
const key = await Data.getAPIKeyByKey({
|
||
|
key: parsed,
|
||
|
});
|
||
|
|
||
|
if (!key) {
|
||
|
return res.status(403).send({
|
||
|
decorator: "NO_MATCHING_API_KEY_FOUND",
|
||
|
error: true,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (key.error) {
|
||
|
return res.status(500).send({
|
||
|
decorator: "ERROR_WHILE_VERIFYING_API_KEY",
|
||
|
error: true,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
const user = await Data.getUserById({
|
||
|
id: key.ownerId,
|
||
|
});
|
||
|
|
||
|
if (!user) {
|
||
|
return res.status(404).send({
|
||
|
decorator: "API_KEY_OWNER_NOT_FOUND",
|
||
|
error: true,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (user.error) {
|
||
|
return res.status(500).send({
|
||
|
decorator: "ERROR_WHILE_LOCATING_API_KEY_OWNER",
|
||
|
error: true,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
if (!req.body?.data?.name) {
|
||
|
return res.status(500).send({
|
||
|
decorator: "MUST_PROVIDE_DATA",
|
||
|
error: true,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
const slatename = Strings.createSlug(req.body.data.name);
|
||
|
|
||
|
const existingSlate = await Data.getSlateByName({
|
||
|
slatename,
|
||
|
ownerId: user.id,
|
||
|
});
|
||
|
|
||
|
if (existingSlate) {
|
||
|
return res.status(500).send({ decorator: "EXISTING_SLATE_NAME", error: true });
|
||
|
}
|
||
|
|
||
|
const slate = await Data.createSlate({
|
||
|
ownerId: id,
|
||
|
slatename: Strings.createSlug(req.body.data.name),
|
||
|
isPublic: req.body.data.isPublic,
|
||
|
data: {
|
||
|
name: req.body.data.name,
|
||
|
body: req.body.data.body,
|
||
|
tags: req.body.data.tags,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
if (!slate || slate.error) {
|
||
|
return res.status(500).send({ decorator: "CREATE_COLLECTION_FAILED", error: true });
|
||
|
}
|
||
|
|
||
|
ViewerManager.hydratePartial(id, { slates: true });
|
||
|
|
||
|
SearchManager.updateSlate(slate, "ADD");
|
||
|
|
||
|
Monitor.createSlate({ user, slate });
|
||
|
|
||
|
return res.status(200).send({ decorator: "CREATE_COLLECTION", slate });
|
||
|
};
|