mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-18 06:22:25 +03:00
70 lines
1.6 KiB
JavaScript
70 lines
1.6 KiB
JavaScript
import * as Environment from "~/node_common/environment";
|
|
import * as MW from "~/node_common/middleware";
|
|
import * as Data from "~/node_common/data";
|
|
import * as Utilities from "~/node_common/utilities";
|
|
|
|
import { v4 as uuid } from "uuid";
|
|
|
|
const initCORS = MW.init(MW.CORS);
|
|
const initAuth = MW.init(MW.RequireCookieAuthentication);
|
|
|
|
export default async (req, res) => {
|
|
initCORS(req, res);
|
|
initAuth(req, res);
|
|
|
|
const id = Utilities.getIdFromCookie(req);
|
|
if (!id) {
|
|
return res
|
|
.status(500)
|
|
.json({ decorator: "SERVER_GENERATE_API_KEY_AUTH", error: true });
|
|
}
|
|
|
|
const user = await Data.getUserById({
|
|
id,
|
|
});
|
|
|
|
if (!user) {
|
|
return res.status(404).json({
|
|
decorator: "SERVER_GENERATE_API_KEY_USER_NOT_FOUND",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
if (user.error) {
|
|
return res.status(500).json({
|
|
decorator: "SERVER_GENERATE_API_KEY_USER_NOT_FOUND",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
const keys = await Data.getAPIKeysByUserId({ userId: user.id });
|
|
|
|
if (keys.length > 9) {
|
|
return res.status(404).json({
|
|
decorator: "SERVER_GENERATE_API_KEY_TOO_MANY_KEYS",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
const key = await Data.createAPIKeyForUserId({
|
|
userId: user.id,
|
|
key: `SLA${uuid()}TE`,
|
|
});
|
|
|
|
if (!key) {
|
|
return res.status(404).json({
|
|
decorator: "SERVER_GENERATE_API_KEY_ERROR",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
if (key.error) {
|
|
return res.status(500).json({
|
|
decorator: "SERVER_GENERATE_API_KEY_ERROR",
|
|
error: true,
|
|
});
|
|
}
|
|
|
|
return res.status(200).json({ decorator: "SERVER_GENERATE_API_KEY", key });
|
|
};
|