slate/pages/api/users/update.js

74 lines
1.9 KiB
JavaScript
Raw Normal View History

import * as MW from "~/node_common/middleware";
import * as Data from "~/node_common/data";
import * as Utilities from "~/node_common/utilities";
import * as Strings from "~/common/strings";
import DB from "~/node_common/database";
import PG from "~/node_common/powergate";
const initCORS = MW.init(MW.CORS);
const initAuth = MW.init(MW.RequireCookieAuthentication);
export default async (req, res) => {
initCORS(req, res);
initAuth(req, res);
const username = Utilities.getUserFromCookie(req);
if (!username) {
return res
.status(500)
.json({ decorator: "SERVER_USER_UPDATE", error: true });
}
const user = await Data.getUserByUsername({
username,
});
if (!user) {
return res
.status(200)
.json({ decorator: "SERVER_USER_UPDATE", error: true });
}
if (user.error) {
return res
.status(200)
.json({ decorator: "SERVER_USER_UPDATE", error: true });
}
// TODO(jim): POWERGATE_ISSUE 0.2.0
// Should work when our hosted Powergate works.
if (req.body.type === "SET_DEFAULT_STORAGE_CONFIG") {
PG.setToken(user.data.tokens.pg);
let data;
try {
data = await PG.ffs.setDefaultStorageConfig(req.body.config);
} catch (e) {
console.log(e);
return res
.status(500)
.send({ decorator: "SERVER_USER_UPDATE_SETTINGS_CONFIG", error: true });
}
}
// TODO(jim): POWERGATE_ISSUE 0.2.0
// Should work when our hosted Powergate works.
if (req.body.type === "CREATE_FILECOIN_ADDRESS") {
PG.setToken(user.data.tokens.pg);
let data;
try {
data = await PG.ffs.newAddr(
req.body.address.name,
req.body.address.type,
req.body.address.makeDefault
);
} catch (e) {
return res
.status(500)
.send({ decorator: "SERVER_CREATE_FILECOIN_ADDRESS", error: true });
}
}
return res.status(200).json({ decorator: "SERVER_USER_UPDATE" });
};