DocSpace-client/packages/shared/api/portal/index.ts

356 lines
8.0 KiB
TypeScript

// (c) Copyright Ascensio System SIA 2009-2024
//
// This program is a free software product.
// You can redistribute it and/or modify it under the terms
// of the GNU Affero General Public License (AGPL) version 3 as published by the Free Software
// Foundation. In accordance with Section 7(a) of the GNU AGPL its Section 15 shall be amended
// to the effect that Ascensio System SIA expressly excludes the warranty of non-infringement of
// any third-party rights.
//
// This program is distributed WITHOUT ANY WARRANTY, without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For details, see
// the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html
//
// You can contact Ascensio System SIA at Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021.
//
// The interactive user interfaces in modified source and object code versions of the Program must
// display Appropriate Legal Notices, as required under Section 5 of the GNU AGPL version 3.
//
// Pursuant to Section 7(b) of the License you must retain the original Product logo when
// distributing the program. Pursuant to Section 7(e) we decline to grant you any rights under
// trademark law for use of our trademarks.
//
// All the Product's GUI elements, including illustrations and icon sets, as well as technical writing
// content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
import { AxiosRequestConfig } from "axios";
import { EmployeeType } from "../../enums";
import { request } from "../client";
import { TPaymentQuota, TPortal, TPortalTariff, TTenantExtra } from "./types";
export function getShortenedLink(link) {
return request({
method: "put",
url: "/portal/getshortenlink",
data: { link },
});
}
export function getInvitationLink(type) {
return request({
method: "get",
url: `/portal/users/invite/${type}`,
}).then((link) => {
return Promise.resolve(link);
});
}
export function getInvitationLinks() {
return Promise.all([
getInvitationLink(EmployeeType.User),
getInvitationLink(EmployeeType.Guest),
getInvitationLink(EmployeeType.Admin),
getInvitationLink(EmployeeType.Collaborator),
]).then(
([
userInvitationLinkResp,
guestInvitationLinkResp,
adminInvitationLinkResp,
collaboratorInvitationLinkResp,
]) => {
return Promise.resolve({
userLink: userInvitationLinkResp,
guestLink: guestInvitationLinkResp,
adminLink: adminInvitationLinkResp,
collaboratorLink: collaboratorInvitationLinkResp,
});
},
);
}
export function startBackup(
storageType,
storageParams,
backupMail = false,
dump = false,
) {
const options = {
method: "post",
url: `/portal/startbackup`,
data: {
storageType,
storageParams,
backupMail,
dump,
},
};
return request(options);
}
export function getBackupProgress() {
const options = {
method: "get",
url: "/portal/getbackupprogress",
};
return request(options);
}
export function deleteBackupSchedule() {
const options = {
method: "delete",
url: "/portal/deletebackupschedule",
};
return request(options);
}
export function getBackupSchedule() {
const options = {
method: "get",
url: "/portal/getbackupschedule",
};
return request(options);
}
export function createBackupSchedule(
storageType,
storageParams,
backupsStored,
Period,
Hour,
Day = null,
backupMail = false,
dump = false,
) {
const cronParams = {
Period,
Hour,
Day,
};
const options = {
method: "post",
url: "/portal/createbackupschedule",
data: {
storageType,
storageParams,
backupsStored,
cronParams,
backupMail,
dump,
},
};
return request(options);
}
export function deleteBackupHistory() {
return request({ method: "delete", url: "/portal/deletebackuphistory" });
}
export function deleteBackup(id) {
return request({ method: "delete", url: `/portal/deletebackup/${id}` });
}
export function getBackupHistory() {
return request({ method: "get", url: "/portal/getbackuphistory" });
}
export function startRestore(backupId, storageType, storageParams, notify) {
return request({
method: "post",
url: `/portal/startrestore`,
data: {
backupId,
storageType,
storageParams,
notify,
},
});
}
export function getRestoreProgress() {
return request({ method: "get", url: "/portal/getrestoreprogress" });
}
export function enableRestore() {
return request({ method: "get", url: "/portal/enablerestore" });
}
export function enableAutoBackup() {
return request({ method: "get", url: "/portal/enableAutoBackup" });
}
export function setPortalRename(alias) {
return request({
method: "put",
url: "/portal/portalrename",
data: { alias },
});
}
export function sendSuspendPortalEmail() {
return request({
method: "post",
url: "/portal/suspend",
});
}
export function sendDeletePortalEmail() {
return request({
method: "post",
url: "/portal/delete",
});
}
export function suspendPortal(confirmKey = null) {
const options = {
method: "put",
url: "/portal/suspend",
};
if (confirmKey) options.headers = { confirm: confirmKey };
return request(options);
}
export function continuePortal(confirmKey = null) {
const options = {
method: "put",
url: "/portal/continue",
};
if (confirmKey) options.headers = { confirm: confirmKey };
return request(options);
}
export function deletePortal(confirmKey = null) {
const options = {
method: "delete",
url: "/portal/delete",
};
if (confirmKey) options.headers = { confirm: confirmKey };
return request(options);
}
export async function getPortalPaymentQuotas() {
const res = (await request({
method: "get",
url: "/portal/payment/quotas",
})) as TPaymentQuota[];
return res;
}
export async function getPortalTenantExtra(refresh: boolean) {
const params = refresh ? { refresh: true } : {};
const res = (await request({
method: "get",
url: "/portal/tenantextra",
params,
})) as TTenantExtra;
return res;
}
export async function getPortalQuota(refresh = false) {
const params = refresh ? { refresh: true } : {};
// console.log("getPortalQuota", { params });
const res = (await request({
method: "get",
url: "/portal/payment/quota",
params,
})) as TPaymentQuota;
return res;
}
export async function getPortalTariff(refresh = false) {
const params = refresh ? { refresh: true } : {};
const res = (await request({
method: "get",
url: "/portal/tariff",
params,
})) as TPortalTariff;
return res;
}
export async function getPaymentAccount() {
const res = (await request({
method: "get",
url: "/portal/payment/account",
})) as string;
return res;
}
export async function getPaymentLink(
adminCount: number,
backUrl: string,
signal?: AbortSignal,
) {
const res = (await request({
method: "put",
url: `/portal/payment/url`,
data: {
quantity: { admin: adminCount },
backUrl,
},
signal,
})) as string;
return res;
}
export function updatePayment(adminCount) {
return request({
method: "put",
url: `/portal/payment/update`,
data: {
quantity: { admin: adminCount },
},
});
}
export function getCurrencies() {
return request({ method: "get", url: "/portal/payment/currencies" });
}
export function getPaymentTariff() {
return request({ method: "get", url: "/portal/payment/tariff" });
}
export function sendPaymentRequest(email, userName, message) {
return request({
method: "post",
url: `/portal/payment/request `,
data: {
email,
userName,
message,
},
});
}
export async function getPortal() {
const options: AxiosRequestConfig = {
method: "get",
url: "/portal",
};
const res = (await request(options)) as TPortal;
return res;
}
export function getPortalUsersCount() {
const options = {
method: "get",
url: "/portal/userscount",
};
return request(options);
}