mirror of
https://github.com/filecoin-project/slate.git
synced 2024-12-24 17:44:50 +03:00
lands update slate API endpoint
This commit is contained in:
parent
9f4cf83b04
commit
15aa793d29
109
pages/api/v1/update-slate.js
Normal file
109
pages/api/v1/update-slate.js
Normal file
@ -0,0 +1,109 @@
|
||||
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";
|
||||
|
||||
export default async (req, res) => {
|
||||
if (Strings.isEmpty(req.headers.authorization)) {
|
||||
return res.status(404).send({
|
||||
decorator: "SERVER_API_KEY_MISSING",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
|
||||
const parsed = Strings.getKey(req.headers.authorization);
|
||||
|
||||
const key = await Data.getAPIKeyByKey({
|
||||
key: parsed,
|
||||
});
|
||||
|
||||
if (!key) {
|
||||
return res.status(403).send({
|
||||
decorator: "V1_UPDATE_SLATE_NOT_FOUND",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
|
||||
if (key.error) {
|
||||
return res.status(500).send({
|
||||
decorator: "V1_UPDATE_SLATE_NOT_FOUND",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
|
||||
const user = await Data.getUserById({
|
||||
id: key.owner_id,
|
||||
});
|
||||
|
||||
if (!user) {
|
||||
return res.status(404).send({
|
||||
decorator: "V1_UPDATE_SLATE_USER_NOT_FOUND",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
|
||||
if (user.error) {
|
||||
return res.status(500).send({
|
||||
decorator: "V1_UPDATE_SLATE_USER_NOT_FOUND",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
|
||||
const response = await Data.getSlateById({ id: req.body.data.id });
|
||||
|
||||
if (!response) {
|
||||
return res.status(404).send({ decorator: "V1_UPDATE_SLATE_NOT_FOUND", error: true });
|
||||
}
|
||||
|
||||
if (response.error) {
|
||||
return res.status(500).send({ decorator: "V1_UPDATE_SLATE_NOT_FOUND", error: true });
|
||||
}
|
||||
|
||||
if (!req.body.data) {
|
||||
return res.status(500).send({
|
||||
decorator: "V1_UPDATE_SLATE_MUST_PROVIDE_DATA",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
|
||||
if (!Strings.isEmpty(req.body.data.data.name)) {
|
||||
const existingSlate = await Data.getSlateByName({
|
||||
slatename: req.body.data.data.name,
|
||||
ownerId: user.id,
|
||||
});
|
||||
|
||||
if (existingSlate && existingSlate.id !== req.body.data.id) {
|
||||
return res.status(500).send({
|
||||
decorator: "V1_UPDATE_SLATE_NAME_TAKEN",
|
||||
error: true,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
let slate = await Data.updateSlateById({
|
||||
id: response.id,
|
||||
slatename: !Strings.isEmpty(req.body.data.data.name)
|
||||
? Strings.createSlug(req.body.data.data.name)
|
||||
: response.slatename,
|
||||
updated_at: new Date(),
|
||||
data: {
|
||||
...response.data,
|
||||
...req.body.data.data,
|
||||
},
|
||||
});
|
||||
|
||||
if (!slate) {
|
||||
return res.status(404).send({ decorator: "V1_UPDATE_SLATE", error: true });
|
||||
}
|
||||
|
||||
if (slate.error) {
|
||||
return res.status(500).send({ decorator: "V1_UPDATE_SLATE", error: true });
|
||||
}
|
||||
|
||||
let slates = await Data.getSlatesByUserId({ userId: id });
|
||||
if (slates) {
|
||||
ViewerManager.hydratePartialSlates(slates, id);
|
||||
}
|
||||
|
||||
return res.status(200).send({ decorator: "V1_UPDATE_SLATE", slate });
|
||||
};
|
@ -103,6 +103,22 @@ class Key extends React.Component {
|
||||
}
|
||||
}
|
||||
|
||||
const EXAMPLE_UPDATE_SLATE = (key) => {
|
||||
return `const slate = SOME_SLATE_DATA_YOU_HAVE;
|
||||
const response = await fetch('https://slate.host/api/v1/update-slate', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
// NOTE: your API key
|
||||
Authorization: 'Basic ${key}',
|
||||
},
|
||||
body: JSON.stringify({ data: slate })
|
||||
});
|
||||
|
||||
const json = await response.json();
|
||||
console.log(json);`;
|
||||
};
|
||||
|
||||
const EXAMPLE_GET_SLATE = (
|
||||
key,
|
||||
slateId
|
||||
@ -330,6 +346,12 @@ export default class SceneSettingsDeveloper extends React.Component {
|
||||
children={EXAMPLE_UPLOAD_TO_SLATE(key, slateId)}
|
||||
style={{ maxWidth: "768px" }}
|
||||
/>
|
||||
<System.DescriptionGroup
|
||||
style={{ marginTop: 48 }}
|
||||
label="Update slate"
|
||||
description="This API request will allow you to update a slate by sending your current locally modified version."
|
||||
/>
|
||||
<CodeBlock children={EXAMPLE_UPDATE_SLATE(key)} style={{ maxWidth: "768px" }} />
|
||||
</React.Fragment>
|
||||
) : null}
|
||||
</ScenePage>
|
||||
|
Loading…
Reference in New Issue
Block a user