2023-07-25 19:37:04 +02:00
|
|
|
import { API_BASE } from "../utils/constants";
|
|
|
|
import { baseHeaders } from "../utils/request";
|
|
|
|
|
|
|
|
const Admin = {
|
|
|
|
// User Management
|
|
|
|
users: async () => {
|
|
|
|
return await fetch(`${API_BASE}/admin/users`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.then((res) => res?.users || [])
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
},
|
|
|
|
newUser: async (data) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/users/new`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify(data),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { user: null, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
updateUser: async (userId, data) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/user/${userId}`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify(data),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
deleteUser: async (userId) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/user/${userId}`, {
|
|
|
|
method: "DELETE",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Invitations
|
|
|
|
invites: async () => {
|
|
|
|
return await fetch(`${API_BASE}/admin/invites`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.then((res) => res?.invites || [])
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
},
|
|
|
|
newInvite: async () => {
|
|
|
|
return await fetch(`${API_BASE}/admin/invite/new`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { invite: null, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
disableInvite: async (inviteId) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/invite/${inviteId}`, {
|
|
|
|
method: "DELETE",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Workspaces Mgmt
|
|
|
|
workspaces: async () => {
|
|
|
|
return await fetch(`${API_BASE}/admin/workspaces`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.then((res) => res?.workspaces || [])
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
},
|
|
|
|
newWorkspace: async (name) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/workspaces/new`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify({ name }),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { workspace: null, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
updateUsersInWorkspace: async (workspaceId, userIds = []) => {
|
|
|
|
return await fetch(
|
|
|
|
`${API_BASE}/admin/workspaces/${workspaceId}/update-users`,
|
|
|
|
{
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify({ userIds }),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
deleteWorkspace: async (workspaceId) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/workspaces/${workspaceId}`, {
|
|
|
|
method: "DELETE",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// Workspace Chats Mgmt
|
|
|
|
chats: async (offset = 0) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/workspace-chats`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify({ offset }),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return [];
|
|
|
|
});
|
|
|
|
},
|
|
|
|
deleteChat: async (chatId) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/workspace-chats/${chatId}`, {
|
|
|
|
method: "DELETE",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
// System Preferences
|
|
|
|
systemPreferences: async () => {
|
|
|
|
return await fetch(`${API_BASE}/admin/system-preferences`, {
|
|
|
|
method: "GET",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
updateSystemPreferences: async (updates = {}) => {
|
|
|
|
return await fetch(`${API_BASE}/admin/system-preferences`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify(updates),
|
|
|
|
})
|
|
|
|
.then((res) => res.json())
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
2023-08-15 00:22:55 +02:00
|
|
|
uploadLogo: async function (formData) {
|
|
|
|
return await fetch(`${API_BASE}/system/upload-logo`, {
|
|
|
|
method: "POST",
|
|
|
|
body: formData,
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
if (!res.ok) throw new Error("Error uploading logo.");
|
|
|
|
return { success: true, error: null };
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.log(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
|
|
|
removeCustomLogo: async function () {
|
|
|
|
return await fetch(`${API_BASE}/system/remove-logo`, {
|
|
|
|
headers: baseHeaders(),
|
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
if (res.ok) return { success: true, error: null };
|
|
|
|
throw new Error("Error removing logo!");
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.log(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
2023-08-17 02:30:46 +02:00
|
|
|
setWelcomeMessages: async function (messages) {
|
|
|
|
return fetch(`${API_BASE}/system/set-welcome-messages`, {
|
|
|
|
method: "POST",
|
|
|
|
headers: baseHeaders(),
|
|
|
|
body: JSON.stringify({ messages }),
|
|
|
|
})
|
|
|
|
.then((res) => {
|
|
|
|
if (!res.ok)
|
|
|
|
throw new Error(res.statusText || "Error setting welcome messages.");
|
|
|
|
return res.json();
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
console.error(e);
|
|
|
|
return { success: false, error: e.message };
|
|
|
|
});
|
|
|
|
},
|
2023-07-25 19:37:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Admin;
|