mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-02 21:35:26 +03:00
77 lines
1.7 KiB
JavaScript
77 lines
1.7 KiB
JavaScript
import * as Utilities from "~/node_common/utilities";
|
|
import * as Data from "~/node_common/data";
|
|
import * as Strings from "~/common/strings";
|
|
import * as Powergate from "~/node_common/powergate";
|
|
|
|
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 id = key.ownerId;
|
|
|
|
let user = await Data.getUserById({
|
|
id,
|
|
includeFiles: true,
|
|
sanitize: true,
|
|
});
|
|
|
|
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 });
|
|
}
|
|
|
|
let slates = await Data.getSlatesByUserId({
|
|
ownerId: id,
|
|
sanitize: true,
|
|
includeFiles: true,
|
|
});
|
|
|
|
if (!slates) {
|
|
return res.status(404).send({
|
|
decorator: "COULD_NOT_FETCH_COLLECTIONS",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
if (slates.error) {
|
|
return res.status(500).send({
|
|
decorator: "COULD_NOT_FETCH_COLLECTIONS",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
slates = slates.map((each) => {
|
|
each.data.url = `https://slate.host/${user.username}/${each.slatename}`;
|
|
return each;
|
|
});
|
|
|
|
return res.status(200).send({ decorator: "V2_GET", user, collections: slates });
|
|
};
|