slate/common/actions.js

296 lines
6.7 KiB
JavaScript
Raw Normal View History

2020-06-19 06:57:57 +03:00
import "isomorphic-fetch";
2020-02-19 09:30:47 +03:00
2020-06-19 06:57:57 +03:00
import * as Strings from "~/common/strings";
2020-02-19 09:30:47 +03:00
const REQUEST_HEADERS = {
2020-06-19 06:57:57 +03:00
Accept: "application/json",
"Content-Type": "application/json",
2020-02-19 09:30:47 +03:00
};
2020-08-07 05:17:49 +03:00
const DEFAULT_OPTIONS = {
method: "POST",
headers: REQUEST_HEADERS,
credentials: "include",
};
2020-10-31 02:12:20 +03:00
const CORS_OPTIONS = {
method: "POST",
headers: REQUEST_HEADERS,
credentials: "omit",
};
2020-08-07 05:17:49 +03:00
const returnJSON = async (route, options) => {
const response = await fetch(route, options);
const json = await response.json();
return json;
};
2020-08-19 21:17:12 +03:00
export const health = async (data = {}) => {
return await returnJSON(`/api/_`, {
...DEFAULT_OPTIONS,
2020-08-19 21:17:12 +03:00
body: JSON.stringify({ data: { buckets: data.buckets } }),
});
};
export const sendFilecoin = async (data) => {
if (Strings.isEmpty(data.source)) {
return null;
}
if (Strings.isEmpty(data.target)) {
return null;
2020-02-19 09:30:47 +03:00
}
if (!data.amount) {
return null;
2020-02-19 09:30:47 +03:00
}
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/addresses/send`, {
...DEFAULT_OPTIONS,
2020-08-27 07:24:49 +03:00
body: JSON.stringify({ data }),
});
};
export const checkUsername = async (data) => {
return await returnJSON(`/api/users/check`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
2020-09-23 14:17:56 +03:00
export const archive = async (data) => {
return await returnJSON(`/api/data/archive`, {
...DEFAULT_OPTIONS,
2020-09-23 14:17:56 +03:00
body: JSON.stringify({ data }),
});
};
export const removeFromBucket = async (data) => {
return await returnJSON(`/api/data/bucket-remove`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const getNetworkDirectory = async () => {
return await returnJSON(`/api/directory`, {
...DEFAULT_OPTIONS,
});
};
2020-09-03 09:00:02 +03:00
export const getSlateById = async (data) => {
return await returnJSON(`/api/slates/get`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
2020-02-19 09:30:47 +03:00
};
2020-11-17 10:12:35 +03:00
export const getSlatesByIds = async (data) => {
return await returnJSON(`/api/slates/get`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const deleteTrustRelationship = async (data) => {
return await returnJSON(`/api/users/trust-delete`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const updateTrustRelationship = async (data) => {
return await returnJSON(`/api/users/trust-update`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const createTrustRelationship = async (data) => {
return await returnJSON(`/api/users/trust`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const createSubscription = async (data) => {
return await returnJSON(`/api/subscribe`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const search = async (data) => {
2020-11-12 00:08:59 +03:00
if (Strings.isEmpty(data.query)) {
return { decorator: "NO_SERVER_TRIP", data: { results: [] } };
}
2020-11-16 11:18:02 +03:00
2020-11-12 00:08:59 +03:00
if (Strings.isEmpty(data.resourceURI)) {
return { decorator: "NO_RESOURCE_URI", data: { results: [] } };
}
2020-11-11 05:38:22 +03:00
return await returnJSON(`${data.resourceURI}/search`, {
2020-10-31 02:12:20 +03:00
...CORS_OPTIONS,
2020-11-10 00:20:38 +03:00
body: JSON.stringify({ data }),
});
};
2020-10-05 00:30:28 +03:00
export const createPendingFiles = async (data) => {
return await returnJSON(`/api/data/create-pending`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-10-05 00:30:28 +03:00
});
};
export const processPendingFiles = async () => {
return await returnJSON(`/api/data/process-pending`, {
...DEFAULT_OPTIONS,
body: JSON.stringify(),
});
};
2020-09-23 23:52:00 +03:00
export const addFileToSlate = async (data) => {
return await returnJSON(`/api/slates/add-url`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-09-23 23:52:00 +03:00
});
};
export const updateViewer = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/users/update`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
export const signIn = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/sign-in`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
export const hydrateAuthenticatedUser = async () => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/hydrate`, {
...DEFAULT_OPTIONS,
});
};
export const deleteViewer = async () => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/users/delete`, {
...DEFAULT_OPTIONS,
});
};
export const createUser = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/users/create`, {
...DEFAULT_OPTIONS,
2020-10-26 00:11:27 +03:00
body: JSON.stringify({ data }),
});
};
export const updateOnboardingStatus = async (data) => {
return await returnJSON(`/api/users/onboarding-update`, {
...DEFAULT_OPTIONS,
2020-11-10 00:20:38 +03:00
body: JSON.stringify({ data }),
});
};
export const updateSearch = async (data) => {
return await returnJSON(`/api/search/update`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
export const checkCIDStatus = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/data/cid-status`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
export const createSlate = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/slates/create`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
export const updateSlate = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/slates/update`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
2020-08-07 05:17:49 +03:00
export const deleteSlate = async (data) => {
return await returnJSON(`/api/slates/delete`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const removeFileFromSlate = async (data) => {
return await returnJSON(`/api/slates/remove`, {
2020-08-07 05:17:49 +03:00
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
2020-08-07 05:17:49 +03:00
export const generateAPIKey = async () => {
return await returnJSON(`/api/keys/generate`, {
...DEFAULT_OPTIONS,
});
};
export const deleteAPIKey = async (data) => {
2020-08-07 05:17:49 +03:00
return await returnJSON(`/api/keys/delete`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
2020-08-07 05:17:49 +03:00
});
};
2020-10-05 00:30:28 +03:00
export const addCIDToData = async (data) => {
return await returnJSON(`/api/data/add`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
2020-11-16 03:29:13 +03:00
export const updateData = async (data) => {
return await returnJSON(`/api/data/update`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
2020-09-18 06:40:10 +03:00
export const deleteBucketItems = async (data) => {
2020-10-21 23:06:44 +03:00
return await returnJSON(`/api/data/remove`, {
2020-09-18 06:40:10 +03:00
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
2020-09-03 06:26:56 +03:00
export const getSerializedSlate = async (data) => {
return await returnJSON(`/api/slates/get-serialized`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
export const getSerializedProfile = async (data) => {
return await returnJSON(`/api/users/get-serialized`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};
2020-09-17 02:26:15 +03:00
export const createSupportMessage = async (data) => {
return await returnJSON(`/api/support-message`, {
...DEFAULT_OPTIONS,
body: JSON.stringify({ data }),
});
};